Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (325 - 327 of 3904)

Ticket Resolution Summary Owner Reporter
#1119 Fixed Minor change to Help File wording for FileWrite Jpm partypooper@…
Description

Even though they are functionally similar, there is a difference between FileWrite and FileWriteLine, however, the wording in the help file for FileWrite and FileWriteLine is practically identical. I'd like to suggest that the description for FileWriteLine be left as is and that the description for FileWrite be amended to read something along the lines of:

Appends text/data to the end of a previously opened file. FileWrite ( filehandle or "filename", "text" )

text - Text/data to write to the file. The text is written as is - no @CR or @LF characters are added. Binary type variants will be written to the file byte by byte.

#1121 Fixed uninstall, beta, file FTPEx.au3 still standing. anonymous
Description

beta include file FTPEx.au3 was not uninstalled. It still had its readonly flag active.

#1122 Fixed _MathCheckDiv. No error return value. Gary anonymous
Description

Is using SetError(1) after Return. They need to be swapped.

Func _MathCheckDiv($i_NumA, $i_NumB = 2)
	If Number($i_NumA) = 0 Or Number($i_NumB) = 0 Or Int($i_NumA) <> $i_NumA Or Int($i_NumB) <> $i_NumB Then
		Return -1
		SetError(1)
	ElseIf Int($i_NumA / $i_NumB) <> $i_NumA / $i_NumB Then
		Return 1
	Else
		Return 2
	EndIf
EndFunc   ;==>_MathCheckDiv

ps: Any reasons for not using "Return SetError(1,0,-1)"?, apart from "was written before SetError(Er,Ex,Rt) support" of course. just curious.

Note: See TracQuery for help on using queries.