📄 frmpic.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form frmPic
BorderStyle = 0 'None
Caption = "Form1"
ClientHeight = 9510
ClientLeft = 0
ClientTop = 0
ClientWidth = 10440
LinkTopic = "Form1"
Picture = "frmPic.frx":0000
ScaleHeight = 9510
ScaleWidth = 10440
ShowInTaskbar = 0 'False
Begin VB.Timer Timer1
Interval = 40
Left = 4800
Top = 0
End
Begin MSComctlLib.ProgressBar ProgressBar1
Height = 360
Left = 0
TabIndex = 0
Top = 9120
Width = 12060
_ExtentX = 21273
_ExtentY = 635
_Version = 393216
BorderStyle = 1
Appearance = 0
Scrolling = 1
End
End
Attribute VB_Name = "frmPic"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Dim tim As Integer
Private Sub Timer1_Timer()
tim = tim + 2
ProgressBar1.Value = tim
If tim = 100 Then
MDIForm1.Show
Unload Me
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -