- Does it violate the rules of the forum to ask for assistance with this? It is a login, but I don’t think it meets the “SPAM tools including instant messenger or forum auto-posters. This includes forum or site auto-login methods.” criteria, as it requires the user to enter their credentials each time they launch the application.
- I believe that it has something to do with capturing the username and password that are entered in the GUI form and saving them as variables to pass on to the website.
- If this does not violate the forum rules, can someone please point me in the appropriate direction?
If this request does in fact violate the forum rules for posting. I sincerely apologize.
Thanks!
Here is the code for the input box:
The usenam field should pass information on to the "UserName" field on the website
The passwrd field should pass information on to the "txtPassword" field on the website.
#include <IE.au3> #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Login = GUICreate("Login", 286, 114, 327, 207) GUISetBkColor(0xA6CAF0) $Username = GUICtrlCreateLabel("Username", 5, 9, 59, 19) $Password = GUICtrlCreateLabel("Password", 5, 33, 58, 19) GUICtrlSetFont(-1, 10, 400, 0, "Calibri") $usernam = GUICtrlCreateInput("", 72, 8, 193, 21) $passwor = GUICtrlCreateInput("", 72, 32, 193, 21, BitOR($GUI_SS_DEFAULT_INPUT,$ES_PASSWORD)) $Continue = GUICtrlCreateButton("Continue", 56, 64, 175, 33) GUICtrlSetFont(-1, 10, 400, 0, "Calibri") GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch Wend




This topic is locked
