dim strFilename as string
dim strRunning as string
dim strTemp as string
strFilename="c:\setup.ini" 'or whatever the ini file is
FileOpen(1, strFilename, OpenMode.Input)
while not eof(1)
input(1, strTemp)
if strTemp="Startup=True" then 'or whatever you want to change
strRunning=strRunning + "Startup=False" + vbnewline
Else
strRunning=strRunning + strTemp + vbnewline
End if
wend
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.