操作INI文件函数.bas
上传用户:pcw2004
上传日期:2022-02-02
资源大小:743k
文件大小:1k
源码类别:

DirextX编程

开发平台:

Visual Basic

  1. Attribute VB_Name = "操作INI文件函数"
  2. Option Explicit
  3. ' Download by http://www.codefans.net
  4. Public Declare Function GetPrivateProfileString Lib "kernel32" Alias _
  5.                                 "GetPrivateProfileStringA" (ByVal lpApplicationName As String, _
  6.                                 ByVal lpKeyName As Any, _
  7.                                 ByVal lpDefault As String, _
  8.                                 ByVal lpReturnedString As String, _
  9.                                 ByVal nSize As Long, ByVal lpFileName As String) As Long
  10. Public Function ReadINIFile(AppName As String, KeyName As String, FileName As String) As String
  11.     
  12.     Dim RetStr As String
  13.     RetStr = String(255, Chr(0))
  14.     ReadINIFile = Left(RetStr, GetPrivateProfileString(AppName, ByVal KeyName, "", RetStr, Len(RetStr), FileName))
  15.     
  16. End Function