faustf Posted June 11, 2012 Posted June 11, 2012 hi guy i have a questions i wanna create a gui like shell , inside this "shell" (black) i wanna insert some inputbox but dont wanna see a border of input box , is possible ????
hannes08 Posted June 11, 2012 Posted June 11, 2012 Have you tried using KODA? You can launch it from the tools menu in SciTE. An Example: #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 623, 442, 192, 124) GUISetOnEvent($GUI_EVENT_CLOSE, "Form1Close") $Edit1 = GUICtrlCreateEdit("", 64, 64, 497, 209) GUICtrlSetData(-1, "Edit1") GUICtrlSetColor(-1, 0xFFFFFF) GUICtrlSetBkColor(-1, 0x000000) $Input1 = GUICtrlCreateInput("Input1", 80, 224, 233, 21, -1, 0) GUICtrlSetColor(-1, 0xFFFFFF) GUICtrlSetBkColor(-1, 0x000000) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 Sleep(100) WEnd Func Form1Close() Exit EndFunc Regards,Hannes[spoiler]If you can't convince them, confuse them![/spoiler]
faustf Posted June 11, 2012 Author Posted June 11, 2012 we must use this $Input1 = GUICtrlCreateInput("Input1", 72, 32, 121, 21,-1, $WS_EX_WINDOWEDGE ) like for button thankzz
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