PcExpert Posted February 3, 2006 Posted February 3, 2006 (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 February 3, 2006 by PcExpert
blademonkey Posted February 3, 2006 Posted February 3, 2006 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
PcExpert Posted February 3, 2006 Author Posted February 3, 2006 Can someone post a example of an ini-file?
cdkid Posted February 3, 2006 Posted February 3, 2006 (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 February 3, 2006 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!
Helge Posted February 3, 2006 Posted February 3, 2006 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 shouldreturn if it fails to read the file/key.If you still don't understand, read, test and try to understand how thisscript 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.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now