Jump to content

Can GUICtrlCreateEdit make autoit do same work each line?


Recommended Posts

I want to use GUICtrlCreateEdit to input some text like:

Text1

Text2

Text3....

Then I want autoit do same work per line. For example: Coppy all line to an .txt file, then rename that file to "Line text.txt"

So autoit will coppy "Text1" to an *.txt save as name "Text1.txt" then do the same thing with "Text2", "Text3".... ultil the end row?

Help me please!

Edited by Thatgood
Link to comment
Share on other sites

  • Moderators

Thatgood,

Welcome to the AutoIt forum. :)

What you want to do is very simple:

- Create a GUI with an edit control (the first example for GUICtrlCreateEdit in the Help file shows you how)

- Once you have entered the text you wish, use GUICtrlRead to get it into a string.

- Split the string into the separate lines using StringSplit

- Loop through the resulting array and use FileWrite to write each line to a file.

Give it a go and see how you get on - you know where we are if you run into difficulties. ;)

Good Luck! ;)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

Thank you Melba23!

But I have one more question.

Example: I build 2 edit control to input

Edit 1:

gift 1

gift 2

gift 3

gift 4

Edit 2:

Michanel

John

Mary

Melba23

When I do as you suggest, can autoit do with same line by 2 edit control? That Gift 1 is for Michanel, Gift 2 is for John... and Gift 4 is for you :)

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...