Feb 16, 2002 #1 soos IS-IT--Management Feb 16, 2002 1 US Hi, I would like to open a form in .bas module, but it says "can't find project..." I have the following statements: frmName.Load frmName.Show Please, help! Thanks.
Hi, I would like to open a form in .bas module, but it says "can't find project..." I have the following statements: frmName.Load frmName.Show Please, help! Thanks.
Feb 16, 2002 #2 JohnYingling Programmer Mar 24, 2001 3,742 US Load is not a method of the Form class. Load frmName ' explicit load frmName.Show ' show form, load if not loaded. Or just frmName.Show http://www.VBCompare.com Compare Code (Text) http://www.VBSortGen.com Generate Sort in VB or VBScript Upvote 0 Downvote
Load is not a method of the Form class. Load frmName ' explicit load frmName.Show ' show form, load if not loaded. Or just frmName.Show http://www.VBCompare.com Compare Code (Text) http://www.VBSortGen.com Generate Sort in VB or VBScript