CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: dialog

  1. #1
    Join Date
    Jul 2001
    Posts
    14

    dialog

    I have 2 dialogs, how can open the second dialog from the first(if I Click on a Button).
    What Code will I write in

    Private Sub Command1_Click()

    End Sub


  2. #2
    Join Date
    Jan 2001
    Location
    Germany
    Posts
    222

    Re: dialog


    private Sub Command1_Click()
    Dialog2.Show vbModal, me
    End Sub



    should work.

    ----------------
    You can contact me directly at [email protected]
    Hey, and... don't forget your parsley cause you can't eat your dog after having stolen him from some animal shelter and having drowned him in the Atlantic Ocean.
    Teamwork Software - Stuff That Does Something

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