Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I load an userform when the workbook opens. Does anybody know some code which
automatic can unload the userform after some seconds ? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Kent,
Try this: Sub ShowForm() UserForm1.Show vbModeless Application.OnTime Now + TimeValue("00:00:02"), "Unload_Form" End Sub Sub Unload_Form() UserForm1.Hide End Sub "Kent" wrote: I load an userform when the workbook opens. Does anybody know some code which automatic can unload the userform after some seconds ? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Userform + close button | Excel Discussion (Misc queries) | |||
Automatically close a userform | Excel Programming | |||
Automatically close a userform | Excel Programming | |||
Automatically close a userform | Excel Programming | |||
Close a userform | Excel Programming |