JamesW
Well-known Member
- Joined
- Oct 30, 2009
- Messages
- 1,197
My fave:
Userform with "Click OK to continue".
You can add this to an ONTIME event to close the workbook after 10 seconds too.
Code:
Private Sub ok_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
i = Int((100 * Rnd) + 10)
j = Int((100 * Rnd) + 10)
ok.Left = i
ok.Top = j
End Sub
Userform with "Click OK to continue".
You can add this to an ONTIME event to close the workbook after 10 seconds too.