kudrow Posted October 26, 2017 Share Posted October 26, 2017 My GUI gets what looks to be ghosted box that covers up my controls but when I mouse over the controls then they appear fully. What is going on? Link to comment Share on other sites More sharing options...
BrewManNH Posted October 26, 2017 Share Posted October 26, 2017 Your label is too large, it's covering the rest of the controls. Or, you have a graphic as a background that you haven't disabled. Other than that, no code from you, means not much we can do but guess. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
kudrow Posted October 26, 2017 Author Share Posted October 26, 2017 $Form1 = GUICreate("Login", 416, 206, 192, 124) $Username = GUICtrlCreateInput("", 40, 16, 329, 21) $password = GUICtrlCreateInput("", 40, 61, 329, 21,$ES_PASSWORD) $port = GUICtrlCreateInput("500", 40, 106, 50, 21, $ES_NUMBER) $Login = GUICtrlCreateButton("Login", 225, 144, 137, 33, $BS_DEFPUSHBUTTON) $Luser = GUICtrlCreateLabel("Username", 40, 38, 298, 50) $Lpass = GUICtrlCreateLabel("Password", 40, 86, 298, 50) $Lport = GUICtrlCreateLabel("Port", 40, 130, 298, 50) $Status2 = GUICtrlCreateLabel("", 225, 100, 298, 50) Link to comment Share on other sites More sharing options...
Moderators JLogan3o13 Posted October 26, 2017 Moderators Share Posted October 26, 2017 @kudrow please pay attention to where you post in the future. The Dev forum very clearly states: Quote Do not create AutoIt-related topics here, use AutoIt General Help and Support "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! Link to comment Share on other sites More sharing options...
kudrow Posted October 26, 2017 Author Share Posted October 26, 2017 not sure what happened. I guess after logging in I got turned around. Link to comment Share on other sites More sharing options...
kudrow Posted October 26, 2017 Author Share Posted October 26, 2017 19 minutes ago, BrewManNH said: Your label is too large, it's covering the rest of the controls. Or, you have a graphic as a background that you haven't disabled. Other than that, no code from you, means not much we can do but guess. Nope... I can minimize it and bring it back up and the controls are hidden again. I used Koda to create the Gui to begin with. I tried changing the size. Link to comment Share on other sites More sharing options...
BrewManNH Posted October 26, 2017 Share Posted October 26, 2017 Here's your script, modified so that it can actually run, and color coding your labels to prove I was right. #include <GUIConstantsEx.au3> #include <ButtonConstants.au3> #include <EditConstants.au3> $Form1 = GUICreate("Login", 416, 206, 192, 124) $Username = GUICtrlCreateInput("", 40, 16, 329, 21) $password = GUICtrlCreateInput("", 40, 61, 329, 21, $ES_PASSWORD) $port = GUICtrlCreateInput("500", 40, 106, 50, 21, $ES_NUMBER) $Login = GUICtrlCreateButton("Login", 225, 144, 137, 33, $BS_DEFPUSHBUTTON) $Luser = GUICtrlCreateLabel("Username", 40, 38, 298, 50) GUICtrlSetBkColor(-1, 0x38F568) $Lpass = GUICtrlCreateLabel("Password", 40, 86, 298, 50) GUICtrlSetBkColor(-1, 0x6634FA) $Lport = GUICtrlCreateLabel("Port", 40, 130, 298, 50) GUICtrlSetBkColor(-1, 0xFB336F) $Status2 = GUICtrlCreateLabel("", 225, 100, 298, 50) GUICtrlSetBkColor(-1, 0x38F5EC) GUISetState() While GUIGetMsg() <> $gui_event_close WEnd kudrow 1 If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
kudrow Posted October 26, 2017 Author Share Posted October 26, 2017 I fixed it already. Size was fine, position was not. Thanks for the help anyway Link to comment Share on other sites More sharing options...
kudrow Posted October 26, 2017 Author Share Posted October 26, 2017 Love the color coding approach. You are indeed right. While positioning made a difference, the size is way too big on the labels. Thanks again oh wise one! Link to comment Share on other sites More sharing options...
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