 |
AutoHotkey Community Let's help each other out
|
| View previous topic :: View next topic |
| Author |
Message |
DJAnonimo
Joined: 10 Sep 2006 Posts: 146
|
Posted: Thu Feb 15, 2007 12:20 am Post subject: Help with GUI.... |
|
|
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 |
|
 |
AiKscroll
Joined: 06 Jun 2005 Posts: 179 Location: Northern Virginia
|
Posted: Thu Feb 15, 2007 9:48 am Post subject: |
|
|
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 |
|
 |
skwire
Joined: 18 Jan 2006 Posts: 132 Location: Conway, Arkansas
|
Posted: Thu Feb 15, 2007 11:22 am Post subject: Re: Help with GUI.... |
|
|
| 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 |
|
 |
DJAnonimo
Joined: 10 Sep 2006 Posts: 146
|
Posted: Thu Feb 15, 2007 2:17 pm Post subject: |
|
|
oh
tnx a lot  |
|
| Back to top |
|
 |
|
|
You can post new topics in this forum You can reply to topics in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|