Modify ↓
Opened 16 years ago
Closed 16 years ago
#1553 closed Bug (No Bug)
GUICtrlSetTip() not working on Combos
| Reported by: | GEOSoft | Owned by: | |
|---|---|---|---|
| Milestone: | Component: | AutoIt | |
| Version: | 3.3.6.0 | Severity: | None |
| Keywords: | Cc: |
Description
I'm not thoroughly convinced this is an AutoIt bug, it may just be a limitation of the Windows API.
GUICreate("Bug Test")
GUICtrlCreateInput("Test", 10, 10, 100, 20)
GUICtrlSetTip(-1, "This works")
GUICtrlCreateCombo("Test", 10, 10, 100, 20)
GUICtrlSetTip(-1, "This doesn't work")
GUISetState()
Do
Until GUIGetMsg() = -3
Exit
Attachments (0)
Change History (3)
comment:1 by , 16 years ago
comment:2 by , 16 years ago
The 2 controls at the same location was just a C&P screwup. I forgot to change the Y coordinate.
And I should have remembered that hovering on the edit portion of the control will not display the tip.
I call it a "No Bug".
Note:
See TracTickets
for help on using tickets.

Tooltip for combo works when you hover over the pulldown button of the combo element, just not when you hover over the (child)edit box of the combo.
(Creating two gui elements on top of each other is also helping in not showing that tooltip. o.O )