CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: PopupMenu

  1. #1
    Join Date
    Jan 2000
    Location
    Brasil
    Posts
    7

    PopupMenu

    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.



  2. #2
    Join Date
    Sep 1999
    Posts
    202

    Re: PopupMenu


  3. #3
    Guest

    Re: PopupMenu

    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




Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured