Jump to content

Recommended Posts

Posted

How do I append a line of text to the values of my ini?

INIWrite overwrites everything, it doesn't work.

Thx in advance.

[center]See the Helpfile[/center]

While Alive()
	 DrinkWine();
}
[center][/center]
Posted

Make sure that each new value has a different key

IniWrite("C:\Temp\myfile.ini", "section", "key1", "this is a new value1")
IniWrite("C:\Temp\myfile.ini", "section", "key2", "this is a new value2")
IniWrite("C:\Temp\myfile.ini", "section", "key3", "this is a new value3")


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

Posted

Use this:

Func _IniWrite($s_filename, $s_section, $s_key, $s_value)
    IniWrite($s_filename, $s_section, $s_key, IniRead($s_filename, $s_section, $s_key, "") & $s_value)
EndFunc   ;==>_IniWrite

Edit: Bug deleted

Works like magic. Thank you so much.

[center]See the Helpfile[/center]

While Alive()
	 DrinkWine();
}
[center][/center]

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
  • Recently Browsing   0 members

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