home *** CD-ROM | disk | FTP | other *** search
/ Computer Discount - Smash Disk / SmashDisk.bin / Cdc / SRC / MICROSOFT.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1998-06-11  |  4.0 KB  |  129 lines

  1. VERSION 5.00
  2. Begin VB.Form MICROSOFT 
  3.    Appearance      =   0  'Flat
  4.    BackColor       =   &H80000005&
  5.    BorderStyle     =   0  'None
  6.    Caption         =   "Form1"
  7.    ClientHeight    =   7200
  8.    ClientLeft      =   0
  9.    ClientTop       =   0
  10.    ClientWidth     =   9600
  11.    LinkTopic       =   "Form1"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   480
  15.    ScaleMode       =   3  'Pixel
  16.    ScaleWidth      =   640
  17.    ShowInTaskbar   =   0   'False
  18.    StartUpPosition =   2  'CenterScreen
  19.    Begin VB.Label Label6 
  20.       Appearance      =   0  'Flat
  21.       BackColor       =   &H80000005&
  22.       BackStyle       =   0  'Transparent
  23.       ForeColor       =   &H80000008&
  24.       Height          =   525
  25.       Left            =   7590
  26.       MouseIcon       =   "MICROSOFT.frx":0000
  27.       MousePointer    =   99  'Custom
  28.       TabIndex        =   5
  29.       Top             =   6510
  30.       Width           =   1395
  31.    End
  32.    Begin VB.Label Label5 
  33.       Appearance      =   0  'Flat
  34.       BackColor       =   &H80000005&
  35.       BackStyle       =   0  'Transparent
  36.       ForeColor       =   &H80000008&
  37.       Height          =   675
  38.       Left            =   2340
  39.       MouseIcon       =   "MICROSOFT.frx":0442
  40.       MousePointer    =   99  'Custom
  41.       TabIndex        =   4
  42.       Top             =   5250
  43.       Width           =   6615
  44.    End
  45.    Begin VB.Label Label4 
  46.       Appearance      =   0  'Flat
  47.       BackColor       =   &H80000005&
  48.       BackStyle       =   0  'Transparent
  49.       ForeColor       =   &H80000008&
  50.       Height          =   525
  51.       Left            =   2370
  52.       MouseIcon       =   "MICROSOFT.frx":0884
  53.       MousePointer    =   99  'Custom
  54.       TabIndex        =   3
  55.       Top             =   4530
  56.       Width           =   2295
  57.    End
  58.    Begin VB.Label Label3 
  59.       Appearance      =   0  'Flat
  60.       BackColor       =   &H80000005&
  61.       BackStyle       =   0  'Transparent
  62.       ForeColor       =   &H80000008&
  63.       Height          =   585
  64.       Left            =   2400
  65.       MouseIcon       =   "MICROSOFT.frx":0CC6
  66.       MousePointer    =   99  'Custom
  67.       TabIndex        =   2
  68.       Top             =   3720
  69.       Width           =   5415
  70.    End
  71.    Begin VB.Label Label2 
  72.       Appearance      =   0  'Flat
  73.       BackColor       =   &H80000005&
  74.       BackStyle       =   0  'Transparent
  75.       ForeColor       =   &H80000008&
  76.       Height          =   585
  77.       Left            =   2400
  78.       MouseIcon       =   "MICROSOFT.frx":1108
  79.       MousePointer    =   99  'Custom
  80.       TabIndex        =   1
  81.       Top             =   2970
  82.       Width           =   6645
  83.    End
  84.    Begin VB.Label Label1 
  85.       Appearance      =   0  'Flat
  86.       BackColor       =   &H80000005&
  87.       BackStyle       =   0  'Transparent
  88.       ForeColor       =   &H80000008&
  89.       Height          =   675
  90.       Left            =   2460
  91.       MouseIcon       =   "MICROSOFT.frx":154A
  92.       MousePointer    =   99  'Custom
  93.       TabIndex        =   0
  94.       Top             =   2070
  95.       Width           =   4035
  96.    End
  97. Attribute VB_Name = "MICROSOFT"
  98. Attribute VB_GlobalNameSpace = False
  99. Attribute VB_Creatable = False
  100. Attribute VB_PredeclaredId = True
  101. Attribute VB_Exposed = False
  102. Private Sub Form_Load()
  103. Me.Picture = LoadPicture(CDDRIVE & ":\cdc\pic\microsoft.jpg")
  104. End Sub
  105. Private Sub Label1_Click()
  106. Dim retval
  107. retval = Shell(CDDRIVE & ":\cdc\microsoft\msaoedx.exe", 1)
  108. End Sub
  109. Private Sub Label2_Click()
  110. Dim retval
  111. retval = Shell(CDDRIVE & ":\cdc\microsoft\msabtfdx.exe", 1)
  112. End Sub
  113. Private Sub Label3_Click()
  114. Dim retval
  115. retval = Shell(CDDRIVE & ":\cdc\microsoft\mscart.exe", 1)
  116. End Sub
  117. Private Sub Label4_Click()
  118. Dim retval
  119. retval = Shell(CDDRIVE & ":\cdc\microsoft\owtrial.exe", 1)
  120. End Sub
  121. Private Sub Label5_Click()
  122. Dim retval
  123. retval = Shell(CDDRIVE & ":\cdc\microsoft\mtm2trial.exe", 1)
  124. End Sub
  125. Private Sub Label6_Click()
  126. INDICE.Show
  127. Unload Me
  128. End Sub
  129.