Results 1 to 2 of 2

Thread: Click 'View' to load another form

  1. #1

    Thread Starter
    New Member
    Join Date
    Apr 2001
    Location
    Singapore
    Posts
    4

    Unhappy Click 'View' to load another form

    hi ! I'm doing a project whereby on a form, i will click a command button 'view' which will load another form. Can I do that? Please help ....

  2. #2
    PowerPoster Lethal's Avatar
    Join Date
    Oct 2000
    Location
    Ohio
    Posts
    2,496
    Code:
    Private Sub Command_Click()
        Load form2    '// Load the form
        Form2.Show  '// Show the Form, if you want to show the form
                              '// You can just use the show method, which will
                              '// Implicitly load the form
    End Sub

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