Jump to content

activate text line (oda Formdesigner)


Recommended Posts

I have a input box created with Formdesigner where you can put in text.

I want to activate this input box when you type something in the box ( and you click on a button search or login) it automaticly puts the text intro a other (online) search box and logs in or searches

#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>

$Button1 = GUICtrlCreateButton("login met account", 8, 232, 235, 49) ; search or login activator
$Input1 = GUICtrlCreateInput("", 8, 280, 233, 21)      ;inputbox to put in text
$Input6 = GUICtrlCreateInput("", 12, 380, 233, 21)     ;inputbox to put in text

While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit

        Case $Button1 ; when you push this button its puts in the text from $input1 and $input6 in a   online input and clicks it

        Case $Input1 ;inputbox to put in text

        Case $Input6 ;inputbox to put in text

EndSwitch
WEnd
Link to comment
Share on other sites

Is much to vague.

You need to decide what browser, what site, what input etc...

Start by looking at _IE* functions.

browser is internet explorer, I know al the functions that i need to start a internet browser and login etc,

but i want to make it more easier for me to loging with different account without editing the script al the time,

so i want a function that will copy and past the a line, copy from uda Fromdesigner program, and past it intro a website input box (paste text intro login box) i already know how to activate browser it is only the copy and past part,

for example this is the input box where i want the text to be pasted automatically when you: type text in my own made windows program paste it in the (online, website)Iinput box bellow

<input type="text" name="signin[username]" class="shadow_input biginput lightgray" title="you@example.com" id="signin_username">
Link to comment
Share on other sites

  • Moderators

Arclite86,

Please do not bump your own threads within 24 hours. :naughty:

Remember this is not a 24/7 support forum - those who answer are only here because they like helping others and have some time to spare. You just have to wait until someone who knows something about your particular problem, and is willing to help, comes online. Be patient and someone will answer eventually. ;)

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

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