When I manually add an ActiveX control to a sheet I can right click on it and see or change its properties. However, when I add the same control through VBA I am unable to see its properties. Another peculiar thing I found is that the control generated is actually a group of images. Just right click on it and choose to ungroup it. You will see a lot of images.
Code:
With ActiveSheet.OLEObjects.Add(ClassType:="Forms.CommandButton.1", Link:=False _
, DisplayAsIcon:=False, Left:=195, Top:=27.75, Width:=108, Height:= _
24.75)
End With