Modify ↓
Opened on Apr 7, 2010 at 10:52:53 AM
Closed on Apr 8, 2010 at 9:07:28 AM
#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:2 by , on Apr 7, 2010 at 11:45:02 PM
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".
comment:3 by , on Apr 8, 2010 at 9:07:28 AM
| Resolution: | → No Bug |
|---|---|
| Status: | new → closed |
I suppose I can close it !!!
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 )