ActiveX control properties; differences between design time and run time

Cloust

New Member
Joined
Apr 19, 2015
Messages
5
I understand that there is 2 lists of control properties. The ones at design time (static) can be changed manually through the VBA Property Window, and the ones that can be changed at run time (dynamic). Is it possible to programmatically change the static ones so I can see the changes in the Property Window?
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
To make design time/permanent changes to an ActiveX control on a userform via VBA, try the following...

1) Allow access to the VBA Project Object Model...

Code:
File > Options > Trust Center > Trust Center Settings > Macro Settings > Developer Macro Settings

...and check/select "Trust access to the VBA project object model".

2) Then, to change the properties of an ActiveX control, let's say a listbox, try the following code that needs to be placed in a regular model...

Code:
Sub test()

    With ThisWorkbook.VBProject.VBComponents("UserForm1").Designer.Controls("ListBox1")
        .Left = 15
        .Top = 15
        .Width = 85
        .Height = 85
    End With
    
    UserForm1.Show
    
    'etc
    '
    '
    
End Sub

Change the name of the userform and listbox, accordingly.

Hope this helps!
 
Upvote 0

Forum statistics

Threads
1,215,353
Messages
6,124,463
Members
449,163
Latest member
kshealy

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