Jump to content

Recommended Posts

Posted

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
Posted

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.
  :)

Posted

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

Posted

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

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...