Custom Query
Results (103 - 105 of 3870)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#3067 | Rejected | 1 line If...Else Statement | TheDcoder | |
Description |
Ability to run a 1 line If...Else statement like this: If False Then MsgBox(0, 0, 0) Else MsgBox(0, 0, 1) |
|||
#1757 | No Bug | 1.912 - 1.854 = 0.0579999999999998 | anonymous | |
Description |
1.912 - 1.854 returns 0.0579999999999998 but it should return 0.058. |
|||
#1255 | Fixed | 127 characters limitation with AutoItX v3.3.0.0 (with titles and controls) | Jon | marc0v |
Description |
127 characters limitation with AutoItX ActiveX ver 3.3.0.0 tested with winXP SP3, WScript.exe v 5.7.0.16599 short_str has length <= 127 long_str has length > 127
res = WinSetTitle(short_str, "", long_str) ; but res = 1
res = ControlSetText(short_str, "", controlID, long_str) ; but res = 1
res = WinGetTitle(long_str) ; res = current active window title looks very much like ticket #1083 with ClipPut, fixed in v3.3.1.4 has it been fixed in the same time for WinSetTitle, ControlSetText, WinGetTitle...? wintitle = "provide_here_a_valid_window_title" newtitle_127 = "1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567" newtitle_128 = "12345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678" Set autoitx3obj = WScript.CreateObject("AutoItX3.Control") autoitx3obj.WinSetTitle wintitle, "", newtitle_127 MsgBox "Title is set to newtitle_127" autoitx3obj.WinSetTitle newtitle_127, "", newtitle_128 MsgBox "Title is set to blank" |