Results 1 to 3 of 3

Thread: show Windows form

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Jan 2003
    Location
    Porto Alegre, RS
    Posts
    210

    show Windows form

    how can i show a form in VB.net??

    in vb6: formName.show

    thx
    Guilherme Costa

  2. #2
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083

    Re: show Windows form

    Originally posted by gccosta
    how can i show a form in VB.net??

    in vb6: formName.show
    thx
    Guilherme Costa
    suppose your current form is form2

    dim frm2 as new form2
    frm2.show

  3. #3
    Hyperactive Member RealNickyDude's Avatar
    Join Date
    Nov 2002
    Location
    Watching you through the hidden camera :o
    Posts
    435
    Also,
    VB Code:
    1. Dim Frm2 as New form2
    2. Frm2.Show[b][i]dialog()[/i][/b]
    Will not allow the user to select a different form until the user is finished with Frm2. (Stops it flipping to the back if the user accidently clicks another form.)
    [vbcode]
    On Error GoTo Hell
    [/vbcode]:¬) Nicky : Why not try VBCodebook.NET.

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