Also funktioniert jetzt alles :D?
Oder immer noch ein problem :D?
Und wenn nicht dann hier:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
$Form1 = GUICreate("Filer - .:iIi:.", 306, 138, -1, -1)
$Button1 = GUICtrlCreateButton("Read :", 96, 8, 75, 25)
$Input1 = GUICtrlCreateInput("", 176, 8, 121, 21, BitOR($GUI_SS_DEFAULT_INPUT,$ES_CENTER))
$Edit1 = GUICtrlCreateEdit("", 8, 40, 289, 89, BitOR($ES_AUTOVSCROLL,$ES_AUTOHSCROLL,$ES_WANTRETU RN,$WS_VSCROLL,$WS_HSCROLL))
$Button2 = GUICtrlCreateButton("Write", 8, 8, 75, 25)
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
$I1 = GUICtrlRead($Input1)
$1 = FileRead($I1)
GUICtrlSetData($Edit1,$1)
EndSwitch
WEnd