seres Posted April 7, 2008 Posted April 7, 2008 hello , i have a program from autoit and i want to save the things that the program performs in to an ini or txt file like when i give a click on a button so the program saves which buttons or what answer does the user make
Tomb Posted April 7, 2008 Posted April 7, 2008 hello , i have a program from autoit and i want to save the things that the program performs in to an ini or txt file like when i give a click on a button so the program saves which buttons or what answer does the user makeuse iniread and iniwrite to save and load information.i made an alarm clock a while ago that saves the information you input.see heremaybe you can just have it iniwrite on Autoit Exit
seres Posted April 7, 2008 Author Posted April 7, 2008 use iniread and iniwrite to save and load information. i made an alarm clock a while ago that saves the information you input. see here maybe you can just have it iniwrite on Autoit Exit hello thanks for the answer, but now im stuck again here is a part of my code (the code is a little bit like human language) While 1 if button1 is preesed then IniWrite("log.ini", "section2", "key", "button1") EndIf if button2 is preesed then IniWrite("log.ini", "section2", "key", "button2") EndIf Sleep(100) WEnd what i want is that the iniwrite saves the value of the button 1 and 2 together like [section2] key=button1 button2 thanks
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