Как работать с INI файлами? - VB

Узнай цену своей работы

Формулировка задачи:

Подскажите как в VB записывать и считывать информацию с INI файла?

Решение задачи: «Как работать с INI файлами?»

textual
Листинг программы
  1. Function ReadIni( myFilePath, mySection, myKey )
  2.      ' This function returns a value read from an INI file
  3.     '
  4.     ' Arguments:
  5.     ' myFilePath  [string]  the (path and) file name of the INI file
  6.     ' mySection   [string]  the section in the INI file to be searched
  7.     ' myKey       [string]  the key whose value is to be returned
  8.     '
  9.     ' Returns:
  10.     ' the [string] value for the specified key in the specified section
  11.     '
  12.     ' CAVEAT:     Will return a space if key exists but value is blank
  13.     '
  14.     ' Written by Keith Lacelle
  15.     ' Modified by Denis St-Pierre and Rob van der Woude
  16.  
  17.      Const ForReading   = 1
  18.      Const ForWriting   = 2
  19.      Const ForAppending = 8
  20.  
  21.      Dim intEqualPos
  22.      Dim objFSO, objIniFile
  23.      Dim strFilePath, strKey, strLeftString, strLine, strSection
  24.  
  25.      Set objFSO = CreateObject( "Scripting.FileSystemObject" )
  26.  
  27.      ReadIni     = ""
  28.      strFilePath = Trim( myFilePath )
  29.      strSection  = Trim( mySection )
  30.      strKey      = Trim( myKey )
  31.  
  32.      If objFSO.FileExists( strFilePath ) Then
  33.          Set objIniFile = objFSO.OpenTextFile( strFilePath, ForReading, False )
  34.          Do While objIniFile.AtEndOfStream = False
  35.              strLine = Trim( objIniFile.ReadLine )
  36.  
  37.              ' Check if section is found in the current line
  38.             If LCase( strLine ) = "[" & LCase( strSection ) & "]" Then
  39.                  strLine = Trim( objIniFile.ReadLine )
  40.  
  41.                  ' Parse lines until the next section is reached
  42.                 Do While Left( strLine, 1 ) <> "["
  43.                      ' Find position of equal sign in the line
  44.                     intEqualPos = InStr( 1, strLine, "=", 1 )
  45.                      If intEqualPos > 0 Then
  46.                          strLeftString = Trim( Left( strLine, intEqualPos - 1 ) )
  47.                          ' Check if item is found in the current line
  48.                         If LCase( strLeftString ) = LCase( strKey ) Then
  49.                              ReadIni = Trim( Mid( strLine, intEqualPos + 1 ) )
  50.                              ' In case the item exists but value is blank
  51.                             If ReadIni = "" Then
  52.                                  ReadIni = " "
  53.                              End If
  54.                              ' Abort loop when item is found
  55.                             Exit Do
  56.                          End If
  57.                      End If
  58.  
  59.                      ' Abort if the end of the INI file is reached
  60.                     If objIniFile.AtEndOfStream Then Exit Do
  61.  
  62.                      ' Continue with next line
  63.                     strLine = Trim( objIniFile.ReadLine )
  64.                  Loop
  65.              Exit Do
  66.              End If
  67.          Loop
  68.          objIniFile.Close
  69.      Else
  70.          msgbox strFilePath & " doesn't exists. Exiting..."
  71.          exit function
  72.      End If
  73.  End Function

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

6   голосов , оценка 3.5 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут