📄 frm_zc.frm
字号:
VERSION 5.00
Begin VB.Form frm_zc
BackColor = &H0080C0FF&
BorderStyle = 3 'Fixed Dialog
Caption = "单位注册"
ClientHeight = 3945
ClientLeft = 45
ClientTop = 330
ClientWidth = 6060
Icon = "frm_zc.frx":0000
LinkTopic = "Form1"
LockControls = -1 'True
MaxButton = 0 'False
MDIChild = -1 'True
MinButton = 0 'False
ScaleHeight = 3945
ScaleWidth = 6060
ShowInTaskbar = 0 'False
Begin VB.PictureBox Picture1
Appearance = 0 'Flat
BackColor = &H80000005&
ForeColor = &H80000008&
Height = 3300
Index = 3
Left = 1845
ScaleHeight = 3270
ScaleWidth = 4200
TabIndex = 3
Top = 0
Width = 4230
Begin VB.TextBox Text1
Appearance = 0 'Flat
Height = 270
Left = 675
TabIndex = 0
Top = 2550
Width = 3255
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = " 请在下面的输入框内输入该软件的使用单位,只有经过注册的用户才是合法的。"
Height = 1200
Index = 1
Left = 330
TabIndex = 6
Top = 780
Width = 3660
WordWrap = -1 'True
End
Begin VB.Label Label2
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "单位注册"
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 285
Left = 1440
TabIndex = 5
Top = 315
Width = 1215
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "当前单位:"
Height = 180
Index = 0
Left = 675
TabIndex = 4
Top = 2280
Width = 900
End
End
Begin VB.CommandButton Command2
BackColor = &H00C0E0FF&
Cancel = -1 'True
Height = 375
Left = 4785
MaskColor = &H00FFFFFF&
Picture = "frm_zc.frx":000C
Style = 1 'Graphical
TabIndex = 2
Top = 3450
UseMaskColor = -1 'True
Width = 1200
End
Begin VB.CommandButton Command1
BackColor = &H00C0E0FF&
Default = -1 'True
Height = 375
Left = 3495
MaskColor = &H00FFFFFF&
Picture = "frm_zc.frx":0FC6
Style = 1 'Graphical
TabIndex = 1
Top = 3450
UseMaskColor = -1 'True
Width = 1200
End
Begin VB.Line Line1
BorderColor = &H00FFFFFF&
Index = 1
X1 = 1860
X2 = 6060
Y1 = 3315
Y2 = 3315
End
Begin VB.Line Line1
BorderColor = &H00808080&
Index = 0
X1 = 1860
X2 = 6060
Y1 = 3300
Y2 = 3300
End
Begin VB.Image Image1
Appearance = 0 'Flat
BorderStyle = 1 'Fixed Single
Height = 3945
Index = 2
Left = 0
Picture = "frm_zc.frx":2724
Stretch = -1 'True
Top = 0
Width = 1860
End
End
Attribute VB_Name = "frm_zc"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
frm_main.Caption = "【美容院管理系统】— " + Trim(Text1)
SaveSetting App.title, "Options", "user", Trim(Text1)
Unload Me
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
Private Sub Form_Load()
frm_main.dwzc.Enabled = False
Text1 = GetSetting(App.title, "Options", "user", "沈阳市第七人民医院高级医学美容院")
frmcen Me
End Sub
Private Sub Form_Unload(Cancel As Integer)
frm_main.dwzc.Enabled = True
End Sub
Private Sub Text1_GotFocus()
'Text1.IMEMode = 1
'Text1.SelStart = 0
'Text1.SelLength = Len(Text1)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -