AutoMaster19 Posted January 4, 2018 Posted January 4, 2018 (edited) #include <IE.au3> #include <GUIConstants.au3> global $Input1 = "*" global $Input2 = "*" $Group1 = GUICtrlCreateGroup("Twitter", 8, 0, 265, 129) $Button1 = GUICtrlCreateButton("Go", 176, 48, 75, 25) $Button2 = GUICtrlCreateButton("StopScript", 176, 96, 75, 25) $Input1 = GUICtrlCreateInput("Input1", 32, 48, 121, 21) $Label1 = GUICtrlCreateLabel("UserName", 56, 24, 62, 17) $Input2 = GUICtrlCreateInput("Input2", 32, 96, 121, 21) $Label2 = GUICtrlCreateLabel("Password", 56, 72, 66, 17) GUICtrlCreateGroup("", -99, -99, 1, 1) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit case $Button1 Button1() case $Button2 Button2() EndSwitch WEnd func Button1() GUICtrlRead($Input1 & $Input2) _IECreate('http:\\www.twitter.com\firedragon172') EndFunc func Button2() Exit EndFunc i need help, the GUI is not appearing after the internet explorer any reason why or something missing Edited January 4, 2018 by JLogan3o13 Removed password
AutoMaster19 Posted January 4, 2018 Author Posted January 4, 2018 #include <IE.au3> #include <GUIConstants.au3> global $Input1 = "firedragon172" global $Input2 = "werewolf" $Group1 = GUICtrlCreateGroup("Twitter", 8, 0, 265, 129) $Button1 = GUICtrlCreateButton("Go", 176, 48, 75, 25) $Button2 = GUICtrlCreateButton("StopScript", 176, 96, 75, 25) $Input1 = GUICtrlCreateInput("Input1", 32, 48, 121, 21) $Label1 = GUICtrlCreateLabel("UserName", 56, 24, 62, 17) $Input2 = GUICtrlCreateInput("Input2", 32, 96, 121, 21) $Label2 = GUICtrlCreateLabel("Password", 56, 72, 66, 17) GUICtrlCreateGroup("", -99, -99, 1, 1) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit case $Button1 Button1() case $Button2 Button2() EndSwitch WEnd func Button1() GUICtrlRead($Input1 & $Input2) _IECreate('http:\\www.twitter.com\firedragon172') EndFunc func Button2() Exit EndFunc i need help, the GUI is not appearing after the internet explorer any reason why or something missing Quote
AutoMaster19 Posted January 4, 2018 Author Posted January 4, 2018 even without global $Input1 = "firedragon172" and $Input = "werewolf"
water Posted January 4, 2018 Posted January 4, 2018 BTW: When posting code please use the AutoIt code tags of the editor (the "<>" button). Makes your code much easier to read My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
Moderators JLogan3o13 Posted January 4, 2018 Moderators Posted January 4, 2018 @AutoMaster19 welcome to the forum. It is generally not a good idea to include your username and password for a site in your post. "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
Developers Jos Posted January 4, 2018 Developers Posted January 4, 2018 merged the cross-posted posts that really did not belong in the other topic. please don't do that again. Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now