I have a login script where I want the user to be notified whether login was successful or not. Since 99% of the time the user logs in just fine, I'd like the success message box to display for a few seconds then close automatically without any user interaction. So far I can't see a way to set a timer or timed window on the message box window. Is there another way to close a message window without clicking on it?
Here's what the 2 message boxes look like.
Here's what the 2 message boxes look like.
Code:
MsgBox "Welcome!", 64, "Login Successful"
MsgBox "Error #" & cStr(Err.Number) & " " & Err.Description, 48, "Login Failed"