Mar 26, 2014 #1 vbdbcoder Programmer Nov 23, 2006 247 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 Jun 17, 2007 3,277 US Sub main loads the form. Upvote 0 Downvote
Mar 26, 2014 1 #3 ettienne Programmer Oct 29, 2005 3,388 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 Nov 23, 2006 247 US Great. Thanks a lot. Upvote 0 Downvote