TextBox problems

07/15/2013 12:24 tomtom19#1
Hey Guys,

I need help by making a textbox...
I got some codes for that founded at Internet but they are Editable.
I want to make the textbox not editable...

Here is my code i use now (editable)
Code:
$textbox = GUICtrlCreateInput("My text", 8, 350, 150)
What's the code to make it NOT editable?
07/15/2013 13:07 SatoshiSutairu#2
Is a TextBox necessary?
I would use CreateLabel..

PHP Code:
$textbox GUICtrlCreateLabel("My text"8350150
07/15/2013 13:11 tomtom19#3
Quote:
Originally Posted by SatoshiSutairu View Post
Is a TextBox necessary?
I would use CreateLabel..

PHP Code:
$textbox GUICtrlCreateLabel("My text"8350150
Oh i will paste this is my AutoIt Script!
Thanks for posting

Thanks man!
The Label worked :D
07/16/2013 19:18 Virus.bat#4
Quote:
Originally Posted by tomtom19 View Post
Hey Guys,

I need help by making a textbox...
I got some codes for that founded at Internet but they are Editable.
I want to make the textbox not editable...

Here is my code i use now (editable)
Code:
$textbox = GUICtrlCreateInput("My text", 8, 350, 150)
What's the code to make it NOT editable?
Here is the code o.o
Hope i have help..:)
GUICtrlSetState($textbox,$GUI_DISABLE)
07/26/2013 07:41 c0w#5
And by the way, you dont have to code your whole gui. just youse koda which usually comes along with your autoit installation