⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frm_flash.frm

📁 一个公司的客户财产管理系统vb源码
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frm_Flash 
   BackColor       =   &H00C0FFFF&
   BorderStyle     =   0  'None
   Caption         =   "Form1"
   ClientHeight    =   3480
   ClientLeft      =   4515
   ClientTop       =   3720
   ClientWidth     =   6225
   Icon            =   "frm_Flash.frx":0000
   LinkTopic       =   "Form1"
   LockControls    =   -1  'True
   MaxButton       =   0   'False
   MinButton       =   0   'False
   Moveable        =   0   'False
   Picture         =   "frm_Flash.frx":0CCA
   ScaleHeight     =   3480
   ScaleWidth      =   6225
   ShowInTaskbar   =   0   'False
   Begin VB.Timer Timer1 
      Interval        =   2000
      Left            =   5640
      Top             =   600
   End
   Begin VB.Label Label5 
      BackStyle       =   0  'Transparent
      BorderStyle     =   1  'Fixed Single
      ForeColor       =   &H00404040&
      Height          =   3375
      Left            =   45
      TabIndex        =   2
      Top             =   53
      Width           =   6135
   End
   Begin VB.Image Image2 
      Height          =   510
      Left            =   0
      Picture         =   "frm_Flash.frx":16B40
      Stretch         =   -1  'True
      Top             =   3000
      Width           =   6495
   End
   Begin VB.Label Label3 
      AutoSize        =   -1  'True
      BackStyle       =   0  'Transparent
      Caption         =   "FOR WINDOWS95/98/Me/NT/2000/XP/2003"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   10.5
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   -1  'True
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00C000C0&
      Height          =   210
      Left            =   1275
      TabIndex        =   1
      Top             =   2280
      Width           =   4200
   End
   Begin VB.Label Label1 
      AutoSize        =   -1  'True
      BackStyle       =   0  'Transparent
      Caption         =   "客户财产管理"
      BeginProperty Font 
         Name            =   "幼圆"
         Size            =   15
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00C00000&
      Height          =   300
      Left            =   2160
      TabIndex        =   0
      Top             =   1080
      Width           =   1890
   End
   Begin VB.Image Image1 
      Height          =   495
      Left            =   0
      Picture         =   "frm_Flash.frx":1B9AC
      Stretch         =   -1  'True
      Top             =   0
      Width           =   6375
   End
End
Attribute VB_Name = "frm_Flash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
On Error GoTo err
 Call ComputerName
 Me.Left = 4515
 Me.Top = 2500
Exit Sub
err:
   MsgBox err.Description, vbCritical
End Sub

Private Sub Label5_Click()
On Error GoTo err
  Unload Me
  Load Frm_Login
  Frm_Login.Show vbModal
Exit Sub
err:
   MsgBox err.Description, vbCritical
End Sub

Private Sub Timer1_Timer()
On Error GoTo err
    Unload Me
    Load Frm_Login
    Frm_Login.Show vbModal
Exit Sub
err:
   MsgBox err.Description, vbCritical
End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -