Ini_ExistEntry
Description
Checks if specified entry exists in specified section in specified file
Â
Syntax
Ini_ExistEntry(sFile, sSection, sEntry, bMustExist)Â as Boolean
Â
Parameters
sFile (String)
Filename
sSection (String)
Section name
sEntry (String)
Entry name
bMustExist (Boolean)
Entry must exist
Â
Return value
Result will be stored in gbValue
Â
Example
VBScript
If bStatus Then bStatus = Ini_ExistEntry("C:\CapaInstaller.ini", "SectionName", "EntryName", True)
Â