Results 1 to 2 of 2

Thread: calling popup menus from popup menus

  1. #1

    Thread Starter
    Member
    Join Date
    May 2000
    Posts
    43
    Okay this will probably seem pointless to most but what the hell, is it possible to call a TOTALLY different popup menu from another popup menu (and im not talking about submenus!)???
    Another question, can you set the position on the screen where the popup menu appears???
    Thanx
    Cease

    This post has been brought to you with the help of:

  2. #2
    Guest
    To answer question 1:

    Create two forms that have a menu on each.
    Form1: File (mnufile) > Popup (mnupop)
    Form2: File (mnufile) > Whatever (mnuwhat)

    On form1, this goes in popup:
    [/code]
    Private Sub mnupopup_Click()
    PopupMenu Form2.mnufile
    End Sub
    [/code]

    For question 2:
    [/code]
    PopupMenu frm.mnufile, 0, button.Left, button.Height
    [/code]

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