如何使我的应用程序在某些使用后运行 就像我点击按钮10次,然后按钮被禁用 就像试用程序一样 到目前为止,我只能在运行时这样做, 如何在不使用注册表的情况下计算点击次数? 我的程序非常简单:将字符串转换为Base64
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
TextBox1.Text = Convert.ToBase64String(New System.Text.ASCIIEncoding().GetBytes(TextBox1.Text))
End Sub
答案 0 :(得分:0)
您可能需要Settings
。 Easily Save and Retrieve Application and User Settings in VB.NET or C# Apps。首先在设置中创建值为ClickCouter
的{{1}} integer
(请参阅文章)。
0
有必要在Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
My.Settings.ClickCouter +=1
My.Settings.Save()
If My.Settings.ClickCouter>=10 then Button1.Enabled = False
End Sub
中检查ClickCouter
。该值存储在用户配置文件中的文件中,因此解决方案不是太“黑客证明”(但是很简单:-D)。