This repository was archived by the owner on May 7, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathForm1.vb
66 lines (63 loc) · 2.61 KB
/
Form1.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
Imports KeyAuth_VB.KeyAuth
Public Class Form1
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
KeyAuthApp.init()
Label2.Visible = False
End Sub
Private Shared name As String = "" ' Application name, found in dashboard
Private Shared ownerid As String = "" ' Ownerid, found in account settings of dashboard
Private Shared secret As String = "" ' Application name, found in dashboard. It's the blurred text beneath application name
Private Shared version As String = "1.0"
Public Shared KeyAuthApp As api = New api(name, ownerid, secret, version)
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
If KeyAuthApp.login(TextBox1.Text, TextBox2.Text) Then
Button1.Visible = False
Button2.Visible = False
Button3.Visible = False
Button4.Visible = False
Label1.Visible = False
Label2.Visible = False
Label3.Visible = False
Label4.Visible = False
TextBox1.Visible = False
TextBox2.Visible = False
TextBox3.Visible = False
Label2.Visible = True
End If
End Sub
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
If KeyAuthApp.register(TextBox1.Text, TextBox2.Text, TextBox3.Text) Then
Button1.Visible = False
Button2.Visible = False
Button3.Visible = False
Button4.Visible = False
Label1.Visible = False
Label2.Visible = False
Label3.Visible = False
Label4.Visible = False
TextBox1.Visible = False
TextBox2.Visible = False
TextBox3.Visible = False
Label2.Visible = True
End If
End Sub
Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click
KeyAuthApp.upgrade(TextBox1.Text, TextBox3.Text)
End Sub
Private Sub Button4_Click(sender As Object, e As EventArgs) Handles Button4.Click
If KeyAuthApp.license(TextBox3.Text) Then
Button1.Visible = False
Button2.Visible = False
Button3.Visible = False
Button4.Visible = False
Label1.Visible = False
Label2.Visible = False
Label3.Visible = False
Label4.Visible = False
TextBox1.Visible = False
TextBox2.Visible = False
TextBox3.Visible = False
Label2.Visible = True
End If
End Sub
End Class