Ich wollte mal wissen ob mir wer sagen kann warum er die datei nicht findet/ausführt...
Ich bedanke mich schonmal im vorraus für antworten
MfG Ludder231
PHP Code:
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
case $Button1
IniWrite(@DesktopCommonDir&"\Teamspeak.ini", "File2", "Path2", GUICtrlRead($Input1form))
run($Input1form)
if @error Then
MsgBox(16, "Error", "File does not exists", 5)
endif
case $Button2
GUICtrlSetData($Input1form,IniRead(@DesktopCommonDir&"\Teamspeak.ini", "File2", "Path2", ""))
if not FileExists(@DesktopCommonDir&"\Teamspeak.ini") Then
msgbox(16, "Error", "Cannot read Teamspeak.ini..."& @CRLF & _
"May because there is no file to read...", 5)
endif
EndSwitch
WEnd
EndFunc
MfG Ludder231