Jump to content

INIReadSection


Recommended Posts

How do I check if a section in an INI contains anything and if it doesn't then it will go to a certain function otherwise continue?

Try this:

If Not FileExists("c:\test.ini") Then
    MsgBox(16, "Error", "Unable open file")
    Exit
EndIf

Dim $aReadSection = IniReadSection("c:\test.ini", "SectionName")
If @error Then
    MyFunc()
    Exit
EndIf
    
Func MyFunc()
    ;your code
EndFunc
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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