📄 frmreg.frm
字号:
VERSION 5.00
Begin VB.Form frmReg
BackColor = &H00F8EADF&
BorderStyle = 0 'None
Caption = "Form1"
ClientHeight = 1575
ClientLeft = 0
ClientTop = 0
ClientWidth = 4095
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1575
ScaleWidth = 4095
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.TextBox Text2
Appearance = 0 'Flat
Height = 285
Left = 840
TabIndex = 2
Top = 720
Width = 3015
End
Begin VB.TextBox Text1
Appearance = 0 'Flat
Height = 285
Left = 840
TabIndex = 1
Top = 360
Width = 3015
End
Begin VB.Shape Shape2
BorderColor = &H00C27C42&
Height = 1575
Left = 0
Top = 0
Width = 4095
End
Begin VB.Label lblOK
Alignment = 2 'Center
BackColor = &H00EF9F5D&
Caption = "OK"
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 255
Left = 1560
TabIndex = 5
Top = 1200
Width = 1215
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
Caption = "Email"
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C27C42&
Height = 255
Left = 120
TabIndex = 4
Top = 720
Width = 1455
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "Name"
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C27C42&
Height = 255
Left = 120
TabIndex = 3
Top = 360
Width = 1455
End
Begin VB.Label Label1
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "Register"
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C27C42&
Height = 255
Left = 1440
TabIndex = 0
Top = 50
Width = 1455
End
End
Attribute VB_Name = "frmReg"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub lblOK_Click()
If Text1.Text = "" Or Text2.Text = "" Then
SaveSetting App.EXEName, "Settings", "Profile", ""
Unload Me
Else
SaveSetting App.EXEName, "Settings", "Profile", "True"
SaveSetting App.EXEName, "Settings", "Name", Text1.Text
SaveSetting App.EXEName, "Settings", "Email", Text2.Text
Unload Me
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -