Jump to content

GUI Questions


infosecz
 Share

Recommended Posts

I haven't programmed in ~6 years so I am learning everything over again, it seems. I have been diggin through the forums pretty extensively, but have run into a few hurdles with my attempt at a single sign on GUI.

I have made the GUI, using a template, but I don't know what commands I would use to populate the data into forms.

Here is the gui:

#include 
#include 
#include 
#include 

$gui = GUICreate("SSO", 240, 290)
;Website
$username = GUICtrlCreateLabel("Website Username", 8, 20, 136, 17)
$usernameinput = GUICtrlCreateInput("Username", 8, 40, 217, 21)
$password = GUICtrlCreateLabel("Website Password", 8, 70, 136, 17)
$passwordinput = GUICtrlCreateInput("*********", 8, 90, 217, 21,$ES_PASSWORD)
;Java Web App
$username2 = GUICtrlCreateLabel("Java Username", 8, 130, 136, 17)
$username2input = GUICtrlCreateInput("Username", 8, 150, 217, 21)
$password2 = GUICtrlCreateLabel("Java Password", 8, 180, 136, 17)
$password2input = GUICtrlCreateInput("*********", 8, 200, 217, 21,$ES_PASSWORD)
;Button
$ok=GUICtrlCreateButton("OK",8,240,217,30)
GUISetState()
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit

EndSwitch
WEnd

One form is located on a website, and looks as such:

 

Username:

Password:

The other username and password needs to be fed into a java webapp. I don't have access to the source files for the web app. When I use the autoit spy tool, it does not differentiate any buttons from the frame. It also lists every area of the web app screen as the same mouse location.

Any help would be greatly appreciated.

Link to comment
Share on other sites

  • Moderators

infosecz,

Welcome to the AutoIt forum. :)

Alas, you have not chosen a good subject for your first question - please read the Forum Rules - particularly the bit about not discussing forum or site login scripts. I realise this was not intentional on your part, but I am locking the thread as it does violate that rule. ;)

See you soon with a legitimate question I hope. :)

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

Guest
This topic is now closed to further replies.
 Share

  • Recently Browsing   0 members

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