Hi Tysop,
Try using a public boolean variable selectively to disable the ComboBox
code.
At the top of a standard module:
Option Explicit
Public blDisable As Boolean
Then, in the sheet module:
'=============>>
Private Sub ComboBox1_Change()
If blDisable Then Exit Sub
'Your code
End Sub
'<<=============
When you need to disable the ComboBox1_Change code, assign a value of True
to the variable.
---
Regards,
Norman
>I am writing some VBA that changes the value in a control toolbox combobox,
> but I don't want it to run the code assigned to changing the combobox ( it
[quoted text clipped - 11 lines]
>
> Many thanks
tysop - 24 Jan 2006 14:07 GMT
I actually had just tried that and it works, but it's just annoying that I
now have to change a boolean and dissable events- I'll probably create a sub
that disables both and call that when i need to.
Many thanks
Tysop
> Hi Tysop,
>
[quoted text clipped - 38 lines]
> >
> > Many thanks
Tom Ogilvy - 24 Jan 2006 14:16 GMT
Just for clarification, enableevents is part of the Excel Object model.
MSForms controls are part of the MSForms object model. These controls are
not affected by the EnableEvents setting.

Signature
Regards,
Tom Ogilvy
> I actually had just tried that and it works, but it's just annoying that I
> now have to change a boolean and dissable events- I'll probably create a sub
[quoted text clipped - 46 lines]
> > >
> > > Many thanks