当前位置: 主页 > 日志 > VB >

Ini文件的操作

Private Declare Writeini Lib "kernel32" Alias "WritePrivateProfileStringA" (ByVal lpApplicationName As String, ByVallpKeyName As Any, ByVal lpString As String, ByVal lpFileName As StringAs Long
Private Declare Getini Lib "kernel32" Alias "GetPrivateProfileStringA" (ByVal lpApplicationName As String, ByVallpKeyName As String, ByVal lpDefault As String, ByVal lpReturnedString As String, ByVal nSize As Long, ByVal lpFileNameAs StringAs Long

Private Sub Command1_Click() '写ini文件
    Dim path As String
    If Right(App.path, 1<> "" Then
       path = App.path + ""
    End If
    Writeini "introduce", "name", "xp", path & "ceshi.ini"
    Writeini "introduce", "age", "21", path & "ceshi.ini"
    Writeini "introduce", "sex", "man", path & "ceshi.ini"
   
End Sub

Private Sub Command2_Click() '读ini文件
    Dim path As String
    If Right(App.path, 1<> "" Then
       path = App.path + ""
    End If
    Dim buf As String
    buf = String(256, Chr(0))
    Getini "introduce", "name", "", buf, 256, path & "ceshi.ini"
    MsgBox buf
    Getini "introduce", "age", "", buf, 256, path & "ceshi.ini"
    MsgBox buf
    Getini "introduce", "sex", "", buf, 256, path & "ceshi.ini"
    MsgBox buf
End Sub

[日志信息]

该日志于 2009-02-25 15:53 由 redice 发表在 redice's Blog ,你除了可以发表评论外,还可以转载 “Ini文件的操作” 日志到你的网站或博客,但是请保留源地址及作者信息,谢谢!!    (尊重他人劳动,你我共同努力)
   
验证(必填):   点击我更换验证码

redice's Blog  is powered by DedeCms |  Theme by Monkeii.Lee |  网站地图 |  本服务器由西安鲲之鹏网络信息技术有限公司友情提供

返回顶部