Read INI

By | 2002-06-01

Opens a INI-file and Get the value of ex: “Screensaver=” without using any system calls!!!

Original Author: Dan Einarsson

Inputs

x = ReadINI(“screensaver”, “c:windowssystem.ini”)
‘or what ever

Returns

the value of the keyname
in this ex it would be perhaps: screensav.exe

API Declarations

NONE that is why i posted it!!!

Code

Function ReadINI(keyname As String, filename As String) As String
Open filename For Input Access Read As 1
Do Until EOF(1)
  Line Input #1, stemp
    ipos = InStr(stemp, keyname & "=")
    If ipos Then
      strinnick = strinnick + stemp
      ifound = True
      Allofit$ = strinnick
      wow$ = Mid(Allofit$, Len(keyname) + 2)
      GetINI = wow$
      Close 1
      Exit Function
    End If
Loop
  Close 1
End Function
'Written by: Dan Einarsson

Author: dwirch

Derek Wirch is a seasoned IT professional with an impressive career dating back to 1986. He brings a wealth of knowledge and hands-on experience that is invaluable to those embarking on their journey in the tech industry.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.