📄 frmpic.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "mscomctl.ocx"
Begin VB.Form frmPic
Caption = "Form1"
ClientHeight = 3840
ClientLeft = 60
ClientTop = 345
ClientWidth = 5100
LinkTopic = "Form1"
Picture = "frmPic.frx":0000
ScaleHeight = 3840
ScaleWidth = 5100
StartUpPosition = 3 '窗口缺省
Begin MSComctlLib.ProgressBar ProgressBar1
Height = 495
Left = 0
TabIndex = 1
Top = 3360
Width = 5175
_ExtentX = 9128
_ExtentY = 873
_Version = 393216
Appearance = 1
End
Begin VB.Timer Timer1
Interval = 40
Left = 4800
Top = 240
End
Begin VB.Label Label2
Caption = "小型超市管理系统"
BeginProperty Font
Name = "宋体"
Size = 21.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 735
Left = 360
TabIndex = 0
Top = 240
Width = 3615
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 Form_Load()
End Sub
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 + -