frmts.frm
来自「VB6.0应用例题」· FRM 代码 · 共 84 行
FRM
84 行
VERSION 5.00
Begin VB.Form Frmts
Caption = "提示"
ClientHeight = 2760
ClientLeft = 60
ClientTop = 345
ClientWidth = 4620
LinkTopic = "Form3"
ScaleHeight = 2760
ScaleWidth = 4620
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Cmdml
Caption = "退出"
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Index = 1
Left = 2400
TabIndex = 2
Top = 1680
Width = 1215
End
Begin VB.CommandButton Cmdml
Caption = "补做"
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Index = 0
Left = 720
TabIndex = 1
Top = 1680
Width = 1215
End
Begin VB.TextBox Txtsm
Alignment = 2 'Center
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 495
Left = 360
TabIndex = 0
Top = 720
Width = 3855
End
End
Attribute VB_Name = "Frmts"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Cmdml_Click(Index As Integer)
If Index = 1 Then '补做
Frmtj.Show
End If
Unload Me
End Sub
Private Sub Form_Load()
CenterOnSetupForm Me
Frmts.Caption = "注 意"
Txtsm.Text = "选择题还有" & Str(SyTm) & "题未做!"
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?