frmFrash.frm
资源名称:dbbase.rar [点击查看]
上传用户:xiao_xia32
上传日期:2022-07-21
资源大小:1174k
文件大小:2k
源码类别:
企业管理
开发平台:
Visual Basic
- VERSION 5.00
- Begin VB.Form frmFrash
- Appearance = 0 'Flat
- BackColor = &H80000005&
- ClientHeight = 4230
- ClientLeft = 60
- ClientTop = 60
- ClientWidth = 5970
- ControlBox = 0 'False
- LinkTopic = "Form1"
- Picture = "frmFrash.frx":0000
- ScaleHeight = 4230
- ScaleWidth = 5970
- StartUpPosition = 2 '屏幕中心
- Begin VB.Timer Timer1
- Interval = 60000
- Left = 0
- Top = 0
- End
- Begin VB.Label lblWarning
- BackStyle = 0 'Transparent
- Caption = "警告:任何单位或个人未经许可不得拷贝及使用。"
- ForeColor = &H00FF0000&
- Height = 195
- Left = 0
- TabIndex = 1
- Top = 0
- Width = 3855
- End
- Begin VB.Label lblVersion
- Alignment = 1 'Right Justify
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "版本"
- Height = 180
- Left = 5175
- TabIndex = 0
- Top = 3000
- Width = 360
- End
- End
- Attribute VB_Name = "frmFrash"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Dim uIndex As Integer
- Option Explicit
- Private Sub Form_Click()
- Unload Me
- End Sub
- Private Sub Form_KeyPress(KeyAscii As Integer)
- Unload Me
- End Sub
- Private Sub Form_Load()
- lblVersion.Caption = "版本 " & App.Major & "." & App.Minor & "." & App.Revision
- End Sub
- Private Sub imgLogon_Click()
- Unload Me
- End Sub
- Private Sub lblCompany_Click()
- Unload Me
- End Sub
- Private Sub lblCopyright_Click()
- Unload Me
- End Sub
- Private Sub lblLicenseTo_Click()
- Unload Me
- End Sub
- Private Sub lblPlatform_Click()
- Unload Me
- End Sub
- Private Sub lblProductName_Click()
- Unload Me
- End Sub
- Private Sub lblVersion_Click()
- Unload Me
- End Sub
- Private Sub lblWarning_Click()
- Unload Me
- End Sub
- Private Sub SSFrame1_Click()
- Unload Me
- End Sub
- Private Sub Timer1_Timer()
- Timer1.Enabled = False
- uIndex = uIndex + 1
- Unload Me
- End Sub