Open the userform for 5 seconds
Solved
judoka15
-
judoka15 -
judoka15 -
Hello,
How to make a userform open only for 5 seconds in Excel
What is the VBA code
please
Thank you
How to make a userform open only for 5 seconds in Excel
What is the VBA code
please
Thank you
Configuration: Windows XP Internet Explorer 7.0
2 answers
-
-
Hello,
An idea for a solution... Suppose its name is Userform1..
In the code associated with Userform1, put:
Private Sub UserForm_Activate() temps = Now + TimeValue("00:00:05") Application.OnTime temps, "finir" End Sub
with the following macro "finir" (in a module):
Sub finir() UserForm1.Hide End Sub
Best regards,