anyday Posted May 6, 2006 Posted May 6, 2006 (edited) EDIT: well i figured a way to do it using FileRead/WriteLine. only problem now is how do i read a $var into a guictrlcreatecombo? i tried GUICtrlSetDate(-1, $line1) but that didnt seem to work? im trying to make a recent search list for a script im writing. What the script does it take the address, city, state, zip county from the user and does a tax assessor search on that address. i want a combo box or something that holds the last 5 searchs. i tried the following: IniWrite(@ScriptDir & "\history.ini", "history", "", GUICtrlRead($box) & "-" & GUICtrlRead($addr) & "-" & GUICtrlRead($city) & "-" & GUICtrlRead($state) & "-" & GUICtrlRead($zip) & "-" & GUICtrlRead($county)) it works ok but the problem is instead of adding to the list it replaces the last search when you do a new one. any ideas? Edited May 6, 2006 by anyday
Valuater Posted May 7, 2006 Posted May 7, 2006 maybe IniWrite(@ScriptDir & "\history.ini", "history", GUICtrlRead($box), GUICtrlRead($box) & "-" & GUICtrlRead($addr) & "-" & GUICtrlRead($city) & "-" & GUICtrlRead($state) & "-" & GUICtrlRead($zip) & "-" & GUICtrlRead($county)) 8)
anyday Posted May 7, 2006 Author Posted May 7, 2006 yea i tried that first but it doesnt add to the file it replaces the line on the next search
Moderators SmOke_N Posted May 7, 2006 Moderators Posted May 7, 2006 IniWrite to the same key is always going to replace the last option. You have to either use IniReadSection() and find the last one and do like 'key1' / 'key2' etc... or use it in a regular txt file. Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
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