Thread: Userform
View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
dqsp dqsp is offline
external usenet poster
 
Posts: 9
Default Userform

I use this code in combination with a registry-key (user-part)

*************
' Show About screen
If GetSetting(appname:="YourExcelSheetName", Section:="About", _
Key:="Aboutscreen") = "" Then GoTo Next2do1
If GetSetting(appname:="YourExcelSheetName", Section:="About", _
Key:="Aboutscreen") = True Then GoTo Next2do2

Next2do1:
UserForm1.Show

Next2do2:
********
Hope this helps
Rob