Results 1 to 2 of 2

Thread: how can i show a form in vb.net?

  1. #1

    Thread Starter
    Hyperactive Member schuurke28's Avatar
    Join Date
    Feb 2001
    Posts
    402

    how can i show a form in vb.net?

    what is the syntax for form1.show?? can't seem to find it

  2. #2
    I'm about to be a PowerPoster! Joacim Andersson's Avatar
    Join Date
    Jan 1999
    Location
    Sweden
    Posts
    14,649
    Forms are classes in VB.Net so you have to create an instance of the form before you can show it.
    VB Code:
    1. Dim frm As New Form1()
    2. frm.Show()
    Best regards

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