Combo box question when developing a SQL database in Visual Basic 6
I am developing a SQL database using Visual Basic 6 with ADO and Microsoft Access, but in it, I have a combo box with two options - yes and no. I want the combo box, after yes or no is selected, to open another form where a user can enter other details. How would I do this?

Software/Hardware used:
ASKED: December 5, 2008  6:20 PM
UPDATED: December 5, 2008  6:39 PM

Answer Wiki:
To call another form, you could use its "Show" method. You could call it from the "Click" event of your combo. For example: <pre>Private Sub Combo1_Click() Form2.Show End Sub</pre>
Last Wiki Answer Submitted:  December 5, 2008  6:39 pm  by  carlosdl   63,535 pts.
All Answer Wiki Contributors:  carlosdl   63,535 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _