Loc Posted June 27, 2021 Posted June 27, 2021 I am needing to catch events with right click on Guictrlcreatebutton() and label
Moderators Melba23 Posted June 27, 2021 Moderators Posted June 27, 2021 ANHVN, Welcome to the AutoIt forums. If you look in the Help file under <GUI Reference - OnEvent Mode> you will see that you can detect the $GUI_EVENT_SECONDARYDOWN/UP messages in the @GUI_CtrlId macro. That should enable you to do what you require. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Loc Posted June 27, 2021 Author Posted June 27, 2021 I have found the code, please allow me to be saved here. Now I'm not sitting at the computer. I'm afraid the next time I look I won't find it #include <GUIConstantsEx.au3> #include <MsgBoxConstants.au3> Opt("GUIOnEventMode", 1) $hGUI = GUICreate("Test", 500, 500) GUISetOnEvent($GUI_EVENT_CLOSE, "_Exit") GUISetOnEvent($GUI_EVENT_SECONDARYUP, "_SecondaryUp") $cButton = GUICtrlCreateButton("Test", 10, 10, 80, 30) GUICtrlSetOnEvent($cButton, "_Button") $cButton2 = GUICtrlCreateButton("Testz", 10, 50, 80, 30) GUICtrlSetOnEvent($cButton2, "_Button") GUISetState() While 1 Sleep(10) WEnd Func _Button() $nTempId = GUICtrlRead(@GUI_CtrlId) MsgBox($MB_SYSTEMMODAL, "Pressed", "LEFT " & $nTempId) EndFunc ;==>_Button Func _SecondaryUp() $aCInfo = GUIGetCursorInfo($hGUI) Switch $aCInfo[4] Case $cButton $nTempId = GUICtrlRead($cButton) ;can get MsgBox($MB_SYSTEMMODAL, "Pressed", "RIGHT " & $nTempId) Case $cButton2 $nTempId = GUICtrlRead($cButton2) ;can get MsgBox($MB_SYSTEMMODAL, "Pressed", "RIGHT2 " & $nTempId) EndSwitch EndFunc ;==>_SecondaryUp Func _Exit() Exit EndFunc ;==>_Exit
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now