Search the Community
Showing results for tags 'EditBox'.
-
i have a script that let you type text then give a random result on an output box, writes the result on a text file and tries to add the result text to an edit box but doesn't support multiple lines. I want the script to add lines of results on the edit box (as a log of results) #include <GUICon...
-
Hello everyone ! I'm making a little password generator with save function. And i would like to set a line limit at 25. For my script, the user have to enter a name in "$input1" and click on the button "$btn_save" to display it in the editbox "$edit1". The user can't edit himself...
-
I am trying to use IE.au3 UDF to auto fill a webpage. All goes well until I get to an editbox that appears to be a javascript. I am attaching a pic of the editbox. (I would be glad to add any other information needed to help me past this last hurdle in my script. I'm just not sure what questions you...
-
Hi all guys, I'm trying to find a solution for the following: I have an Editbox $CH_Edit = GUICtrlCreateEdit("", 71, 40, 81, 353, BitOR($WS_VSCROLL,$ES_WANTRETURN)) $CH_Close = GUICtrlCreateButton("Save&Close", 70, 408, 75, 25) and I would like to pass to an array all the datas inside, row...
-
I am looking for a way to create a combobox that drops under the cursor of an edit box. In the sort of way scite works when typing out a function. I would like to use it for predictive text, below is an what I am going for. I would appreciate suggestions on how to attack this problem. Right now I...
-
- predict text
- combobox
-
(and 1 more)
Tagged with:
-
Hi guys, i have this script: #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> $Form1 = GUICreate("Form1", 248, 180) $Edit = GUICtrlCreateEdit("", 8, 8, 233, 121) $Button = GUICtrlCreateButton("Verify", 8, 136, 233, 33) GUI...
-
Hi Everyone, I have been searching help and autoit forums for a long time to get the below help. Sorry if there is another thread which solved my question. 1. I want to create an editbox with a separator so that I can resize the view during runtime. Thank you.