关于"send”
请教一个问题, 我在GUI里写了很简单的编辑框Func Example()Local $myedit, $msg
GUICreate("My GUI edit") ; will create a dialog box that when displayed is centered
$myedit = GUICtrlCreateEdit("First line" & @CRLF, 176, 32, 200, 97, $ES_WANTRETURN + $WS_VSCROLL);$ES_AUTOVSCROLL + $WS_VSCROLL
GUISetState()
;Send("{end}")
Send("k")
GUICtrlSetData($myedit, @CRLF & "Third line", 1)
Func Example()
问题是为什么我把第一个Send 去掉的话"First line" 不见了, 被"k"取代
页:
[1]