Xiis 0 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? Share this post Link to post Share on other sites
Jos 2,168 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. Share this post Link to post Share on other sites
buzz44 1 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 Share this post Link to post Share on other sites
Xiis 0 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 Share this post Link to post Share on other sites