AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Help with GUI....

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
DJAnonimo



Joined: 10 Sep 2006
Posts: 146

PostPosted: Thu Feb 15, 2007 12:20 am    Post subject: Help with GUI.... Reply with quote

Hi



Code:
Gui, 3:Add, Text, x20 y20, Transparency:
Gui, 3:Add, Slider, vTransSlider, %TransValuePerc%
Gui, 3:Add, Checkbox, x25 y85 Checked%AlwaysOnTopValue% vAlwaysOnTopValue, Always On Top:
[b]Gui, 3:Add, Text, x20 y140, Columns:[/b]
Gui, 3:Add, UpDown, [b]x20 y120 [/b]Range2-32 vColumns, %Columns%
Gui, 3:Add, Button, h40 w100 x180 y240, Apply
Gui, 3:Add, Button, h40 w100 x280 y240, Cancel
Gui, 3:Show, h300 w400, Options
return

3ButtonCancel:
ExitApp

3GuiClose:
ExitApp


I cant see Columns: text ?
And what happened with Updown positions.. "x20 y120"
Which is the problem ?

Tnx in advance
Back to top
View user's profile Send private message MSN Messenger
AiKscroll



Joined: 06 Jun 2005
Posts: 179
Location: Northern Virginia

PostPosted: Thu Feb 15, 2007 9:48 am    Post subject: Reply with quote

I think the updown is trying to attach itself to a text control, when it is meant to be used with an Edit control.
_________________
_AiK
Back to top
View user's profile Send private message AIM Address
skwire



Joined: 18 Jan 2006
Posts: 132
Location: Conway, Arkansas

PostPosted: Thu Feb 15, 2007 11:22 am    Post subject: Re: Help with GUI.... Reply with quote

DJAnonimo wrote:
I cant see Columns: text ?
And what happened with Updown positions.. "x20 y120"
Which is the problem ?


As AiKscroll said, an UpDown control is designed to be used with an Edit control.

Code:
Gui, 3:Add, Text, x20 y20, Transparency:
Gui, 3:Add, Slider, vTransSlider, %TransValuePerc%
Gui, 3:Add, Checkbox, x25 y85 Checked%AlwaysOnTopValue% vAlwaysOnTopValue, Always On Top:
Gui, 3:Add, Text, x20 y140, Columns:
Gui, 3:Add, Edit,
Gui, 3:Add, UpDown, x20 y120 Range2-32 vColumns, %Columns%
Gui, 3:Add, Button, h40 w100 x180 y240, Apply
Gui, 3:Add, Button, h40 w100 x280 y240, Cancel
Gui, 3:Show, h300 w400, Options
return

3ButtonCancel:
ExitApp

3GuiClose:
ExitApp
Back to top
View user's profile Send private message AIM Address Yahoo Messenger MSN Messenger
DJAnonimo



Joined: 10 Sep 2006
Posts: 146

PostPosted: Thu Feb 15, 2007 2:17 pm    Post subject: Reply with quote

oh

tnx a lot Smile
Back to top
View user's profile Send private message MSN Messenger
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group