Public Function IniFileRead(ByVal vstrINIPath As String, vstrINIFileName As String, _
ByVal vstrINIType As String, ByRef vstrVar As String, ByVal vstrName As String) As Boolean
On Error GoTo errHandler
Dim lResult As Long
Dim sTemp As String
Dim lDB As Long
Dim msIniFileFullPath As String
IniFileRead = False
msIniFileFullPath = vstrINIPath & "\" & vstrINIFileName
'get connection string
sTemp = Space$(300)
lResult = GetPrivateProfileString(vstrINIType, _
vstrName, _
"", _
sTemp, _
300, _
msIniFileFullPath)
If lResult < 1 Or lResult > 300 Then
GoTo errHandler
Else
sTemp = Left(sTemp, lResult)
End If
vstrVar = sTemp
IniFileRead = True
Exit Function
errHandler:
IniFileRead = False
End Function
本文转自kenty博客园博客,原文链接http://www.cnblogs.com/kentyshang/archive/2006/07/01/440532.html如需转载请自行联系原作者
kenty