Jump to content

Search the Community

Showing results for tags 'EditBox'.

  • Search By Tags

    • editbox ×
    Type tags separated by commas.
  • Search By Author

Content Type



Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Found 11 results

  1. 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...
  2. I am trying to get an image showing through a edit box. I am only successful in making the edit box totally transparent #include-once #include <GUIConstants.au3> #include <GDIPlus.au3> #include <WinAPISys.au3> #include <colorconstants.au3> ;WS_EX_TRANSPARENT $gui = GUICreate("", 1000, 800, -1...
  3. 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...
  4. I want to show or hide a edit control depending if a radio button is checked or not.The following Autoit code appears semantically ok but not working.Can anyone please help? thanks olmar While 1 $nMsg = GUIGetMsg() $isradioChk=GUICtrlRead($radio_AbsP);checked=1,not checked=4...
  5. Hi Guys, quick dumb question that i could not find an answer to. I created an EditBox with the Style $ES_LEFT. I would like to "add" the $WS_EX_TRANSPARENT style so i can use to box without the borders. My goal is to have a multi line input that automatically breaks into the n...
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. Hi guys, i have created this simply gui: $GUI2 = GUICreate("Form1", 309, 442, 194, 55) $EditBase = GUICtrlCreateEdit("", 32, 24, 249, 161) GUICtrlSetData(-1, "") $EditResult= GUICtrlCreateEdit("", 30, 204, 249, 161) GUICtrlSetData(-1, "") $ButtonBase = GUICtrlCreateButton("First", 32, 384, 73, 3...
  11. 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.
×
×
  • Create New...