Timeline
Sep 1, 2023:
- 5:26 PM Ticket #3971 (Integer not handled properly when calling object method) closed by
- No Bug: I close the ticket as no bug
- 5:22 PM Ticket #3974 (Key Stuck when using HotKeySet + Send) updated by
-
Owner changed
In fact I found how to check that hotkey is un pressed so I sent the fix to Jon - 10:34 AM Ticket #3974 (Key Stuck when using HotKeySet + Send) updated by
-
Owner, Status changed
- 10:34 AM Ticket #3974 (Key Stuck when using HotKeySet + Send) reopened by
- In fact the pb come from the function executed before the release of the hotkey If you add a Sleep(250) before the send that's work too I will ask Jon if such go around can be integrated before startin a hotkey function Cheers
- 10:08 AM Ticket #3974 (Key Stuck when using HotKeySet + Send) updated by
- Ok, the _SendEx is worling. I was only testing this... ControlSend("", "", "", "text", 0) Thanks!
Aug 31, 2023:
- 8:31 PM Ticket #3974 (Key Stuck when using HotKeySet + Send) closed by
- No Bug: PLease use the forum for questions and read the Wiki FAQ: https://www.autoitscript.com/wiki/FAQ#Why_does_the_Ctrl_key_get_stuck_down_after_I_run_my_script?
- 2:40 PM Ticket #3974 (Key Stuck when using HotKeySet + Send) created by
- Problem Description: When I set Hotkeys to CTRL+ALT+t to a …
Aug 30, 2023:
- 3:38 AM Ticket #3944 (GUICtrlSetFont (and GUISetFont) sets font name inconsistently) updated by
-
Owner, Status changed
The pb come from the fontsize Fix sent to Jon
Aug 29, 2023:
- 6:59 AM Ticket #3962 (Not able to interrupt script with hotkey on latest version v3.3.16.1) updated by
-
Owner, Status changed
Fix sent to Jon
Aug 28, 2023:
Aug 26, 2023:
- 3:54 PM Ticket #3972 (StringSplit can create invalid Arrays) updated by
-
Owner, Status changed
Thanks Fix sent to Jon - 3:53 PM Ticket #3973 (GUICtrlSetColor does not work on GUICtrlCreateRadio) updated by
-
Owner, Status changed
Thanks fix (workaround) sent to Jon - 1:50 PM Ticket #3963 (_WinAPI_OpenEvent function missing in WinAPIProc.au3) closed by
- Completed: Added by revision [13003] in version: 3.3.17.0
Aug 25, 2023:
- 9:46 PM Ticket #3973 (GUICtrlSetColor does not work on GUICtrlCreateRadio) updated by
-
Description changed
Aug 24, 2023:
- 9:35 AM Ticket #3973 (GUICtrlSetColor does not work on GUICtrlCreateRadio) updated by
- Good catch, thanks for the workaround link!
Aug 23, 2023:
- 2:44 PM Ticket #3973 (GUICtrlSetColor does not work on GUICtrlCreateRadio) updated by
- Concerning this issue, Zedna created a thread on the Forum in 2020 : https://www.autoitscript.com/forum/topic/201774-guictrlsetcolor-on-checkboxradiobutton-doesnt-work-on-windows-10/ Nine's workaround solved it (a one-liner based on _WinAPI_SetWindowTheme) then Zedna adapted it for older versions of AutoIt.
- 12:33 PM Ticket #3972 (StringSplit can create invalid Arrays) updated by
- The problem is obviously that StringSplit would create an array with more elements than the maximum number of array elements possible in AutoIt (VAR_SUBSCRIPT_ELEMENTS = 16,777,216): […] So basically all that is missing is another query in StringSplit that catches this case and then sets @error in it and returns either an empty array or a truncated array.
- 11:58 AM Ticket #3972 (StringSplit can create invalid Arrays) updated by
- True... so something is broken..…
- 11:24 AM Ticket #3973 (GUICtrlSetColor does not work on GUICtrlCreateRadio) created by
- GUICtrlSetColor does not work on GUICtrlCreateRadio for me. […]
- 9:10 AM Ticket #3972 (StringSplit can create invalid Arrays) updated by
- The help also states: If you use an empty string "" for the delimiters, each character will be returned as an element. I strongly suggest not touching this behavior. First, it would be script breaking for a lot of scripts that use StringSplit to split a string into an array of characters and second, it doesn't fix the bug described here, since it also occurs with a delimiter with one or more characters: […] The behavior also differs between AutoIt versions. Under version 3.14.5 the script crashes when StringSplit is called. I have not tested other versions.
- 7:59 AM Ticket #3972 (StringSplit can create invalid Arrays) updated by
- Guess a check for the second parameter would be appropriate to ensure it has a length of 1 or more. The helpfile does state: delimiters: One or more characters to use as delimiters (case sensitive).
Aug 22, 2023:
- 6:07 PM Ticket #3972 (StringSplit can create invalid Arrays) created by
- […]
- 2:55 PM Ticket #3968 (global struct gets corrupted after GUISetState()) updated by
-
Description changed
- 2:54 PM Ticket #3969 (Map Initializer List) updated by
-
Description changed
- 2:53 PM Ticket #3971 (Integer not handled properly when calling object method) updated by
-
Description changed
Aug 20, 2023:
- 1:37 AM Ticket #3971 (Integer not handled properly when calling object method) updated by
- Decided to port to C++, but in the process I ran into an issue where The Size property of MSFT_Disk was being return as a string instead of UInt32 as states in MSFN, eventually I ran into this https://stackoverflow.com/a/20431978, where they mention windows returns a string on purpose, then I had the thought...what if I pass the partition size as a string? Well that did it.
Aug 19, 2023:
- 5:30 PM Ticket #3971 (Integer not handled properly when calling object method) created by
- […] Calling CreatePartition with any integer greater than …
- 9:00 AM Ticket #3970 (Macro @IsConsole) updated by
-
Version changed
Automatic ticket cleanup. - 8:27 AM Ticket #3970 (Macro @IsConsole) created by
- Hi all! Sometimes there's need to distinguish, is a script compiled as …
Aug 13, 2023:
Aug 12, 2023:
- 2:40 PM Ticket #3968 (global struct gets corrupted after GUISetState()) reopened by
- Hi I understand that the return is erratic even If I fix the $g_sFont = DllStructGetData($_gtHiDpi_WinFont, 'FaceName') to $g_sFont = DllStructGetData($tTemp, 'FaceName') I don't understand the influence of the position of Global $_gtHiDpi_WinFont= _SystemParametersInfo_GetSystemFont() which is ok after the GUISetState(@SW_SHOW, $hGUI) ; try the code with this and without it here is the code which is erratic […]
Aug 8, 2023:
- 1:23 PM Ticket #3967 (About fixing the vulnerability of AutoIt 3.3.16.1) updated by
- I see you found it! ;)
- 12:31 PM Ticket #3967 (About fixing the vulnerability of AutoIt 3.3.16.1) updated by
- Replying to Jos: > This is not a place for asking questions, rather to provide Bug reports. > Please join the forum for questions. Could you please provide me the link of the forum to discuss my issue?
Aug 6, 2023:
Aug 5, 2023:
- 6:59 PM Ticket #3968 (global struct gets corrupted after GUISetState()) updated by
- hmm, I've run the correction you posted here but it does not correct the original code that is observable while running over and over again while testing.
Aug 3, 2023:
- 12:51 PM Ticket #3968 (global struct gets corrupted after GUISetState()) updated by
- In case it help the error was coming from the fact thatthe global variable was assign to a local variable the correction is […] Cheers
- 9:31 AM Ticket #3968 (global struct gets corrupted after GUISetState()) closed by
- No Bug
- 1:37 AM Ticket #3968 (global struct gets corrupted after GUISetState()) updated by
- so, the bug was in the coder. This works as advertised: […] Do pardon my lack of experience if you would.
Aug 2, 2023:
- 11:30 PM Ticket #3968 (global struct gets corrupted after GUISetState()) created by
- […] While troubleshooting we discovered a bug. The thread is at …
- 1:37 PM Ticket #3967 (About fixing the vulnerability of AutoIt 3.3.16.1) closed by
- No Bug: This is not a place for asking questions, rather to provide Bug reports. Please join the forum for questions.
- 1:23 PM Ticket #3967 (About fixing the vulnerability of AutoIt 3.3.16.1) created by
- Will the Vendor of this application provide patches or fixes for any …
Note:
See TracTimeline
for information about the timeline view.
