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

📄 frmbuild.frm

📁 电子皮带秤计量管理系统.完成电子皮带秤的自动计量工作,和销售管理系统配合使用更佳.
💻 FRM
字号:
   VERSION 5.00
   Object = "{86CF1D34-0C5F-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCT2.OCX"
   Begin VB.Form frmBuild
      BackColor       =   &H80000009&
      BorderStyle     =   0  'None
      Caption         =   "Form1"
      ClientHeight    =   3195
      ClientLeft      =   0
      ClientTop       =   0
      ClientWidth     =   4680
      LinkTopic       =   "Form1"
      ScaleHeight     =   3195
      ScaleWidth      =   4680
      ShowInTaskbar   =   0   'False
      StartUpPosition =   1  '所有者中心
      Begin VB.CommandButton Command1
         Caption         =   "确定"
         Height          =   405
         Left            =   3240
         TabIndex        =   2
         Top             =   2640
         Width           =   735
      End
      Begin MSComCtl2.Animation Animation1
         Height          =   525
         Left            =   1800
         TabIndex        =   0
         Top             =   1350
         Width           =   345
         _ExtentX        =   609
         _ExtentY        =   926
         _Version        =   393216
         BackColor       =   -2147483639
         FullWidth       =   23
         FullHeight      =   35
      End
      Begin VB.Label Label1
         BackColor       =   &H0080C0FF&
         Caption         =   " 正在建设中...."
         BeginProperty Font
            Name            =   "幼圆"
            Size            =   10.5
            Charset         =   134
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   375
         Left            =   0
         TabIndex        =   1
         Top             =   0
         Width           =   4725
      End
   End
   Attribute VB_Name = "frmBuild"
   Attribute VB_GlobalNameSpace = False
   Attribute VB_Creatable = False
   Attribute VB_PredeclaredId = True
   Attribute VB_Exposed = False
'CODE Manger By BcodeXRose
Option Explicit

'##################################################################
'## 过程名称:Command1_Click
'## 参数: 无
'##################################################################
Private Sub Command1_Click()
    Unload Me
End Sub
    
'##################################################################
'## 过程名称:Form_Load
'## 参数: 无
'##################################################################
Private Sub Form_Load()
    Animation1.Open App.Path & "\image\build.avi"
    Animation1.AutoPlay = True
    Animation1.Play
End Sub
    
    
'##################################################################
'## 过程名称:Form_Unload
'## 参数:Cancel 为Integer型
'##################################################################
Private Sub Form_Unload(Cancel As Integer)
    Animation1.AutoPlay = False
    Animation1.Stop
End Sub
    

⌨️ 快捷键说明

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