📄 modefz.frm
字号:
VERSION 5.00
Begin VB.Form modefz
ClientHeight = 1575
ClientLeft = 60
ClientTop = 345
ClientWidth = 4995
Icon = "modefz.frx":0000
LinkTopic = "Form1"
ScaleHeight = 1575
ScaleWidth = 4995
StartUpPosition = 1 '所有者中心
Begin VB.Frame Frame1
Height = 1080
Left = 0
TabIndex = 2
Top = -15
Width = 4860
Begin VB.TextBox Text2
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 690
TabIndex = 3
Top = 210
Width = 3720
End
Begin VB.Label Label2
Caption = "名称"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 105
TabIndex = 4
Top = 255
Width = 855
End
End
Begin VB.CommandButton Command2
Caption = "退出"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 2580
TabIndex = 1
Top = 1155
Width = 1215
End
Begin VB.CommandButton Command1
Caption = "保存"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 1020
TabIndex = 0
Top = 1155
Width = 1215
End
End
Attribute VB_Name = "modefz"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub modefz_DragDrop(Source As Control, X As Single, Y As Single)
End Sub
Private Sub Command1_Click()
Me.Hide
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
Private Sub Form_Activate()
Text2.SetFocus
End Sub
Private Sub Text2_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
KeyAscii = 0
Command1.SetFocus
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -