Hello !
I open a modal form throught an menu item click event and in that new form a have an popupmenu too but when I need Popup that new menu, it doesn't show. Why? Because there is another menu opened ? What to do ?
Thanks.
Printable View
Hello !
I open a modal form throught an menu item click event and in that new form a have an popupmenu too but when I need Popup that new menu, it doesn't show. Why? Because there is another menu opened ? What to do ?
Thanks.
See my answer here:
http://codeguru.developer.com/bbs/wt...collapsed&sb=5
Another way to do this is to have a timer on your form.
set its enabled property =false and in its timer event have the following code
form2.show vbmodal
timer1.enabled=false
then all you have to do is in the click event of your pop up menu set timer1.enabled=true
Cheers