Mar 26, 2014 #1 vbdbcoder Programmer Joined Nov 23, 2006 Messages 250 Location US This must be a stupid question. How do I make sure the macro starts at a userform instead of subMain()?
This must be a stupid question. How do I make sure the macro starts at a userform instead of subMain()?
Mar 26, 2014 #2 Jay Converse Programmer Joined Jun 17, 2007 Messages 3,277 Location US Sub main loads the form. Upvote 0 Downvote
Mar 26, 2014 1 #3 ettienne Programmer Joined Oct 29, 2005 Messages 3,389 Location US If your form is named frmMain then this will load your form: Sub MainSub() frmMain.ShowEnd Sub Upvote 0 Downvote
Mar 27, 2014 Thread starter #4 vbdbcoder Programmer Joined Nov 23, 2006 Messages 250 Location US Great. Thanks a lot. Upvote 0 Downvote