home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 5 Developer's Kit / vb5 dev kit.iso / dev / ct_ocx / ct_order.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1996-01-01  |  3.7 KB  |  117 lines

  1. VERSION 4.00
  2. Begin VB.Form w_order 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "Ordering Information"
  5.    ClientHeight    =   4260
  6.    ClientLeft      =   1815
  7.    ClientTop       =   2835
  8.    ClientWidth     =   7200
  9.    Height          =   4665
  10.    Icon            =   "ct_order.frx":0000
  11.    Left            =   1755
  12.    LinkTopic       =   "Form1"
  13.    MaxButton       =   0   'False
  14.    MinButton       =   0   'False
  15.    ScaleHeight     =   0
  16.    ScaleWidth      =   0
  17.    ShowInTaskbar   =   0   'False
  18.    Top             =   2490
  19.    Width           =   7320
  20.    Begin VB.CommandButton Command1 
  21.       Caption         =   "E&xit"
  22.       BeginProperty Font 
  23.          name            =   "MS Sans Serif"
  24.          charset         =   0
  25.          weight          =   700
  26.          size            =   8.25
  27.          underline       =   0   'False
  28.          italic          =   0   'False
  29.          strikethrough   =   0   'False
  30.       EndProperty
  31.       Height          =   375
  32.       Left            =   6060
  33.       TabIndex        =   4
  34.       Top             =   3780
  35.       Width           =   975
  36.    End
  37.    Begin VB.Label Label4 
  38.       Caption         =   $"ct_order.frx":030A
  39.       BeginProperty Font 
  40.          name            =   "MS Sans Serif"
  41.          charset         =   0
  42.          weight          =   700
  43.          size            =   8.25
  44.          underline       =   0   'False
  45.          italic          =   0   'False
  46.          strikethrough   =   0   'False
  47.       EndProperty
  48.       Height          =   1095
  49.       Left            =   240
  50.       TabIndex        =   3
  51.       Top             =   2760
  52.       Width           =   6675
  53.    End
  54.    Begin VB.Label Label3 
  55.       Caption         =   $"ct_order.frx":0472
  56.       BeginProperty Font 
  57.          name            =   "MS Sans Serif"
  58.          charset         =   0
  59.          weight          =   700
  60.          size            =   8.25
  61.          underline       =   0   'False
  62.          italic          =   0   'False
  63.          strikethrough   =   0   'False
  64.       EndProperty
  65.       Height          =   1275
  66.       Left            =   240
  67.       TabIndex        =   2
  68.       Top             =   1320
  69.       Width           =   6675
  70.    End
  71.    Begin VB.Label Label2 
  72.       Caption         =   "Order Information and Demo Notes"
  73.       BeginProperty Font 
  74.          name            =   "Arial"
  75.          charset         =   0
  76.          weight          =   700
  77.          size            =   15.75
  78.          underline       =   -1  'True
  79.          italic          =   0   'False
  80.          strikethrough   =   0   'False
  81.       EndProperty
  82.       ForeColor       =   &H00800000&
  83.       Height          =   495
  84.       Left            =   240
  85.       TabIndex        =   1
  86.       Top             =   660
  87.       Width           =   6075
  88.    End
  89.    Begin VB.Label Label1 
  90.       Caption         =   "Component Toolbox OCX ver 1.0"
  91.       BeginProperty Font 
  92.          name            =   "Arial"
  93.          charset         =   0
  94.          weight          =   700
  95.          size            =   15.75
  96.          underline       =   -1  'True
  97.          italic          =   0   'False
  98.          strikethrough   =   0   'False
  99.       EndProperty
  100.       ForeColor       =   &H00800000&
  101.       Height          =   435
  102.       Left            =   240
  103.       TabIndex        =   0
  104.       Top             =   180
  105.       Width           =   5715
  106.    End
  107. Attribute VB_Name = "w_order"
  108. Attribute VB_Creatable = False
  109. Attribute VB_Exposed = False
  110. Private Sub Command1_Click()
  111.    Unload w_order
  112. End Sub
  113. Private Sub Form_Load()
  114.    ' Center the window on the screen
  115.    Move (Screen.Width - Width) / 2, (Screen.Height - Height) / 2
  116. End Sub
  117.