realkiller Posted May 7, 2008 Posted May 7, 2008 i got a question regardion button creation, is it possible to create a clear button ? Remote 3.1 BetaRemote Media Player ControlUSB Security 1.2
goldenix Posted May 7, 2008 Posted May 7, 2008 realkiller said: i got a question regardion button creation, is it possible to create a clear button ? Check out KODA FormDesigner http://www.autoitscript.com/fileman/users/lookfar/formdesign.html #include <GUIConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 633, 454, 193, 115) $Button1 = GUICtrlCreateButton("", 64, 48, 65, 33, 0) ; EMPTY BUTTON $Button2 = GUICtrlCreateButton("Button2", 64, 96, 65, 33, 0) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd My Projects:[list][*]Guide - ytube step by step tut for reading memory with autoitscript + samples[*]WinHide - tool to show hide windows, Skinned With GDI+[*]Virtualdub batch job list maker - Batch Process all files with same settings[*]Exp calc - Exp calculator for online games[*]Automated Microsoft SQL Server 2000 installer[*]Image sorter helper for IrfanView - 1 click opens img & move ur mouse to close opened img[/list]
realkiller Posted May 7, 2008 Author Posted May 7, 2008 i know how to create a emty button but i wanna have a clear one with text Remote 3.1 BetaRemote Media Player ControlUSB Security 1.2
UQOII Posted May 7, 2008 Posted May 7, 2008 #include <GUIConstants.au3> $Form1 = GUICreate("Form1", 633, 454, 193, 115) $Button = GUICtrlCreateLabel("Button2", 64, 96, 65, 33) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button msgbox(0,"Test","This is a button") EndSwitch WEnd you mean like this? [center]uqoii.nl[/center]
realkiller Posted May 7, 2008 Author Posted May 7, 2008 more like that http://www.youtube.com/watch?v=tdsp9zeWnkE so you can see true the button Remote 3.1 BetaRemote Media Player ControlUSB Security 1.2
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