Quote:
Originally Posted by omer36
[Only registered and activated users can see links. Click Here To Register...]
Sodass nur der Text im Script steht.
Was genau meinst du ?
|
du ich glaube das er meint mit dem zum beispiel das man jetzt 'subaru.txt' hat oda so und das in input1 oda sowat ausliest .. das geht nämlich in etwa sooo :
Code:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
$1 = FileRead("Jessica.txt")
GUICreate(".:!:. Text auslesen .:!:.", 233, 42)
$Input1 = GUICtrlCreateInput($1, 8, 8, 137, 24)
GUICtrlSetFont(-1, 10, 400, 0, "MS Sans Serif")
$Button1 = GUICtrlCreateButton("Aktualisieren", 152, 8, 75, 25)
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
GUICtrlSetData($Input1,$1)
EndSwitch
WEnd