本帖最后由 fenhanxue 于 2012-10-27 13:11 编辑
想读取tabitem中的文本,应该用什么函数哦?
wingettitle ?
ControlGetText ?
GUICtrlRead ?
尝试了下貌似都没反应。。。
my 代码Dim $input,$c1,$r1,$r2,$a
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <TabConstants.au3>
#include <EditConstants.au3>
GUICreate("主界面",400,200)
GUISetState()
$c1=GUICtrlCreateButton("读取标签到input",5,100,100,50)
$input=GUICtrlCreateInput("",150,100,200,50)
$tab1=GUICtrlCreateTab(5,10,990,50,BitOr($GUI_SS_DEFAULT_TAB,$TCS_MULTILINE ))
$r1=GUICtrlCreateTabItem("把我读出来。。。")
GUICtrlCreateTabItem("我是打酱油滴")
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $c1
;;;;;;;;;;;;;;;;;就是这个$r1中的”把我读出来。。。"几个字应该怎么读取哦
$a=ControlGetText("","",$r1)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
GUICtrlSetData($input,$a)
EndSwitch
WEnd
|