Custom Query
Results (181 - 183 of 3883)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#2994 | Wont Fix | Can't run _Excel_RangeFind example in 3.3.13.19 | BrewManNH | |
Description |
When you try to run any of the example scripts, from the help file for _Excel_RangeFind, in 3.3.13.19 it errors out every time.
This example runs fine in 3.3.12.0 |
|||
#3577 | No Bug | _FileWriteToLine strips @crlf off last line for some files | BrianM | |
Description |
compared the .log to the .log_after files and notice the fail case has the last @crlf removed. #include <File.au3> Local $sSourceLine = "227487744 148299776 11.1.6749897" Local $sTargetFilename = "fail.log" Local $sFilenameTmp = $sTargetFilename & "_after" FileCopy($sTargetFilename,$sFilenameTmp,$FC_OVERWRITE) _FileWriteToLine($sFilenameTmp,2,$sSourceLine) Local $sTargetFilename = "pass.log" Local $sFilenameTmp = $sTargetFilename & "_after" FileCopy($sTargetFilename,$sFilenameTmp,$FC_OVERWRITE) _FileWriteToLine($sFilenameTmp,2,$sSourceLine) |
|||
#2338 | Completed | Here is a Modification to _ArraySearch UDF | guinness | BrunoJ |
Description |
The attached file contains a mod that adds compare option 3 for using regex. I needed to be able to match only array elements that started with a specific string. This easily allows for that and so much more. |