📄 zairu.frm
字号:
VERSION 5.00
Begin VB.Form zairu
Caption = "载入"
ClientHeight = 720
ClientLeft = 60
ClientTop = 345
ClientWidth = 2730
LinkTopic = "Form1"
ScaleHeight = 720
ScaleWidth = 2730
StartUpPosition = 2 '屏幕中心
Begin VB.Timer Timer1
Interval = 500
Left = 1560
Top = 480
End
Begin VB.Label Label1
Caption = "正在载入……"
Height = 255
Left = 720
TabIndex = 0
Top = 120
Width = 1335
End
End
Attribute VB_Name = "zairu"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Unload(Cancel As Integer)
txtsql = "select * from 试卷"
Set mrc = exesql(txtsql)
Set hand.DataGrid2.DataSource = mrc
End Sub
Private Sub Timer1_Timer()
Timer1.Interval = Timer1.Interval + 500
If Timer1.Interval > 2000 Then
hand.Show
Unload Me
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -