Jump to content

Recommended Posts

Posted

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?

 

 

aftermouse.jpg

beforemouse.jpg

Posted

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 Gude
How 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

Posted
$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)

 

  • Moderators
Posted

@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!

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

changedsize.jpg

Posted

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

 

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 Gude
How 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

Posted

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!

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
  • Recently Browsing   0 members

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