mfrm_main1.frm
来自「基于vb的图书管理系统的设计」· FRM 代码 · 共 78 行
FRM
78 行
VERSION 5.00
Begin VB.Form mfrm_Main1
BorderStyle = 3 'Fixed Dialog
Caption = "对话框标题"
ClientHeight = 3195
ClientLeft = 2760
ClientTop = 3750
ClientWidth = 6030
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3195
ScaleWidth = 6030
ShowInTaskbar = 0 'False
Begin VB.OptionButton optMain
Caption = "修改信息"
Height = 735
Index = 2
Left = 4080
TabIndex = 2
Top = 600
Width = 1455
End
Begin VB.OptionButton optMain
Caption = "删除信息"
Height = 735
Index = 1
Left = 2160
TabIndex = 1
Top = 600
Width = 1455
End
Begin VB.OptionButton optMain
Caption = "添加信息"
Height = 735
Index = 0
Left = 120
TabIndex = 0
Top = 600
Width = 1455
End
Begin VB.Timer Timer1
Enabled = 0 'False
Interval = 300
Left = 3840
Top = 2160
End
End
Attribute VB_Name = "mfrm_Main1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub OKButton_Click()
End Sub
Private Sub optMain_Click(Index As Integer)
If optMain.Item(1).Value = True Then
Timer1.Enabled = True
End If
If optMain.Item(2).Value = True Then
Timer1.Enabled = True
End If
'If optMain.Item(3).Value Then
'Timer1.Enabled = True
'End If
End Sub
Private Sub Timer1_Timer()
Unload Me
Timer1.Enabled = False
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?