高手帮 我看看这样为什么不能保存和读取上次输入到text中的数据
Private Sub Form_Load()
Text1 = GetSetting("我的程序", "我的数据", "文本暂存1")
Text2 = GetSetting("我的程序", "我的数据", "文本暂存2")
Text3 = GetSetting("我的程序", "我的数据", "文本暂存3")
Text4 = GetSetting("我的程序", "我的数据", "文本暂存4")
Text5 = GetSetting("我的程序", "我的数据", "文本暂存5")
End Sub
Private Sub Form_Unload(Cancel As Integer)
SaveSetting "我的程序", "我的数据", "文本暂存1", Text1
SaveSetting "我的程序", "我的数据", "文本暂存2", Text2
SaveSetting "我的程序", "我的数据", "文本暂存3", Text3
SaveSetting "我的程序", "我的数据", "文本暂存4", Text4
SaveSetting "我的程序", "我的数据", "文本暂存5", Text5
End Sub
以前就这样写的,可现在电脑从新装了系统写在vb程序里面就不起作用了,不知道什么原因
在请各位帮我看看程序有毛病吗
谢谢