Click to See Complete Forum and Search --> : PopupMenu


jussara
January 18th, 2000, 06:40 AM
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.

Bruno
January 18th, 2000, 07:17 AM
See my answer here:
http://codeguru.developer.com/bbs/wt/showpost.pl?Board=vb&Number=13177&page=0&view=collapsed&sb=5

February 8th, 2000, 03:23 AM
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