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

📄 frmnowshowing.frm

📁 VB中
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmNowShowing 
   BorderStyle     =   1  'Fixed Single
   Caption         =   "NOW SHOWING"
   ClientHeight    =   6735
   ClientLeft      =   45
   ClientTop       =   435
   ClientWidth     =   8910
   ControlBox      =   0   'False
   Icon            =   "frmNowShowing.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   6735
   ScaleWidth      =   8910
   StartUpPosition =   2  'CenterScreen
   Begin VB.Timer Timer1 
      Interval        =   3000
      Left            =   240
      Top             =   6240
   End
   Begin VB.Image imgNowShow 
      Height          =   6735
      Left            =   0
      Stretch         =   -1  'True
      Top             =   0
      Width           =   8895
   End
End
Attribute VB_Name = "frmNowShowing"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
'Place the imgNowShow code here to display the image of what is the
'current DVD Title
Me.imgNowShow.Picture = LoadPicture(App.Path & "\graphics\" & TitleID(0) & ".jpg")
End Sub

Private Sub Timer1_Timer()
'    frmXP.Show
    Unload Me
End Sub

⌨️ 快捷键说明

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