Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (304 - 306 of 3897)

Ticket Resolution Summary Owner Reporter
#1066 Fixed filewrite() not working in mode 16(BinaryMode). Valik mvgulik
Description
; filewrite() not working in mode 16(BinaryMode).
; Environment = 3.3.1.1 under  WIN_XP/Service Pack 3 X86

Local $hFile,$filename = 'test.tmp'

$hFile=FileOpen($file,2) ; write,erase.
FileWrite($hFile,'abcdef' ) ; 0x61..0x66
FileClose($hFile)

$hFile=FileOpen($filename,16)
If ($hFile < 1) Then
	MsgBox(0,'error','[1] file not found.')
	Exit
EndIf

FileSetPos($hFile,2,0)
FileWrite($hFile,'CD')
;~ FileWrite($hFile,StringToBinary('CD'))
FileFlush($hFile)

FileSetPos($hFile,0,0)
MsgBox(0,'fileRead', BinaryToString(FileRead($hFile, 6)) )

FileClose($hFile)
Exit
#1068 Fixed Wrong converting Binary to Int/Number Jpm amel27
Description

only low byte converting

ConsoleWrite(Int(Binary(-1)) &@CRLF)
#1074 Fixed InputBox left positional reference not working correctly Jpm partypooper@…
Description

Setting the 'left' reference option to a negative number (as used with multiple monitors) does not work.

Examples: This displays correctly on primary monitor as it should: Local $s_FindGUID = InputBox("Display Player Information", "Enter GUID:", "", "", 250, 110, 600, 500)

This doesn't (displays on primary monitor rather than secondary monitor as it's been programmed to): Local $s_FindGUID = InputBox("Display Player Information", "Enter GUID:", "", "", 250, 110, -600, 500)

Primary Monitor range: 0,0 thru 1680,1050 Secondary Monitor range: -1280,0 thru 0,1024

Note: See TracQuery for help on using queries.