Custom Query
Results (16 - 18 of 3841)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#17 | Rejected | _WinAPI_MessageBeep with parameter 3 | Xenobiologist | |
Description |
Hi, I do not get any sound on number 3. Why? #Include <WinAPI.au3> FOr $i = 0 To 5 Switch $i case 0 ToolTip('Simple beep. If a sound card is not available, the speaker is used.') case 1 ToolTip('OK.') case 2 ToolTip('Hand') case 3 ToolTip('Question') case 4 ToolTip('Exclamation') case 5 ToolTip('Asterisk') EndSwitch _WinAPI_MessageBeep($i) Sleep(2000) Next Thanks! So long, Mega |
|||
#18 | Wont Fix | Test ticket | Valik | |
Description |
Ignore me, I'm a test. |
|||
#19 | Fixed | FileSetTime() erronously rounds UP on non NTFS partition | Jpm | pseakins |
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 |
Note: See TracQuery
for help on using queries.