怎么选中输入框,让它处在编辑状态.<已解决>
本帖最后由 nbmpe 于 2010-12-13 21:56 编辑例如我把第一个输入框输完成的时候, 点BUTTON1它会跳到第二个输入框内.
也就是在不用鼠标的情况吧,使目标输入框处在录入状态, 用SENDTAB 只能选中按顺序来,如果我要一个从INPUT3到INPUT1不用 TAB键.怎么处理.#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 617, 319, 192, 132)
$Input1 = GUICtrlCreateInput("Input1", 48, 24, 145, 24)
$Input2 = GUICtrlCreateInput("Input2", 232, 24, 177, 24)
$Input3 = GUICtrlCreateInput("Input3", 448, 24, 129, 24)
$Button1 = GUICtrlCreateButton("Button1", 176, 160, 113, 33)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
使用GUICtrlSetState (控件ID, $GUI_FOCUS)可以将输入焦点调到该控件上#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
$Form1 = GUICreate("Form1", 617, 319, 192, 132)
$Input1 = GUICtrlCreateInput("Input1", 48, 24, 145, 24)
$Input2 = GUICtrlCreateInput("Input2", 232, 24, 177, 24)
$Input3 = GUICtrlCreateInput("Input3", 448, 24, 129, 24)
$Button1 = GUICtrlCreateButton("Button1", 176, 160, 113, 33)
GUISetState(@SW_SHOW)
AdlibRegister("aa", 500)
$i = 1
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
Func aa()
If $i > 3 Then $i = 1
GUICtrlSetState(Eval("Input" & $i), $GUI_FOCUS)
$i += 1
EndFunc 回复 2# yhxhappy
这么简单.帮助文件看的少了.可以结帖了. 回复 3# nbmpe
多多看帮助...真的有帮助 本来想说ControlFocus的看了二楼的 发现这个更方便直接一点 还是取控件焦点的问题哦
页:
[1]