|
-
October 11th, 1999, 11:43 AM
#1
Urgent! How to load forms dynamically using formname string
I have a requirement to load forms using the formname string dynamically.
Please guide me.
Nadia
-
October 11th, 1999, 06:28 PM
#2
Re: Urgent! How to load forms dynamically using formname string
You can load a form dynamically by using the Add method of the Forms collection, e.g.,
dim myFormName as string
'code to resolve myFormName
Forms.Add myFormName
'Show the newly loaded form
Forms(Forms.Count - 1).Show
Charles Zimmerman
http://www.freevbcode.com
-
October 11th, 1999, 06:32 PM
#3
Re: Urgent! How to load forms dynamically using formname string
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|