Command buttons created using VBA have no properties...?

wut

Banned
Joined
Dec 13, 2010
Messages
229
When I add a command button using VBA, the button has no properties option in the right-click context menu.

I record myself creating a command button, then play back the recording, and there's no properties option. Can anyone explain this?

How do I access the properties menu of a command button added using VBA?
Code:
    ActiveSheet.OLEObjects.Add(ClassType:="Forms.CommandButton.1", Link:=False _
        , DisplayAsIcon:=False, Left:=381, Top:=157.5, Width:=54.75, Height:= _
        41.25).Select
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
I was in design mode the first time. Try it, you'll see exactly what I mean. Run the code I posted, or record yourself creating a command button.

There's no properties option listed in the context menu. Screenshot.

The button on the left was created from the control toolbox.

The button on the right half od the screenshot was created using the macro recorded as I created the first button.
 
Upvote 0
It's a bug. Click the Properties button on the Control Toolbox.
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,693
Members
448,979
Latest member
DET4492

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top