📄 formcase.frm
字号:
VERSION 5.00
Begin VB.Form formcase
BorderStyle = 3 'Fixed Dialog
Caption = "设置评语输入方式"
ClientHeight = 1890
ClientLeft = 45
ClientTop = 330
ClientWidth = 4395
Icon = "formcase.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1890
ScaleWidth = 4395
ShowInTaskbar = 0 'False
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton cmdexit
Caption = "关闭"
Height = 390
Left = 2655
TabIndex = 4
Top = 1215
Width = 1230
End
Begin VB.CommandButton cmdok
Caption = "确定"
Height = 390
Left = 360
TabIndex = 3
Top = 1245
Width = 1230
End
Begin VB.OptionButton OptDblclick
Caption = "鼠标双击"
Height = 435
Left = 2355
TabIndex = 2
Top = 690
Width = 1140
End
Begin VB.OptionButton Optclick
Caption = "鼠标单击"
Height = 390
Left = 735
TabIndex = 1
Top = 735
Value = -1 'True
Width = 1110
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "评语录入时何种方式进行输入 ?"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 210
Left = 645
TabIndex = 0
Top = 285
Width = 2970
End
End
Attribute VB_Name = "formcase"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub cmdexit_Click()
Unload Me
End Sub
Private Sub cmdok_Click()
If Optclick.Value = True Then IsClick = True
If OptDblclick.Value = True Then IsClick = False
Unload Me
End Sub
Private Sub Form_Load()
If IsClick = True Then
Optclick.Value = True
Else
OptDblclick.Value = True
End If
StayOnTop Me
CenterForm Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -