Jump to content

Recommended Posts

Posted

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
Posted

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...