Re: User Controls (VISTA)
Did this "somebody else" create the control?
Re: User Controls (VISTA)
yes, and its for free to use...
the only lack is just what i said on the first msg
anybody can correct that?
Re: User Controls (VISTA)
Well if you don't care what the button looks like when the msgbox is up one workaround I use with my own UC button is to disable it first, then enable it afterwards since my UC's Enable property redraws the whole button to it's normal state.
Private Sub GradButn_Click()
GradButn.Enabled = False
MsgBox "Some text"
GradButn.Enabled = True
End Sub
Just a thought.
Re: User Controls (VISTA)
nope there is missing but i don't know where part
i just think its on mouseUP_event but i tried to modify and didn't work