Pop up windows, dialog box from current form

retkehing

Well-known member
Joined
Feb 5, 2006
Messages
153
Programming Experience
Beginner
How to pop up a dialog box or small windows and the combo box and button can be embedded inside of it? I am developing the searching function, when the user click on the search button, the small windows popped up and user select the primary key, which is the content of the combo box and press ok button. So the main form will display each and every field accordingly, it is not user friendly enough to get it done in the same form and this is the reason why i want to have another small windows interface to help on this.
 
Last edited:
Design and code the Form.
Create new instance and show it with the ShowDialog method. (dim f as new mydialogform : f.showdialog)
 
Back
Top