CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Feb 2003
    Posts
    3

    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.

  2. #2
    Join Date
    Jan 2003
    Posts
    14

    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
  •  





Click Here to Expand Forum to Full Width

Featured