RocTx Posted June 24, 2004 Posted June 24, 2004 I may be missing something here, I'm just not sure. I get the error: "Variable used without being declared" when trying to use $Get_Focus. GUISetControlEx(-1,20) $nInputCfn = GuiSetControl ("input", "", 50,45,100,20) GUISetControlEx(-1,2,$GUI_FOCUS) $nInputCln = GuiSetControl ("input", "", 200,45,100,20) At first I had $Get_Focus by itself, when it did't work I added the line GuiSetControlEx(-1,20) and still got the same error message. Aside from that small piece the rest of my code works. What I'm trying to accomplish is to get the focus (cursor) on the first Input filed of the form. $nInputCln = GuiSetControl ("input", "", 200,45,100,20). Unless there is another way and I'm just missing it. Thanks for your responses.
Developers Jos Posted June 24, 2004 Developers Posted June 24, 2004 Did you do an: #include <GUIConstants.au3> at the top of the script?This contains all the constants for the GUI commands... 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.
RocTx Posted June 24, 2004 Author Posted June 24, 2004 No.. I had not added the "#include" line. Thanks.. that cleared up the "Variable not declared" problem. But now, it doesn't give me the focus on the field I want it be in. It don't get any focus unless I click on the field. Thanks JdeB...
RocTx Posted June 24, 2004 Author Posted June 24, 2004 Figured it out.. My $input variable was not inside my $Get_Focus function. Now it's in.. and it works. Great! Thank for the tip JdeB..
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