软件程序入口加载即可。
【注册表限制软件使用次数】
public void UseTimesLimit()//注册表限制软件使用次数
{
MessageBox.Show("您现在使用的是试用版,该软件可以免费试用30次!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
Int32 tLong;
try
{
//获取软件的已经使用次数HKEY_CURRENT_USER
//tLong = (Int32)Registry.GetValue("HKEY_LOCAL_MACHINE\\SOFTWARE\\tryTimes", "UseTimes", 0);
tLong = (Int32)Registry.GetValue("HKEY_CURRENT_USER\\SOFTWARE\\tryTimes", "UseTimes", 0);
MessageBox.Show("感谢您已使用了" + tLong + "次", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
catch
{
//首次使用软件
//Registry.SetValue("HKEY_LOCAL_MACHINE\\SOFTWARE\\tryTimes", "UseTimes", 0, RegistryValueKind.DWord);
Registry.SetValue("HKEY_CURRENT_USER\\SOFTWARE\\tryTimes", "UseTimes", 0, RegistryValueKind.DWord);
MessageBox.Show("欢迎新用户使用本软件", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
//获取软件已经使用次数
//tLong = (Int32)Registry.GetValue("HKEY_LOCAL_MACHINE\\SOFTWARE\\tryTimes", "UseTimes", 0);
tLong = (Int32)Registry.GetValue("HKEY_CURRENT_USER\\SOFTWARE\\tryTimes", "UseTimes", 0);
if (tLong < 30)
{
int Times = tLong + 1;
//计算软件是第几次使用
//将软件使用次数写入注册表
//Registry.SetValue("HKEY_LOCAL_MACHINE\\SOFTWARE\\tryTimes", "UseTimes", Times);
Registry.SetValue("HKEY_CURRENT_USER\\SOFTWARE\\tryTimes", "UseTimes", Times);
//this.Close();
//关闭本次操作窗口}
else
{
MessageBox.Show("对不起,您的免费试用次数已达上限,请通过正当途径获取注册码,进行注册使用!", "警告", MessageBoxButtons.OK, MessageBoxIcon.Warning);
Application.Exit();
//关闭整个应用程序
}
}
推荐阅读
- C# Winform 服务器和多个客户端通讯
- 数值算法|分段线性插值 C#代码
- C#|C#数据库教程1-使用ADO.NET操作sql server 2012
- C#|C#数据库教程2-ADO.NET常用SQL语句
- C#|C# Udp测试工具开发
- ADO.NET|C# Access数据库使用
- #|c++中的四种类型转换
- 课设|数据库课设之学生成绩管理系统
- C#|C#免注册调用大漠插件