Jump to content

quick question


Xiis
 Share

Recommended Posts

  • Developers

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

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...