[bo]以下是引用 [un]fairy4[/un] 在 2008-1-28 17:02 的发言:[/bo]
你認為是vb的就是vb的,當我沒說!
我使用的工具是!
還不知道這個工具還能寫出vb6的代碼!樓主讓我長見識了,謝謝!
我在下直接引用Imports 再写点代码就可以读取ini文件了!
看看这段从网上抄的代码!!
-------------------------------------------------------------------------------------------------------
'函数名: sdGetIniInfo
'功能:读取INI文件设置信息
'参数说明:iniFile-->INI文件
iniSection--INI文件中设置的部分名称
Function sdGetIniInfo(ByVal iniFile As String, ByVal iniSection As String) As String
If Not File.Exists(iniFile) Then
Return "文件 " & iniFile & " 未找到,请确认路径和文件名是否正确!"
Exit Function
End If
Dim iniRead As New StreamReader(iniFile)
Dim iniStr As String = iniRead.ReadToEnd
Dim i As Integer
Dim cLine As Integer
Dim noSec As Boolean = False
Dim getValue As String = ""
Dim cLst
cLst = iniStr.Split(Chr(13))
cLine = UBound(cLst)
For i = 0 To cLine
If cLst(i).indexof("=") > 0 Then
If cLst(i).split("=")(0).trim() = iniSection Then
noSec = True
getValue = cLst(i).split("=")(1).trim()
Exit For
End If
End If
Next
If noSec = True Then
Return getValue
Else
Return "没有找到 " & iniSection & " 的设置信息!"
End If
End Function
说明:在引用的面页中要先引用 Imports
EG:
set.ini文件内容:
[Info]
name=zhuang
age=20
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim name As String
name = sdGetIniInfo(Application.StartupPath & "\set.ini", "name")
MsgBox(name)
End Sub
--------------------------------------------------------------------------------------------------------------------
所以我认为你用的引用api的行为有点像是vb6.0的操作方法,呵呵,在这里向你表示道歉。谢谢你对我的帮助!!!