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

📄 mdtvd.frm

📁 vb环境制作的网络电视播放其
💻 FRM
字号:
VERSION 5.00
Object = "{05589FA0-C356-11CE-BF01-00AA0055595A}#2.0#0"; "amovie.ocx"
Begin VB.Form Form5 
   BorderStyle     =   1  'Fixed Single
   Caption         =   "Form5"
   ClientHeight    =   4140
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   5325
   Icon            =   "MdTvd.frx":0000
   LinkTopic       =   "Form5"
   MaxButton       =   0   'False
   ScaleHeight     =   4140
   ScaleWidth      =   5325
   StartUpPosition =   2  '屏幕中心
   Begin AMovieCtl.ActiveMovie Amv 
      Height          =   420
      Left            =   0
      TabIndex        =   0
      Top             =   0
      Width           =   3990
      _ExtentX        =   7038
      _ExtentY        =   741
      EnableContextMenu=   0   'False
      ShowDisplay     =   0   'False
      AutoStart       =   -1  'True
      AutoRewind      =   0   'False
   End
End
Attribute VB_Name = "Form5"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Amv_OpenComplete()
  On Error Resume Next
  Me.Width = Amv.Width + 90
  Me.Height = Amv.Height + 330
  Me.Left = (Screen.Width - Me.Width) \ 2
  Me.Top = (Screen.Height - Me.Height) \ 2
End Sub

Private Sub Form_Load()
  Me.BackColor = QBColor(0)
  Me.Width = 0
  Me.Height = 0
  Amv.Width = 0
  Amv.Height = 0
  SetFormTop Form5, True
End Sub

Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
  On Error Resume Next
  Amv.stop
End Sub

⌨️ 快捷键说明

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