Custom Query (3931 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (406 - 408 of 3931)

Ticket Resolution Summary Owner Reporter
#1540 No Bug _FileReadToArray bug? bergedorf@…
Description

_FileReadToArray reads only 2 lines of my textfile.

$Local_FileName = "drucker_log.txt"
DATEI_TO_STRING($Local_FileName)

; datei einlesen
Func DATEI_TO_STRING($Local_File)

	Local $DateiArray
	$OldPath = @ScriptDir & "/" & $Local_File

	_FileReadToArray($OldPath, $DateiArray)
	
	ConsoleWrite("Zeilen: " & $DateiArray[0] & @crlf)
	
	For $x = 1 To $DateiArray[0]
		ConsoleWrite('Datensatz ' & $DateiArray[$x] & @crlf)
	Next	
EndFunc

i add my textfile.

#1543 No Bug DirMove behaviour mrflipp@…
Description

I use the function "dirMove" to copy a directory called "\sourceparentdir\directoryname" [1] to another directory called "\destinationparentdir\directoryname" [2].

The expected behaviour would be that (with overwrite flag set) the files and subfolders in the source folder would be moved to the destination folder. But the function stores the folder "directoryname" IN the dstination folder "directoryname", so that "\destinationparentdir\directoryname\directoryname" is the result.

OS: Windows 7 x64

#1544 No Bug Error in Help file - VarGetType Melba23
Description

On the Help file page for VarGetType:

"Remarks IsInt can return different results as it tries to convert from a string or float."

Should presumably read VarGetType.

M23

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.