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 ....:(
Printable View
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 ....:(
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