Jump to content

How to do action if I click on a crtl input


babaorom
 Share

Recommended Posts

  • Moderators

babaorom,

The code in this post might be of use to you. :oops:

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

  • Moderators

babaorum,

I want to know wich input ctrl is clicked before I keyboard text and end with return

I do not understand. How is the input selected if you do not do it yourself before typing? Why do you want to type without having selected the input into which you are entering text? :oops:

Could you please explain in more detail (in French is fine) what exactly you are trying to do? :bye:

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

Melba 23

J'ai un GUI avec n Input Ctrl.

Quand je click sur l' input Ctrl n, je voudrais lancer une action, par exemple affichage d'un message du type "Input Ctrl n sélectionnée"

Ceci sans attendre une saisie dans l'Input Ctrl (N°1) validée par un RETURN.

Merci de ton aide.

Link to comment
Share on other sites

  • Moderators

babaorum,

Now I understand - I would do something like this: :bye:

#include <GuiconstantsEx.au3>
#include <WindowsConstants.au3>
#include <EditConstants.au3>
#include <WinAPI.au3>

Global $sFocus = ""

$hGUI = GUICreate('Win 1', 200, 200, -1, -1)

$cInput_1 = GUICtrlCreateInput("", 10, 30, 180, 20)
$hInput_1 = GUICtrlGetHandle($cInput_1)
$cInput_2 = GUICtrlCreateInput("", 10, 70, 180, 20)
$hInput_2 = GUICtrlGetHandle($cInput_2)

$cButton = GUICtrlCreateButton("Submit", 60, 120, 80, 30)

GUISetState(@SW_SHOW)

$hLastFocus = 0

While 1
    Switch GUIGetMsg()
        Case $GUI_EVENT_CLOSE
            Exit
    EndSwitch

    $hCurrFocus = _WinAPI_GetFocus()
    If $hCurrFocus <> $hLastFocus Then
        Switch $hCurrFocus
            Case $hInput_1
                ConsoleWrite("Input_1 has focus" & @CRLF)
            Case $hInput_2
                ConsoleWrite("Input_2 has focus" & @CRLF)
        EndSwitch
        $hLastFocus = $hCurrFocus
    EndIf

WEnd

Does that do what you want? :oops:

M23

P.S. You might want to use arrays to hold the handles and a loop to go through them if you have lots of inputs. :doh:

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

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...