Hallo MrB,
ich würde so ändern:
[autoit]Func fullinfo()
$file = FileOpen($pfadconfig, 0)
$line = FileReadLine($file, 274)
FileClose($file)
$line2 = StringSplit($line, "" & Chr(34))
If IsArray($line2) Then
_ArrayDisplay($line2) ;macht nur Sinn, wenn es ein Array gibt
If $line2[0] > 2 then
If $line2[2] = 1 Then
$full = "JA"
Else
$full = "NEIN"
EndIf
Return $full
Else
Return "Nein" ;bei Bedarf auf JA ändern
EndIf
Else
MsgBox(0, "Fehler", "Array Fehler: Func fullinfo()")
EndIf
EndFunc ;==>fullinfo
[/autoit]Stell doch bitte die Daten die ArrayDisplay ausgibt hoch,
mfg (Auto)Bert