Feb 28, 2003 #1 guru533 MIS Aug 22, 2002 25 US Does anybody know how to use the "WritePrivateProfileString" Function to delete a section within an ini file?
Does anybody know how to use the "WritePrivateProfileString" Function to delete a section within an ini file?
Feb 28, 2003 #2 RichardF Programmer Oct 9, 2000 239 GB Hi, Public Sub DeleteSection(Section As String) Dim cNull As String WritePrivateProfileString Section, cNull, cNull, FileName End Sub Upvote 0 Downvote
Hi, Public Sub DeleteSection(Section As String) Dim cNull As String WritePrivateProfileString Section, cNull, cNull, FileName End Sub