www.pudn.com > SuperDLL2.zip > frmMenu.frm


VERSION 5.00 
Begin VB.Form frmMenu  
   BorderStyle     =   1  'Fixed Single 
   Caption         =   "Main Menu" 
   ClientHeight    =   6372 
   ClientLeft      =   36 
   ClientTop       =   420 
   ClientWidth     =   3264 
   Icon            =   "frmMenu.frx":0000 
   LinkTopic       =   "Form2" 
   MaxButton       =   0   'False 
   ScaleHeight     =   6372 
   ScaleWidth      =   3264 
   StartUpPosition =   2  'CenterScreen 
   Begin VB.CommandButton Command8  
      Caption         =   "Custom Color ProgressBar" 
      Height          =   612 
      Left            =   360 
      TabIndex        =   7 
      Top             =   5400 
      Width           =   2532 
   End 
   Begin VB.CommandButton Command7  
      Caption         =   "Registry" 
      Height          =   612 
      Left            =   360 
      TabIndex        =   6 
      Top             =   4680 
      Width           =   2532 
   End 
   Begin VB.CommandButton Command6  
      Caption         =   "DirectShow MCI Media Player" 
      Height          =   612 
      Left            =   360 
      TabIndex        =   5 
      Top             =   3960 
      Width           =   2532 
   End 
   Begin VB.CommandButton Command5  
      Caption         =   "Unfinish game (GDI)" 
      Height          =   612 
      Left            =   360 
      TabIndex        =   4 
      Top             =   3240 
      Width           =   2532 
   End 
   Begin VB.CommandButton Command4  
      Caption         =   "Transparent" 
      Height          =   612 
      Left            =   360 
      TabIndex        =   3 
      Top             =   2520 
      Width           =   2532 
   End 
   Begin VB.CommandButton Command3  
      Caption         =   "Conversions, Swap, Autres" 
      Height          =   612 
      Left            =   360 
      TabIndex        =   2 
      Top             =   1800 
      Width           =   2532 
   End 
   Begin VB.CommandButton Command2  
      Caption         =   "Path && Files - VB - Windows" 
      Height          =   612 
      Left            =   360 
      TabIndex        =   1 
      Top             =   1080 
      Width           =   2532 
   End 
   Begin VB.CommandButton Command1  
      Caption         =   "Windows XP Style Controls" 
      Height          =   612 
      Left            =   360 
      TabIndex        =   0 
      Top             =   360 
      Width           =   2532 
   End 
End 
Attribute VB_Name = "frmMenu" 
Attribute VB_GlobalNameSpace = False 
Attribute VB_Creatable = False 
Attribute VB_PredeclaredId = True 
Attribute VB_Exposed = False 
Option Explicit 
 
Private Sub Command1_Click() 
  If isXP Then 
    frmControlsXP.Show 
    Me.Hide 
  Else 
    MsgBox "Only Windows XP Support XP Style Controls", vbInformation, App.Title 
  End If 
End Sub 
 
Private Sub Command2_Click() 
  frmPathFilesVBW.Show 
  Me.Hide 
End Sub 
 
Private Sub Command3_Click() 
  frmCnvsSwap.Show 
  Me.Hide 
End Sub 
 
Private Sub Command4_Click() 
  frmTransparent.Show 
  Me.Hide 
End Sub 
 
Private Sub Command5_Click() 
  frmGDI.Show 
  Me.Hide 
End Sub 
 
Private Sub Command6_Click() 
  frmMCI.Show 
  Me.Hide 
End Sub 
 
Private Sub Command7_Click() 
  frmRegistry.Show 
  Me.Hide 
End Sub 
 
Private Sub Command8_Click() 
  frmPBarColor.Show 
  Me.Hide 
End Sub 
 
Private Sub Form_Initialize() 
  InitXP 
End Sub 
 
Private Sub Form_Load() 
  Me.Icon = LoadResPicture(101, vbResIcon) 
End Sub 
 
Private Sub Form_Unload(Cancel As Integer) 
  End 
End Sub