Jump to content

fast answer please!


Recommended Posts

Hi. How do i go to next line in the command filewrite? i mean fx:

FileWrite("userconfig.cfg", GUICtrlRead($Input_1))
Now i need to go to next line in the userconfig.cfg
FileWrite("userconfig.cfg", GUICtrlRead($Input_2))

I hope someone understand me..

-XInFisk

Link to comment
Share on other sites

How about

FileWrite("userconfig.cfg", GUICtrlRead($Input_1))
Now i need to go to next line in the userconfig.cfg
FileWrite("userconfig.cfg", @CRLF & GUICtrlRead($Input_2))


Time you enjoyed wasting is not wasted time ......T.S. Elliot
Suspense is worse than disappointment................Robert Burns
God help the man who won't help himself, because no-one else will...........My Grandmother

Link to comment
Share on other sites

Hi. How do i go to next line in the command filewrite? i mean fx:

FileWrite("userconfig.cfg", GUICtrlRead($Input_1))
Now i need to go to next line in the userconfig.cfg
FileWrite("userconfig.cfg", GUICtrlRead($Input_2))

I hope someone understand me..

-XInFisk

If appending the file, you could use FileWriteLine():

FileWriteLine("userconfig.cfg", GUICtrlRead($Input_1))
FileWriteLine("userconfig.cfg", GUICtrlRead($Input_2))

:D

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
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...