AutoHotkey Community

It is currently May 27th, 2012, 1:36 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 3 posts ] 
Author Message
 Post subject: Gui write to ini
PostPosted: November 22nd, 2009, 2:26 am 
Offline

Joined: November 22nd, 2009, 2:20 am
Posts: 2
Hey there, Iv been readin all the examples and tutorials I could find in getting a GUI to write to an INI file, no such luck. Can someone point me in the right direction?

Code:
Gui, Add, DropDownList, vAnimusSelect, F1|F2|F3|F4|F5|F6|F7|F8|F9|F10
Gui, Add, DropDownList, vColorChoice1, Black|White|Red|Green|Blue
Gui, Add, ComboBox, vColorChoice, Red|Green|Blue|Black|White
Gui, Add, Button, default, OK
Gui, Show, w405 h823, New GUI Window
Return

ButtonOK:
Gui, Submit


IniWrite, %vAnimusSelect%, GUI.ini, Animus, select
IniWrite, %vColorChoice%, GUI.ini, Animus, colour
IniWrite, %vColorChoice1%, GUI.ini, Animus, colour1
Return

GuiClose:
ExitApp


The output to the INI file is this
Code:
[Animus]
select=
colour=
colour1=


As you can see none of the selections from the dropown list go into the ini file. Any help would be much appreciated[/code]


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Re: Gui write to ini
PostPosted: November 22nd, 2009, 2:34 am 
Offline

Joined: February 17th, 2008, 7:09 am
Posts: 536
Code:

Gui, Show, w405 h823, New GUI Window

IniWrite, %vAnimusSelect%, GUI.ini, Animus, select
IniWrite, %vColorChoice%, GUI.ini, Animus, colour
IniWrite, %vColorChoice1%, GUI.ini, Animus, colour1


v for your options merely states it's a variable, the v isn't part of the variable. Remove what's in red, and it will work.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: November 22nd, 2009, 2:35 am 
Offline

Joined: November 22nd, 2009, 2:20 am
Posts: 2
hahahaha BRILLIANT!!

thanks man I knew it had to be somthing stupid


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: Apollo, bobbysoon, iDrug, Tipsy3000, Yahoo [Bot] and 15 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group