Xiis Posted April 15, 2005 Posted April 15, 2005 is it possible to save the info that was placed in a GUI input box into an .ini file so that it comes up every time you start?
Developers Jos Posted April 15, 2005 Developers Posted April 15, 2005 is it possible to save the info that was placed in a GUI input box into an .ini file so that it comes up every time you start?<{POST_SNAPBACK}>yes...INIRead()GUICtrlSetData()GUIRead()INIWrite() SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
buzz44 Posted April 15, 2005 Posted April 15, 2005 Yes, look at the parametres for an inputbox. GUICtrlCreateInput ( "text", left, top [, width [, height [, style [, exStyle]]]] ) For the "text" replace it with reading from an ini file like so. $var = IniRead("C:\Temp\test.ini", "test section", "test key", "NotFound") GUICtrlCreateInput ($var, 10,10) Ofcourse you will actaully have to have an ini file for it to return something other than "NotFound" A standard ini file looks like: [SectionName] Key=Value qq
Xiis Posted April 15, 2005 Author Posted April 15, 2005 ok thanks just needed to kno b4 i went out of my way to do somethign thats in possible (^.-)b very fast and helpfull replys ty
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