changing an activex control property using a macro

  • Thread starter Thread starter Sian
  • Start date Start date
S

Sian

Here's the thing: I have one large procedure (BigCode) which I call from
many different small procedures:
call BigCode (mycontrol, 1)

'mycontrol' is the name of an activex control.

One of the things I want Bigcode to do is change properties of mycontrol,
for example

With mycontrol
.Locked = True
End with

My question is what do I pass as mycontrol? Or how to I get BigCode to
understand it's the control itself I want to change (at the moment every
variable translates to eg "Combobox1" (in quotes)

Help greatly appreciated!
Sian
 
You could pass it as a generic object:
Sub BigCode(myControl as Object)

If you were only passing comboboxes from the control toolbox toolbar (placed on
a worksheet), you could pass it as a combobox:
sub bigcode(myCombobox as msforms.combobox)

This would work if your combobox was on a userform, too.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top