R
RuudS
When a userform is visible and a button has been clicked;
how can VBA show a message for 2 seconds and then hide
this message automatically (without having to click [OK])?
I have tried:
Private Sub CommandButton3_Click()
'[...]
...Form_message.Show
...Call Slaap '(predefined, waits 2 seconds)
...Form_message.Hide
'[...]
End Sub
But this doesn't work. Other options?
Ruud
how can VBA show a message for 2 seconds and then hide
this message automatically (without having to click [OK])?
I have tried:
Private Sub CommandButton3_Click()
'[...]
...Form_message.Show
...Call Slaap '(predefined, waits 2 seconds)
...Form_message.Hide
'[...]
End Sub
But this doesn't work. Other options?
Ruud