Search
Home
General functions
Database functions
ACCDE protection
Forms
Network drives
INI-Files
GetKeyFromIndex
GetPrivateProfileString
GetSectionFromIndex
INI_Filename
INI_GetSection
INI_GetSections
INI_GetValue
INI_KeyExists
INI_Remove
INI_RemoveAll
INI_SectionExists
INI_SetSection
INI_SetValue
WritePrivateProfileString
JSON functions
Clipboard
Classes
Tips and Tricks
PowerPoint
Downloads
Access/VBA Library
INI_RemoveAll
Removes all sections from the INI-file.
Syntax
INI_RemoveAll(
)
Code
Public Sub INI_RemoveAll()
Dim varSectie
Dim colSecties As Collection
Set colSecties = INI_GetSections()
For Each varSectie In colSecties
Call INI_Remove(varSectie)
Next varSectie
End Sub
Show code
See also
INI_GetSections
INI_Remove
« prev
top
next »