popup menu help

Post

Posted
Rating:
#1 (In Topic #729)
Avatar
Enthusiast
sadams54 is in the usergroup ‘Enthusiast’
 I have a popup menu that I want to attach to multiple controls.

how do I tell which control called the popup menu so I can perform the correct action. I would like to do this in a single popup menu.

the use will be to clear the text property in that control so I think the best is to do this in a single sub from a single popup menu instead of repeating code. I just can't see how to find which control called the popup.
Online now: No Back to the top

Post

Posted
Rating:
#2
Guru
BruceSteers is in the usergroup ‘Guru’
How I do it….
Do not use the Controls PopupMenu property .  do it all in the MouseUp event using the PopUp function and the menu tag

Code (gambas)

  1.  
  2. Public Sub MyButton_MouseUp()
  3.  
  4.  
  5.   Menu1.Tag = Last.Name
  6.   Menu1.PopUp(Mouse.ScreenX, Mouse.ScreenY)
  7.  
  8.  

Then when any command from the menu is used i just check Menu.Tag to see where it was clicked from.
Online now: No Back to the top

Post

Posted
Rating:
#3
Avatar
Guru
cogier is in the usergroup ‘Guru’
I had a long thought about this and came up with one routine that could do what you want.

1/. Create a global variable e.g. sName
2/. Make the Group property of all the controls the same e.g. Ctrls
3/. Create a routine Public Sub Ctrls_Enter(). This will catch the mouse moving into any of the controls and change the name of the global variable.

The line Me.Text = sName will change the Form's Title as you pass the mouse over the controls, so you can see how this works.

Code (gambas)

  1. sName As String
  2.  
  3. Public Sub Ctrls_Enter()
  4.  
  5.   sName = Last.name
  6.  
  7. ' Me.Text = sName
  8.  
Online now: No Back to the top

Post

Posted
Rating:
#4
Avatar
Enthusiast
sadams54 is in the usergroup ‘Enthusiast’
 Thank you both. I am glad cogier had to think about it hard. It makes me feel better that the expert himself had to think. I combined both approaches.

I used the mouseup event to call the popup and a global variable that holds the name of the button. I put the code I used below in case others need it. the tilde ~ just means there is other code.

Public ButtonID as string = ""
~
~
~
Public Sub btnPIDFile_MouseUp()
  If Not Mouse.Right Then Return
  ButtonID = "PID"
  mbtnMakeBlank.Popup
End

Public Sub mnuClearValue_Click()
  Select Case ButtonID
    Case "PID"
      btnPIDFile.Text = "Click To Set"
  End Select
  ButtonID = ""
End
Online now: No Back to the top

Post

Posted
Rating:
#5
Guru
BruceSteers is in the usergroup ‘Guru’

sadams54 said

Thank you both. I am glad cogier had to think about it hard. It makes me feel better that the expert himself had to think. I combined both approaches.

I used the mouseup event to call the popup and a global variable that holds the name of the button. I put the code I used below in case others need it. the tilde ~ just means there is other code.

Public ButtonID as string = ""
~
~
~
Public Sub btnPIDFile_MouseUp()
  If Not Mouse.Right Then Return
  ButtonID = "PID"
  mbtnMakeBlank.Popup
End

Public Sub mnuClearValue_Click()
  Select Case ButtonID
    Case "PID"
      btnPIDFile.Text = "Click To Set"
  End Select
  ButtonID = ""
End


Happy to help :)

PS. I forgot…
just under
  If Not Mouse.Right Then Return

you should put…
  If Not Mouse.Inside(Last) Then Return

Then if the user pushes mouse down then moves away from the control before mouse up it will not trigger.
Online now: No Back to the top
1 guest and 0 members have just viewed this.