Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (16 - 18 of 3867)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Ticket Owner Reporter Resolution Summary
#17 Xenobiologist Rejected _WinAPI_MessageBeep with parameter 3
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 Valik Wont Fix Test ticket
Description

Ignore me, I'm a test.

#19 Jpm pseakins 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
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Note: See TracQuery for help on using queries.