Jump to content

Recommended Posts

Posted (edited)

Hello,

Does anyone know how to make default settings with an ini-file? I have allready read the help file, but I down't understand what they mean.

Edited by PcExpert
Posted

Hello,

Does anyone know how to make default settings with an ini-file?

Look up INIREAD() INIWRITE()

assign variables to those functions.

dim $myvar[10]

$myvar = iniread("c:\test.ini","defaultsection")

---"Educate the Mind, Make Savage the Body" -Mao Tse Tung

Posted (edited)

sure

here's a demo INI file

[section]
sectionpart1=blah

then u'd use this Autoit code

IniRead('myini.ini','section','sectionpart1',"DEFAULT")

that would return 'blah' or if sectionpart1 is blank it would return 'DEFAULT'

--hope this helps

~cdkid

Edited by cdkid
AutoIt Console written in C#. Write au3 code right at the console :D_FileWriteToLineWrite to a specific line in a file.My UDF Libraries: MySQL UDF Library version 1.6 MySQL Database UDF's for AutoItI have stopped updating the MySQL thread above, all future updates will be on my SVN. The svn location is:kan2.sytes.net/publicsvn/mysqlnote: This will still be available, but due to my new job, and school hours, am no longer developing this udf.My business: www.hirethebrain.com Hire The Brain HireTheBrain.com Computer Consulting, Design, Assembly and RepairOh no! I've commited Scriptocide!
Posted

I can only guess that you're refering to INIRead and these words :

"The default value to return if the requested key is not found."

The default settings isn't something you make, and they're not in the INI.

What they mean, is that they want you to specify what INIRead should

return if it fails to read the file/key.

If you still don't understand, read, test and try to understand how this

script works..

Does anyone know how to make default settings with an ini-file? I have allready read the help file, but I down't understand what they mean.

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
×
×
  • Create New...