- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
frmSplash.frm
资源名称:FireWall.rar [点击查看]
上传用户:yinyu8822
上传日期:2021-04-28
资源大小:79k
文件大小:1k
源码类别:
防火墙与安全工具
开发平台:
Visual Basic
- VERSION 5.00
- Begin VB.Form frmSplash
- BorderStyle = 0 'None
- Caption = "Form1"
- ClientHeight = 2190
- ClientLeft = 0
- ClientTop = 0
- ClientWidth = 3480
- LinkTopic = "Form1"
- ScaleHeight = 2190
- ScaleWidth = 3480
- ShowInTaskbar = 0 'False
- StartUpPosition = 3 '窗口缺省
- Begin VB.Timer tmrEnd
- Enabled = 0 'False
- Interval = 50
- Left = 900
- Top = 1140
- End
- Begin VB.Image imgSplash
- Height = 675
- Left = 0
- Top = 0
- Width = 975
- End
- End
- Attribute VB_Name = "frmSplash"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- 'Download by http://www.codefans.net
- Private Sub Form_Load()
- imgSplash = LoadPicture(App.Path & "gfxsplash.gif")
- Me.Width = imgSplash.Width
- Me.Height = imgSplash.Height
- Me.Left = Screen.Width / 2 - Me.Width / 2
- Me.Top = Screen.Height / 2 - Me.Height / 2
- Me.Show
- frmMain.Show
- Me.Hide
- End Sub
- Private Sub tmrEnd_Timer()
- End
- End Sub