www.pudn.com > pdng22src.zip > picVideoWindow.frm


VERSION 5.00 
Begin VB.Form picVideoWindow  
   AutoRedraw      =   -1  'True 
   BackColor       =   &H00000000& 
   BorderStyle     =   0  'None 
   Caption         =   "PowerDivx NextGen VideoViewer" 
   ClientHeight    =   4290 
   ClientLeft      =   1695 
   ClientTop       =   4530 
   ClientWidth     =   7815 
   ControlBox      =   0   'False 
   Icon            =   "picVideoWindow.frx":0000 
   LinkTopic       =   "Form1" 
   MaxButton       =   0   'False 
   MinButton       =   0   'False 
   ScaleHeight     =   4290 
   ScaleWidth      =   7815 
   ShowInTaskbar   =   0   'False 
   Begin VB.Label Label4  
      AutoSize        =   -1  'True 
      BackStyle       =   0  'Transparent 
      Caption         =   "PowerDivx" 
      BeginProperty Font  
         Name            =   "Nasalization" 
         Size            =   20.25 
         Charset         =   0 
         Weight          =   700 
         Underline       =   0   'False 
         Italic          =   -1  'True 
         Strikethrough   =   0   'False 
      EndProperty 
      ForeColor       =   &H0080C0FF& 
      Height          =   360 
      Left            =   2370 
      TabIndex        =   1 
      Top             =   1695 
      Width           =   2625 
   End 
   Begin VB.Label Label5  
      AutoSize        =   -1  'True 
      BackStyle       =   0  'Transparent 
      Caption         =   "Next Generation" 
      BeginProperty Font  
         Name            =   "Nasalization" 
         Size            =   14.25 
         Charset         =   0 
         Weight          =   700 
         Underline       =   0   'False 
         Italic          =   -1  'True 
         Strikethrough   =   0   'False 
      EndProperty 
      ForeColor       =   &H0080C0FF& 
      Height          =   255 
      Left            =   2760 
      TabIndex        =   0 
      Top             =   2055 
      Width           =   2985 
   End 
End 
Attribute VB_Name = "picVideoWindow" 
Attribute VB_GlobalNameSpace = False 
Attribute VB_Creatable = False 
Attribute VB_PredeclaredId = True 
Attribute VB_Exposed = False 
 
 
 
Private Sub Form_Load() 
Me.Top = Screen.Height / 2 - Me.Height 
Me.Left = Screen.Width / 2 - Me.Width / 2 
End Sub 
 
Private Sub Form_Resize() 
'Call frmMain.resizepicwin 
Label4.Top = Me.Height / 2 - 300 
Label5.Top = Me.Height / 2 '- 100 
 
Label4.Left = Me.Width / 2 - 1500 
Label5.Left = Me.Width / 2 - 900 
frmSub.Top = picVideoWindow.Top + 50 
frmSub.Width = picVideoWindow.Width - 100 
frmSub.Left = picVideoWindow.Left + 50 
frmSub.Height = picVideoWindow.Height - 100 
frmSub.Show 
            frmSub.ResetSub 
 
 
End Sub 
 
 
Public Sub ResizeAll() 
Label4.Top = Me.Height / 2 - 300 
Label5.Top = Me.Height / 2 '- 100 
 
Label4.Left = Me.Width / 2 - 1500 
Label5.Left = Me.Width / 2 - 900 
frmSub.Top = picVideoWindow.Top + 50 
frmSub.Width = picVideoWindow.Width - 100 
frmSub.Left = picVideoWindow.Left + 50 
frmSub.Height = picVideoWindow.Height - 100 
frmSub.Show 
            frmSub.ResetSub 
 
End Sub