making a userform components attribute names and values a two dimensional array.

kerrywayne

New Member
Joined
Jul 21, 2023
Messages
9
Office Version
  1. 2003 or older
Platform
  1. Windows
I have a vba project with many many userforms and each has many components(textboxes, option buttons, command buttons, etc). I am trying to figure a way to set the component properties names and values in an array and use to set the component properties in a For next loop. See below code example:

dim UserformComponent(7) as variant ' (0-2) = TextBoxes, (3-4) = OptionButtons, (5-6) = CommandButtons.
dim Proprty(7, 13, 2) as variant '7 = Number of UserformComponents, 13 = number of Component Properties, 2: (0) = Property Name, (1) = Property Value
' Property Names = Width, Height, Left, BackColor, ForeColor, Locked. etc

Propty(0,0,0) = "BackColor"
Propty(0,0,1) = H000080FF
Propty(0,1,0) = Enabled
Propty(0,1,1) = True
NumOfProps = 13
ComponentNum = 0
UserformComponent(CompenentNum) = "Textbox1"
For PropNum = 0 to NumbOfProps
UserForm1.Controls(UserformComponent(CompNum)).Propty(0,0,0) = Propty(0,0,1) ' I also tried UserForm1.Controls(UserformComponent(CompNum)).Controls(Propty(ComponetNum,PropNum,0)) = Propty(ComponentNum,PropNum,1)
Next PropNum

I get Run Time Error 438: Object does not support this property or method with both statements

Question: Is there a way to do what I am trying to do without assigning values to each property on 13 different lines of code?
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Hi

An idea to consider is to create a table for each of your userforms listing their controls & properties. You can then read the table in to a 2D array. A common code for all tables, would read each array element to set the control properties.

You can make the table more intuitive by using data validation for specific controls like comboboxes & textboxes to list available property choices with their constant names & values

1702751867726.png



a custom number format will need to be applied so that the cell contains the numeric value of the selection.

As with all these things, careful planning & preparation is key to make a project successful but hope idea is helpful.

Dave
 
Upvote 1
Solution

Forum statistics

Threads
1,215,073
Messages
6,122,974
Members
449,095
Latest member
Mr Hughes

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