📄 define.frm
字号:
VERSION 5.00
Begin VB.Form Define
Caption = "兄弟工业(深圳)有限公司条码识别系统-定义条码窗口"
ClientHeight = 3120
ClientLeft = 60
ClientTop = 450
ClientWidth = 8250
Icon = "Define.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
ScaleHeight = 3120
ScaleWidth = 8250
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton Command2
Caption = "取 消"
BeginProperty Font
Name = "宋体"
Size = 15.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 735
Left = 5400
TabIndex = 2
Top = 2160
Width = 2295
End
Begin VB.CommandButton Command1
Caption = "确 定"
BeginProperty Font
Name = "宋体"
Size = 15.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 735
Left = 360
TabIndex = 1
Top = 2160
Width = 2295
End
Begin VB.TextBox Text1
BeginProperty Font
Name = "宋体"
Size = 15.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 855
Left = 360
TabIndex = 0
Top = 1080
Width = 7335
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "请录入你要定义的条码:"
BeginProperty Font
Name = "宋体"
Size = 21.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 435
Left = 360
TabIndex = 3
Top = 360
Width = 4950
End
End
Attribute VB_Name = "Define"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
If Text1.Text = "" Then
MsgBox "请定义你的条码!", vbInformation, "提示"
Text1.SetFocus
Else
str = Trim(Text1.Text)
Unload Me
Compare.Show
End If
End Sub
Private Sub Command2_Click()
Text1.Text = ""
Text1.SetFocus
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -