Custom Query (3922 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (376 - 378 of 3922)

Ticket Resolution Summary Owner Reporter
#1402 No Bug Unable te read ini file key with quotas IniRead() anonymous
Description

I try to read a ini key with quotas mark:

[Section1] Key1="String with quotation marks"

IniRead() fonction does not return quotation marks

IniWrite("Test.INI", "Section1", "Key1", """String with quotation marks""")
MsgBox(0, "", IniRead("Test.INI", "Section1", "Key1", ""))
#1404 No Bug AutoIt creates trojan infected exe files. plotzenhotz@…
Description

AutoIt created exe files are recognized containing the "TR/Dropper/Gen" by Avira Antivirus Software.

Would be nice if you remove this "trojan feature" very very fast.

So far it's recommended to NEVER execute your compiled scripts.

Plotz

#1413 No Bug Shared file access flags behavior change in FileOpen GicuPiticu
Description

It seems that FileOpen function has been modified about the way it handles shared file access flags in 3.3.4.0 as opposed to 3.3.2.0. Maybe it's time for implementing FileOpen modes/flags like OF_SHARE_DENY_NONE and so on.

With code like the folowing... one can't do a "tail" any more on the test.log file while the script is running... because of "File Sharing Violation". If the script gets compiled/runned by 3.3.2.0 -> no problem....it all started with compiling/running the same script in 3.3.4.0....

$hLogFile=FileOpen("test.log")
While True
;;;do somethin' useful
   FileWrite($hLogFile,"some meaningfull message")
   FileFlush($hLogFile)
;;;more processing
Wend
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.