home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 February / PCWK0296.iso / po7_win / object10 / quoabout.frm < prev    next >
Text File  |  1994-11-30  |  3KB  |  89 lines

  1. VERSION 2.00
  2. Begin Form frmAbout 
  3.    BackColor       =   &H00FFFFFF&
  4.    BorderStyle     =   3  'Fixed Double
  5.    Caption         =   "About Orders"
  6.    ClientHeight    =   2115
  7.    ClientLeft      =   2265
  8.    ClientTop       =   2610
  9.    ClientWidth     =   4470
  10.    ClipControls    =   0   'False
  11.    ControlBox      =   0   'False
  12.    Height          =   2520
  13.    Left            =   2205
  14.    LinkTopic       =   "Form3"
  15.    MaxButton       =   0   'False
  16.    MinButton       =   0   'False
  17.    ScaleHeight     =   2115
  18.    ScaleWidth      =   4470
  19.    Top             =   2265
  20.    Width           =   4590
  21.    Begin CommandButton cmdOK 
  22.       Caption         =   "OK"
  23.       Default         =   -1  'True
  24.       Height          =   495
  25.       Left            =   1560
  26.       TabIndex        =   0
  27.       Top             =   960
  28.       Width           =   1215
  29.    End
  30.    Begin Label Label3 
  31.       Alignment       =   2  'Center
  32.       BackColor       =   &H00FFFFFF&
  33.       Caption         =   "Copyright (c) Oracle Corporation, 1994.  All rights reserved."
  34.       FontBold        =   0   'False
  35.       FontItalic      =   0   'False
  36.       FontName        =   "MS Sans Serif"
  37.       FontSize        =   8.25
  38.       FontStrikethru  =   0   'False
  39.       FontUnderline   =   0   'False
  40.       Height          =   435
  41.       Left            =   840
  42.       TabIndex        =   3
  43.       Top             =   1560
  44.       Width           =   2895
  45.    End
  46.    Begin Label Label2 
  47.       Alignment       =   2  'Center
  48.       BackColor       =   &H00FFFFFF&
  49.       Caption         =   "Oracle Corporation"
  50.       Height          =   255
  51.       Left            =   960
  52.       TabIndex        =   2
  53.       Top             =   585
  54.       Width           =   2535
  55.    End
  56.    Begin Label Label1 
  57.       Alignment       =   2  'Center
  58.       BackColor       =   &H00FFFFFF&
  59.       Caption         =   "Quote Sample Version 1.2"
  60.       FontBold        =   -1  'True
  61.       FontItalic      =   0   'False
  62.       FontName        =   "MS Sans Serif"
  63.       FontSize        =   9.75
  64.       FontStrikethru  =   0   'False
  65.       FontUnderline   =   0   'False
  66.       Height          =   255
  67.       Left            =   720
  68.       TabIndex        =   1
  69.       Top             =   225
  70.       Width           =   2955
  71.    End
  72. End
  73. Option Explicit
  74.  
  75. Sub cmdOK_Click ()
  76.  
  77.  'Unloads the About Box
  78.  Unload frmAbout
  79.  
  80. End Sub
  81.  
  82. Sub Form_Load ()
  83.  
  84.     'Centers the Form on the Screen
  85.     CenterForm frmAbout
  86.     
  87. End Sub
  88.  
  89.