Modify

#325 closed Bug (Fixed)

Radio menu items not firing events

Reported by: Ultima Owned by: J-Paul Mesnage
Milestone: 3.2.13.0 Component: AutoIt
Version: 3.2.12.0 Severity: None
Keywords: Cc:

Description

Exactly as the title implies, radio menu items do not fire events. It seems the regression occurred somewhere between v3.2.11.5 and v3.2.11.9 (the in-between builds didn't display any context menus at all).

GUICreate(@AutoItVersion)

$menu = GUICtrlCreateContextMenu()
$item = GUICtrlCreateMenuItem("Click Me!", $menu, -1, 1) ; won't fire event
;$item = GUICtrlCreateMenuItem("Click Me!", $menu) ; will fire event

GUISetState()
While 1
    Switch GUIGetMsg()
        Case -3
            Exit
        Case $item
            MsgBox(0, "Clicked", "You clicked me!")
    EndSwitch
WEnd

Attachments (0)

Change History (3)

comment:1 by J-Paul Mesnage, on May 29, 2008 at 1:45:47 PM

Milestone: 3.2.13.0
Owner: set to J-Paul Mesnage
Resolution: Fixed
Status: newclosed

Fixed in version: 3.2.13.0

Modify Ticket

Action
as closed The owner will remain J-Paul Mesnage.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.