|
-
February 25th, 2003, 06:20 AM
#1
Creating forms dynamically thru programming
I want to create a form dynamically , on the fly , through the code in Visual Basic, which i can add it to my project.
-
February 25th, 2003, 07:05 AM
#2
Re: Creating forms dynamically thru programming
Originally posted by swappatel
I want to create a form dynamically , on the fly , through the code in Visual Basic, which i can add it to my project.
Not sure what you mean... but
Code:
Dim x As Form
Set x = New Form1
x.Show
creates a form dynamically...
Last edited by stickan; February 25th, 2003 at 07:07 AM.
VB6 SP5 ACCESS MSSQL mySQL CR
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
|