 |
AutoHotkey Community Let's help each other out
|
| View previous topic :: View next topic |
| Author |
Message |
Invalid User
Joined: 14 Feb 2005 Posts: 442 Location: Texas, Usa
|
Posted: Sun Apr 24, 2005 9:56 pm Post subject: A Border on pic Control |
|
|
heres a simple one. How can I put a border on a pic control
GuiControl, +Border doesnt work
GuiControl, +0x7 doesnt work _________________ my lame sig  |
|
| Back to top |
|
 |
MYYM
Joined: 05 Apr 2005 Posts: 132
|
Posted: Mon Apr 25, 2005 5:40 am Post subject: |
|
|
| Quote: | | How can I put a border on a pic control |
| Code: | | Gui,Add, picture, +border |
|
|
| Back to top |
|
 |
Invalid User
Joined: 14 Feb 2005 Posts: 442 Location: Texas, Usa
|
Posted: Mon Apr 25, 2005 5:43 am Post subject: |
|
|
Thanks for the suggestion but I do need to add and remove that option, if it needed it all the time I would add a border to the pic itself. Thanks tho
 _________________ my lame sig  |
|
| Back to top |
|
 |
MYYM
Joined: 05 Apr 2005 Posts: 132
|
Posted: Mon Apr 25, 2005 6:03 am Post subject: |
|
|
This code works ...
| Code: | Gui,Add, picture, +border vmp,test.gif
gui,show
return
^F11:: ; Remove border
guicontrol, hide ,mp,
guicontrol, -border ,mp,
guicontrol, show ,mp,
return
^F12:: ; Add border
guicontrol, hide ,mp,
guicontrol, +border ,mp,
guicontrol, show ,mp,
return |
MYYM |
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10480
|
|
| 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
|