VB实际读写INI文件

在窗体上画两个按钮(Command1、Command2),一个输入框(Text1),代码如下:
Option Explicit
Private Declare Function GetPrivateProfileString Lib “kernel32” Alias “GetPrivateProfileStringA” (ByVal lpApplicationName As String, ByVal lpKeyName As Any, ByVal lpDefault As String, ByVal lpReturnedString As String, ByVal nSize As Long, ByVal lpFileName As String) As Long
Private Declare Function WritePrivateProfileString Lib “kernel32” Alias “WritePrivateProfileStringA” (ByVal lpApplicationName As String, ByVal lpKeyName As Any, ByVal lpString As Any, ByVal lpFileName As String) As Long

'注:写入与读取的[主项名]和[子项名]一定要相同!
Private Function STRYMINI(txtym1 As String, txtym2 As String, txtym3 As String, ONOFF As Boolean) As String
Dim ULR As String
ULR = App.Path & “\1.ini” 'INI文件路径
Dim txtBuff As String
If ONOFF = True Then '读取
'定义读取字符串的长度,“Space " 取 实 际 字 符 去 掉 字 符 后 面 多 余 的 空 格 。 t x t B u f f = S p a c e "取实际字符去掉字符后面多余的空格。 txtBuff = Space "txtBuff=Space(1000)
'读取INI文件(主项名,子项名,空,读取子项名值,读取字符串长度,路径)
Call GetPrivateProfileString(txtym1, txtym2, “”, txtBuff, Len(txtBuff), ULR)
'显示实际字符串。取"txtBuff"左边的字符串(取得的字符串,字符串总长度(去掉字符串右边多余的空格字符(取得的字符串))得出字符串实际长度多一个,因此减1)
txtBuff = Left ( t x t B u f f , L e n ( R T r i m (txtBuff, Len(RTrim (txtBuff,Len(RTrim(txtBuff)) - 1)
'把读取到的字符串传递到"STRYMINI"函数
STRYMINI = txtBuff
Else
'把字符串写入INI文件(主项名,子项名,值,保存INI文件的路径)
Call WritePrivateProfileString(txtym1, txtym2, txtym3, ULR)
End If
End Function

'写入数据:
Private Sub Command1_Click()
Call STRYMINI(“主项名”, “子项名”, Text1.Text, False)
End Sub

'读取数据
Private Sub Command2_Click()
Dim Txt As String
Txt = STRYMINI(“主项名”, “子项名”, “”, True)
If Txt <> “” Then Text1.Text = Txt
End Sub

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

键盘上的舞指

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值