以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  采用注册机制进行判断 如何告知对方系统当前试用次数呢?比如可以试用30次 当前已经试用了多少次?  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=132797)

--  作者:李孝春
--  发布时间:2019/3/29 21:12:00
--  采用注册机制进行判断 如何告知对方系统当前试用次数呢?比如可以试用30次 当前已经试用了多少次?

采用注册机制进行判断  如何告知对方系统当前试用次数呢?比如可以试用30次  当前已经试用了多少次?


Dim n As Integer = GetConfigValue("Count",1)
Dim
 Code As String = GetConfigValue("Register" & ComputerId,"")
Dim
 Ok As Boolean 
If
 Code > "" AndAlso DecryptText(Code,"abc","abc") = ComputerId Then \'如果注册码正确
    OK = 
True
Else
    If
 n > 30 Then
        Forms(
"注册").Open()
        Code = GetConfigValue(
"Register" & ComputerId,"")
        If
 Code > "" AndAlso DecryptText(Code,"abc","abc") = ComputerId Then \'如果注册码正确
            OK = 
True
        End
 If
    End
 If
    If
 n > 60 AndAlso Ok = False Then
        Messagebox.Show(
"您正在使用的产品已经超出试用次数!")
        Syscmd.Project.
Exit()
    End
 If
End
 If
n = n + 
1
SaveConfigValue(
"Count",n)


--  作者:有点蓝
--  发布时间:2019/3/29 22:00:00
--  
n不就是次数吗?

Messagebox.Show("您已试用" & n & "次!")