Search the Community
Showing results for tags 'GUICtrlCreateEdit'.
-
Gui newbie has a question. Why is the _GUICtrlEdit_Create in the program (select No) not resizing the edit window. I can't figure out what parameter I've not set correctly. As an aside other than the $hWnd what's the advantage/difference of using _GUICtrl functions over GUICtrl? Thanks....
- 5 replies
-
- guictrlcreateedit
- _guictrledit_create
-
(and 1 more)
Tagged with:
-
I am working on a Video Player Test Script. I am reading a text file into a 3d array to be displayed in a GUI. Array Content: [x][0]FileName.mp4 [x][1]UsageCount -> Up to a 4 digit number [x][2]EnableUsageCount (True/False) In the GUI the user can check the filename box, edi...
- 2 replies
-
- guictrlcreateedit
- arrays in a case statement
-
(and 2 more)
Tagged with:
-
I hope someone explain me how to do that... well, if you run the command netstat -a inside cmd prompt he look nice( indented ) but if you try to show the output inside the GUICtrlCreateEdit he look without indentation... how can I fix it? Thx $Pid = Run(@ComSpec & " /c " & "netstat -a",@Scr...
-
How can I write a good output inside Edit control? 4 example on notepad (windows) he looks terrible... but he looks perfect on notepad++ and cmd. THX GUICtrlSetData($Edit1, "Log: " & $_StdoutRead & @Crlf ,1) the log.. <snip>
-
Hello. Could you help me find the answer for my issue. I'm trying to set fomatted data wich is selected from SQL to GUICtrlCreateEdit field. And the GUICtrlSetData function is inserting it in one line. But when I'm trying to do the same using MsgBox the data looks fine. I'm trying to...
- 8 replies
-
- guictrlsetdata
- guictrlcreateedit
-
(and 2 more)
Tagged with:
-
Hi, I'm trying to create a console reader. All is working but I have a problem with the look. I want the line numbers with another backgroundcolor in silver. I made this with a small silver label. The edit control over the label has a transparent background. But if I start the prog then i...
-
- guictrlcreateedit
- edit
-
(and 2 more)
Tagged with:
-
Hello! When utilizing GUICtrlSetData to edit what is displayed in a GUICtrlCreateEdit field, is there a way to just make it write new lines rather than clearing what's there and writing the new information? For example ... GUICtrlSetData ($editField, "Line one"&@CRLF , "") GUICtrlSet...
- 5 replies
-
- guictrlcreateedit
- guictrlsetdata
-
(and 3 more)
Tagged with:
-
Hello, Hereby I'd like to ask for the devs proffesional help cause there is something I can not get to work. I have an Combobox containing 3 strings. When I choose one, I'd wish for the 'readonly'editbox to hold some data from each string, a different data. string 1-> GUICtrlEdit /Edit1 : data ; bla...
-
I want to open and display a text file in a Window. The following test script does it for me, but when the window appears the text is highlighted (the text is selected). I must click on the text to deselect it. What is causing it to be pre-selected and how can I fix this? Thank you. #include <C...
- 4 replies
-
- guictrlcreateedit
- selected
-
(and 2 more)
Tagged with:
-
I've been unsuccessful in being able to send Keepass AutoType strings over to a GUICtrlCreateEdit field. I'm not adding any optional settings so maybe that is why, but I don't know which one(s) I should add if they are necessary. #include <ButtonConstants.au3> #include <EditConstants.au3> #includ...
-
Hello, need a tool for job to count how many text i write and simulate effect on paper. Is possible to jump on another column when reach bottom of previus one ? And, On post image (modified), on avarage every columns contain 30 characters of text, is possibile to set a limit for rows? Thank yo...
-
hello, need some help for a small text editor My job system need to stay alway connected (lan, internet) to works. So i script a small text editor to allow my user to work offline and then send to system. It does simple task, count chars, save to disk, send to mail, etc. Now i need to add...