Jump to content

First Input capable field


Recommended Posts

_WinAPI_SetFocus will select the control you want

#include <WinAPI.au3>
#include <GUIConstants.au3>

Global $frmMain = GUICreate("", 130, 160)
Global $inp1 = GUICtrlCreateInput("", 10, 10, 50, 20)
Global $inp2 = GUICtrlCreateInput("", 70, 10, 50, 20)
Global $inp3 = GUICtrlCreateInput("", 10, 40, 50, 20)
Global $inp4 = GUICtrlCreateInput("", 70, 40, 50, 20)
Global $inp5 = GUICtrlCreateInput("", 10, 70, 50, 20)
Global $inp6 = GUICtrlCreateInput("", 70, 70, 50, 20)
Global $inp7 = GUICtrlCreateInput("", 10, 100, 50, 20)
Global $inp8 = GUICtrlCreateInput("", 70, 100, 50, 20)
Global $btnFocus = GUICtrlCreateButton("Focus!", 10, 130, 110, 20)

GUISetState(@SW_SHOW, $frmMain)

While (True)
    Switch (GUIGetMsg())
        Case $GUI_EVENT_CLOSE
            Exit 0

        Case $btnFocus
            _WinAPI_SetFocus(GUICtrlGetHandle(Eval("inp" & Random(1, 8, 1))))
    EndSwitch
WEnd

 

Edited by InunoTaishou
Link to comment
Share on other sites

  • Moderators

Docfxit,

If you are speaking of an AutoIt script you have coded then it is a little bit simpler than that:

#include <GUIConstantsEx.au3>

Global $aInput[8]

$hGUI = GUICreate("Test", 500, 500)

For $i = 0 To 7
    $aInput[$i] = GUICtrlCreateInput("", 10, ($i * 30) + 10, 200, 20)
Next

$cFocus = GUICtrlCreateButton("Focus!", 10, 400, 80, 30)

GUISetState()

While 1

    Switch GUIGetMsg()
        Case $GUI_EVENT_CLOSE
            Exit
        Case $cFocus
            GUICtrlSetState($aInput[Random(0, 7, 1)], $GUI_FOCUS)
    EndSwitch

WEnd

But if, as I suspect, you are asking about third-party apps, then what apps are you trying to automate? Do they not preselect the first available field automatically?

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

The first input capable field that I need the cursor at is not an AutoIt script.  The program doesn't automatically go to that field.

The Info Window shows:

Title COREL

Window Info Class: #32770

Control Info Class ComboBox

Thanks,

Docfxit

Link to comment
Share on other sites

Here is a tailored example from help file for ControlFocus function (You will also need the instance of the control in addition to the class, in this example the instance is 1)

Example()

Func Example()
    ; Wait 10 seconds for the Notepad window to appear.
    Local $hWnd = WinWait("Corel", "", 10)

    ; Set input focus to the edit control of Corel using the handle returned by WinWait.
    ControlFocus($hWnd, "", "ComboBox1")
EndFunc   ;==>Example

 

Edited by spudw2k
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...