If I do the following when a button clicks in a userform on Excel '07:
How come the second enable doesn't work? This seems to be the case regardless of the type of code between the two statements.
Code:
Me.Enable = False
'-----any type of code or even blank----'
Me.Enable = True '<---- Does not work
How come the second enable doesn't work? This seems to be the case regardless of the type of code between the two statements.