How to create a popup window in Visual Studio 2005?
-
Hi all, i have a problem here, can anyone please guide me more? I want to click on a title which will link itself to open a pop up window that shows a checklist of things. How can i go about writing the codes to make a window pop up with all the contents i want inside? Thanks in advance for taking up your time.
frossie
-
Hi all, i have a problem here, can anyone please guide me more? I want to click on a title which will link itself to open a pop up window that shows a checklist of things. How can i go about writing the codes to make a window pop up with all the contents i want inside? Thanks in advance for taking up your time.
frossie
Just create the popup form and put your contents(such as checkbox, etc). Remember your new form's name. Example: frmPopup In Designtime.. doubleclik the title you to assign as triger to popup your content form. in Click procedure just add a single code: frmPopup.Show () Thats all..