ea9000 0 Posted August 7, 2010 hi All, how can I list all the available key names of a section in an ini file? [section] key_1= Key_2= key_3= . . . key_n= Share this post Link to post Share on other sites
seandisanti 6 Posted August 7, 2010 hi All, how can I list all the available key names of a section in an ini file? [section] key_1= Key_2= key_3= . . . key_n= check out inireadsectionnames and inireadsection. between those two and a loop you should be straight. examples are in help file Share this post Link to post Share on other sites
jayterry 0 Posted August 7, 2010 IniReadSection - Reads all key/value pairs from a section in a standard format .ini file. Share this post Link to post Share on other sites
ea9000 0 Posted August 7, 2010 yes found it thnx for the replay. cheers $var = IniReadSection( "config.ini", "Environment_Variables") If @error Then MsgBox(4096, "", "Error occurred, probably no INI file.") Else For $i = 1 To $var[0][0] MsgBox(4096, "", "Key: " & $var[$i][0] & @CRLF & "Value: " & $var[$i][1]) Next EndIf Share this post Link to post Share on other sites