Custom Query (3926 matches)
Results (376 - 378 of 3926)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #440 | Fixed | EOF character at end of script causes parse error. | ||
| Description |
Some editor programs add an EOF character (hex 1A) to the end of a text flat file for DOS compatibility. AutoIt versions 3.0 and 3.1 recognized this character for what it was or ignored it. Version 3.2.12.1 interprets it as the first character of another statement and generates a "Parse" error message. Please make AutoIt like it was before in this regard. Thank you. |
|||
| #1507 | Works For Me | help file improvement | ||
| Description |
I am new to programming. It is abou the help script samples. The list, combo, radio etc. sample script files do not have ways of getting a value from the gui created using guictrlread(). There is no uniformity. Consequently I took lot of time to get the values. |
|||
| #19 | Fixed | FileSetTime() erronously rounds UP on non NTFS partition | ||
| Description |
If executed on a FAT drive the following script will fail (reports incorrect timestamp). It works correctly on an NTFS drive. XP-Pro-SP2 #include <File.au3>
$TempFile = _TempFile(@ScriptDir, 'tst', '.txt', 5)
$handle = FileOpen($TempFile, 1)
If $handle = -1 Then
MsgBox("", "", 'Unable to open temporary file "' & $TempFile & '".')
Exit
EndIf
FileWrite($handle, "test")
FileClose($handle)
$timeset = '20071219184516'
FileSetTime($TempFile, $timeset, 0)
$timeget = FileGetTime($TempFile, 0, 1)
FileDelete($TempFile)
If $timeget <> $timeset Then
MsgBox("", "", 'File timestamp is WRONG' & @CRLF & _
'It should be ' & $timeset & @CRLF & _
'instead, it is ' & $timeget)
Else
MsgBox("", "", 'Timestamp is CORRECT')
EndIf
|
|||
