home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / tool / various / ctdemo / ct_order.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-02-26  |  3.3 KB  |  86 lines

  1. VERSION 2.00
  2. Begin Form w_order 
  3.    BackColor       =   &H00C0C0C0&
  4.    BorderStyle     =   3  'Fixed Double
  5.    Caption         =   "Order Information"
  6.    ClientHeight    =   4155
  7.    ClientLeft      =   390
  8.    ClientTop       =   1875
  9.    ClientWidth     =   8085
  10.    Height          =   4680
  11.    Left            =   330
  12.    LinkTopic       =   "Form1"
  13.    MaxButton       =   0   'False
  14.    MinButton       =   0   'False
  15.    ScaleHeight     =   4155
  16.    ScaleWidth      =   8085
  17.    Top             =   1410
  18.    Width           =   8205
  19.    Begin CommandButton Command1 
  20.       Caption         =   "E&xit"
  21.       Height          =   375
  22.       Left            =   6780
  23.       TabIndex        =   4
  24.       Top             =   3600
  25.       Width           =   915
  26.    End
  27.    Begin Label Label4 
  28.       BackColor       =   &H00C0C0C0&
  29.       Caption         =   "     The suggested list price is $89.00 plus shipping ( $5.00 regular mail U.S. and Canada, $10.00 foreign, $25.00 over night North American courier). The full version (including documentation) will be sent to you. The address to send your cheques can be found in the ""About"" box."
  30.       ForeColor       =   &H00000000&
  31.       Height          =   825
  32.       Left            =   300
  33.       TabIndex        =   3
  34.       Top             =   2580
  35.       Width           =   7455
  36.    End
  37.    Begin Label Label3 
  38.       BackColor       =   &H00C0C0C0&
  39.       Caption         =   "     The Component Toolbox set consists of a variety of different VBX controls. However, the controls used in this demo program are demo versions and will not work in a run-time environment. As well, certain controls have been altered so that their full capabilities are limited. Still, the controls are functional enough that you shouls be able to examine them and get a good idea of what they are capable of."
  40.       ForeColor       =   &H00000000&
  41.       Height          =   1125
  42.       Left            =   300
  43.       TabIndex        =   2
  44.       Top             =   1320
  45.       Width           =   7575
  46.    End
  47.    Begin Label Label2 
  48.       BackColor       =   &H00C0C0C0&
  49.       Caption         =   "Order Information and Demo Notes"
  50.       FontBold        =   -1  'True
  51.       FontItalic      =   0   'False
  52.       FontName        =   "MS Sans Serif"
  53.       FontSize        =   13.5
  54.       FontStrikethru  =   0   'False
  55.       FontUnderline   =   -1  'True
  56.       ForeColor       =   &H00800000&
  57.       Height          =   405
  58.       Left            =   240
  59.       TabIndex        =   1
  60.       Top             =   630
  61.       Width           =   5535
  62.    End
  63.    Begin Label Label1 
  64.       BackColor       =   &H00C0C0C0&
  65.       Caption         =   "Component Toolbox 2.0 (Standard Edition)"
  66.       FontBold        =   -1  'True
  67.       FontItalic      =   0   'False
  68.       FontName        =   "MS Sans Serif"
  69.       FontSize        =   13.5
  70.       FontStrikethru  =   0   'False
  71.       FontUnderline   =   -1  'True
  72.       ForeColor       =   &H00800000&
  73.       Height          =   405
  74.       Left            =   270
  75.       TabIndex        =   0
  76.       Top             =   180
  77.       Width           =   6255
  78.    End
  79. Sub Command1_Click ()
  80.    Unload w_order
  81. End Sub
  82. Sub Form_Load ()
  83.    ' Center the window on the screen
  84.    Move (Screen.Width - Width) / 2, (Screen.Height - Height) / 2
  85. End Sub
  86.