Search the Community
Showing results for tags 'GUIGetMsg'.
-
TL;DR: Anyway to bypass built in sleep on TrayGetMsg() and GUIGetMsg() ? I'm currently working on a project that does some heavy array/ GDI+ processing, which depending what I have it do can take between 4s - 1min. During this time, I'd like to have the Tray icon (mainly, possibly also t...
- 6 replies
-
- traygetmsg
- guigetmsg
-
(and 1 more)
Tagged with:
-
Hi all, I am using GuiGetMsg(). Assume that i have a combo box in my gui. And when i use this code - While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $CMB_NamesList ; Handle of my Combo box CellSelect() EndSwitc...
-
Hello Folks, I'm not an AutoIt noob but I am new to the GuiRegisterMsg command. What I am trying to do is to pop up a "long string edit" window when user double-clicks. Ideally I wanted it to be a duouble-click in the Input box itself but I couldn't get this to work so I was going to settle fo...
-
I'm trying to catch non printing characters (like Delete, F5, Shifte F5, etc) when a user is typing into an Input Control. The sample code below doesn't work (the Input MsgBox only appears when the enter key is pressed and the Key Pressed MsgBox never appears). It appears to me this is because th...
- 8 replies
-
- input control
- guigetmsg
-
(and 2 more)
Tagged with:
-
I've been working on a fancy ListView for user input. When a cell is clicked, a temporary Combo or Input control is created. The user does their part, then the temporary control's data is transferred to the ListView and the temporary control is deleted. I'm quite pleased with how it's turned out,...