I want to create a form dynamically , on the fly , through the code in Visual Basic, which i can add it to my project.
Printable View
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... butQuote:
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.
creates a form dynamically...Code:Dim x As Form
Set x = New Form1
x.Show