Hi VB experts,
Is it possible to popup a form on the command button click event,like in case of DTPicker the month view popsup.
Thanks,
With rgds.
Girish Patil
Printable View
Hi VB experts,
Is it possible to popup a form on the command button click event,like in case of DTPicker the month view popsup.
Thanks,
With rgds.
Girish Patil
Just put the code frmPopup.show code in the command button click event, where frmPopup is the custom form you've created. A more elegant way might be to create a Public procedure Display in the form that would display itself...
You can get any value changes from another public procedure that the main app calls before killing the popup form.
I hope that helps.