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

📄 v6j07-09蝴蝶飞.frm

📁 这是一个表现蝴蝶飞飞的小程序的设计
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Form1 
   BackColor       =   &H00FFFFFF&
   Caption         =   "蝴蝶飞"
   ClientHeight    =   2460
   ClientLeft      =   1095
   ClientTop       =   1515
   ClientWidth     =   5145
   LinkTopic       =   "Form1"
   PaletteMode     =   1  'UseZOrder
   ScaleHeight     =   2460
   ScaleWidth      =   5145
   Begin VB.Timer Timer1 
      Interval        =   100
      Left            =   120
      Top             =   1440
   End
   Begin VB.CommandButton cmdEnd 
      Caption         =   "退出"
      Height          =   495
      Left            =   3840
      TabIndex        =   0
      Top             =   1800
      Width           =   1095
   End
   Begin VB.Image ImaOpenWings 
      Appearance      =   0  'Flat
      Height          =   1155
      Left            =   75
      Picture         =   "v6j07-09蝴蝶飞.frx":0000
      Top             =   75
      Visible         =   0   'False
      Width           =   1155
   End
   Begin VB.Image ImaCloseWings 
      Appearance      =   0  'Flat
      Height          =   1155
      Left            =   1320
      Picture         =   "v6j07-09蝴蝶飞.frx":0C8A
      Top             =   120
      Visible         =   0   'False
      Width           =   1155
   End
   Begin VB.Image ImaMain 
      Appearance      =   0  'Flat
      Height          =   1155
      Left            =   840
      Picture         =   "v6j07-09蝴蝶飞.frx":1914
      Top             =   1320
      Width           =   1155
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

Private Sub cmdEnd_Click()
  End
End Sub



Private Sub Timer1_Timer()
    Static ImaBmp As Integer
 
    ImaMain.Move ImaMain.Left + 20, ImaMain.Top - 5
       If ImaMain.Top <= 0 Then
    ImaMain.Left = 0
    ImaMain.Top = 1320
    End If
    If ImaBmp Then
        ImaMain.Picture = ImaOpenWings.Picture
    Else
        ImaMain.Picture = ImaCloseWings.Picture
    End If
    ImaBmp = Not ImaBmp
End Sub


⌨️ 快捷键说明

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