Func _UpdateList($list, $ini, $inisection) Local $line Local $lines Local $data $lines = _FileCountLines($ini) $line = $lines -1 Do $data = IniRead($ini, $inisection, $line, "1") $line = $line - 1 GuiCtrlSetData($list, $data) Until $line = 1 EndFunc Func _WriteIni($name, $section, $dataname) FileOpen($name, 0);create the ini if it doesnt exist. FileClose($name) Local $max $max = _FileCountLines($name) $max = $max - 1 iniwrite($name, $section, $max, $dataname) EndFunc
List From Ini Funcs
Started by
Bounda
, Aug 18 2006 10:26 PM
2 replies to this topic
#1
Posted 18 August 2006 - 10:26 PM
Iunno, it was kinda a scrap so w/e, use the _WriteIni function to create an ini in the correct format for the update function, which updates the list with the lines in the ini. remember to always include file.au3. I created this for a project that i was working on that i abandoned.
#2
Posted 19 August 2006 - 04:42 AM
So this would be used especially for a Gui script?GuiCtrlSetData($list, $data)
Looks like you did not get the handle from FileOpen to FileClose the file.FileOpen($name, 0);create the ini if it doesnt exist.
FileClose($name)
Too be honest after looking at the logic of them, were these INIRead/INIWrite wrappers needed at all?
Edit:
Ok, see wrappers made for indexing $max, but that would only need a indexer line and the INI* line?
Edited by MHz, 19 August 2006 - 04:45 AM.
#3
Posted 19 August 2006 - 05:46 PM
iunno i made it for some project i was makin and didnt know any other way of makin it work right so i made these =P, i know their just useless scraps but w/e, i had to list files in a list inside of a gui, so i could open and close them and edit and such.
0 user(s) are reading this topic
0 members, 0 guests, 0 anonymous users






