Custom Query (3917 matches)
Results (301 - 303 of 3917)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1900 | Rejected | Improvements for StringRegExpGUI | ||
| Description |
Since I use that program a lot I noticed some bugs and ways to improve its work so I changed the tool a bit.
I will attach the file to this ticket, here you can see what I noted down ; Notes by FichteFoll ########################### ; - Fixed: $h_Out showing 1 randomly; now shows nothing if nothing found ; - Fixed: $s_lgth can be higher than 6 using StringLen and will not be 2 if array has 10 indexes (having 9 as last) ; - Fixed: WaitMessage had fixed height and width, multiple lines or too long lines would not be shown. Now generates them dynamically ; - Changed: WaitMessage() or WaitMessage('') disables the SplashText (just as ToolTip); required _Max (Misc.au3) ; - Changed: Using global var $h_Wnd instead of window title for WinGetPos ; - Changed: Seperator character ($c_Sep) is 0x0B instead of "|" because patterns were splitted while writing into the combo control ; - Changed: Tries to evaluate helpfilepath using AutoIt's install dir (RegRead64 from "AutoUpdateIt.au3") if @AutoItExe failed ; Also renamed $helppath to $autoitpath ; - Changed: Removed X and Y parameters for GUICreate because it's positioned in the middle of the screen by default ; - Added: $h_Err will be colored red if @error <> 0 ; ############################################### |
|||
| #1948 | Fixed | _GUICtrlButton_SetImage function description on SciTE tooltip | ||
| Description |
Hi, For the function _GUICtrlButton_SetImage it's written on the SciTE tooltip : "Sets the check state of a radio button or check box" Seems it's the same as the function _GUICtrlButton_SetCheck |
|||
| #2290 | No Bug | String functions fails on a file | ||
| Description |
I wanted to replace a simple string on the file "au3.keywords.properties" (the one included in the SciTE4AutoIt3 package) and I realised that it replaced only one instance whereas there is actually two. I have checked the count of this instance with the function StringSplit and it totally fails as it returns 34710. Here is an example : #include <Array.au3>
$sSciTEDir = RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\AutoIt v3\AutoIt", "InstallDir") & "\SciTE\"
$sRead = FileRead($sSciTEDir & "\Properties\au3.keywords.properties")
;~ ConsoleWrite($sRead & @CrLf)
ConsoleWrite(StringLen($sRead) & @CrLf)
$aSplit = StringSplit($sRead, "_singleton")
;~ _ArrayDisplay($aSplit)
$sReplace = StringReplace($sRead, "_singleton", "_singleton " & "_singletonW")
ConsoleWrite("replacements: " & @extended & ", count: " & $aSplit[0] & @CrLf)
;~ FileWrite($sSciTEDir & "\Properties\au3.keywords.properties", $sReplace)
Tested on lastest production and beta. Running on Windows 7 SP1 32bits. |
|||
