📄 reg.frm
字号:
VERSION 5.00
Begin VB.Form FrmReg
BorderStyle = 1 'Fixed Single
Caption = "MapSearch注册机"
ClientHeight = 1995
ClientLeft = 45
ClientTop = 330
ClientWidth = 3135
Icon = "Reg.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1995
ScaleWidth = 3135
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton Command3
Caption = "获取"
Height = 375
Left = 420
TabIndex = 3
Top = 1560
Width = 855
End
Begin VB.CommandButton Command2
Caption = "离开"
Height = 375
Left = 2160
TabIndex = 5
Top = 1560
Width = 855
End
Begin VB.CommandButton Command1
Caption = "复制"
Height = 375
Left = 1320
TabIndex = 4
Top = 1560
Width = 855
End
Begin VB.TextBox TextCode
Height = 270
Left = 840
Locked = -1 'True
TabIndex = 6
TabStop = 0 'False
Top = 1170
Width = 2175
End
Begin VB.TextBox TextSerial
Height = 270
Left = 840
TabIndex = 2
Top = 810
Width = 2175
End
Begin VB.TextBox TextMail
Height = 270
Left = 840
TabIndex = 1
Top = 450
Width = 2175
End
Begin VB.TextBox TextName
Height = 270
Left = 840
TabIndex = 0
Top = 90
Width = 2175
End
Begin VB.Label Label4
AutoSize = -1 'True
Caption = "注册码:"
Height = 180
Left = 120
TabIndex = 10
Top = 1200
Width = 720
End
Begin VB.Label Label3
AutoSize = -1 'True
Caption = "序列号:"
Height = 180
Left = 120
TabIndex = 9
Top = 840
Width = 720
End
Begin VB.Label Label2
AutoSize = -1 'True
Caption = "E-mail:"
Height = 180
Left = 120
TabIndex = 8
Top = 480
Width = 720
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "用户名:"
Height = 180
Left = 120
TabIndex = 7
Top = 120
Width = 720
End
End
Attribute VB_Name = "FrmReg"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Declare Function GetMD5Str Lib "Reg.dll" (ByVal stra As String) As String
Private Sub Command1_Click()
Clipboard.Clear
Clipboard.SetText TextCode.Text
End Sub
Private Sub Command2_Click()
End
End Sub
Private Sub Command3_Click()
TextCode.Text = GetMD5Str(TextName.Text & TextMail.Text & TextSerial)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -