?? form1.frm
字號:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form Form1
BorderStyle = 0 'None
ClientHeight = 4500
ClientLeft = 0
ClientTop = 0
ClientWidth = 6000
LinkTopic = "Form1"
ScaleHeight = 4500
ScaleWidth = 6000
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.PictureBox Picture1
Appearance = 0 'Flat
AutoSize = -1 'True
BackColor = &H80000005&
BorderStyle = 0 'None
ForeColor = &H80000008&
Height = 4500
Left = 0
Picture = "Form1.frx":0000
ScaleHeight = 4500
ScaleWidth = 6000
TabIndex = 0
Top = 0
Width = 6000
Begin VB.Timer Timer2
Interval = 500
Left = 4515
Top = 315
End
Begin MSComctlLib.ProgressBar ProgressBar1
Height = 225
Left = 2100
TabIndex = 2
Top = 3990
Width = 3480
_ExtentX = 6138
_ExtentY = 397
_Version = 393216
Appearance = 0
Scrolling = 1
End
Begin VB.Timer Timer1
Enabled = 0 'False
Interval = 50
Left = 5250
Top = 315
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "Now Loading Programme"
BeginProperty Font
Name = "Courier New"
Size = 10.5
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 330
Left = 2625
TabIndex = 1
Top = 3675
Width = 2640
End
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'****************************************************************************
'人人為我,我為人人
'作者:龍騎士(725989)
'發布日期:2007/03/07
'描 述:集裝箱裝箱計算源代碼
'網 站:http://www.Mndsoft.com/ (VB6源碼博客)
'網 站:http://www.VbDnet.com/ (VB.NET源碼博客,主要基于.NET2005)
'e-mail :Mndsoft@163.com
'e-mail :Mndsoft@126.com
'OICQ :88382850
' 如果您有新的好的代碼別忘記給枕善居哦!
'****************************************************************************
Private loadform As Boolean
Private Sub Form_Load()
Timer1.Enabled = True
loadform = False
ProgressBar1.Value = 0
End Sub
Private Sub Timer1_Timer()
If Not loadform Then
Load Form3
End If
ProgressBar1.Value = ProgressBar1.Value + 1
If ProgressBar1.Value = ProgressBar1.Max Then
Form3.Show
Unload Me
End If
End Sub
Private Sub Timer2_Timer()
If Label1.Visible = False Then
Label1.Visible = True
Else
Label1.Visible = False
End If
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -