home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / vb_code1 / fieldpak / fpdemo2a.frm < prev    next >
Text File  |  1993-11-09  |  3KB  |  88 lines

  1. VERSION 2.00
  2. Begin Form AboutFrm 
  3.    BorderStyle     =   3  'Fixed Double
  4.    Caption         =   "FieldPack demo program 2 -- About-Box"
  5.    ClientHeight    =   4245
  6.    ClientLeft      =   2415
  7.    ClientTop       =   1875
  8.    ClientWidth     =   5055
  9.    ControlBox      =   0   'False
  10.    Height          =   4650
  11.    Left            =   2355
  12.    LinkTopic       =   "Form1"
  13.    ScaleHeight     =   4245
  14.    ScaleWidth      =   5055
  15.    Top             =   1530
  16.    Width           =   5175
  17.    Begin CommandButton cmdOK 
  18.       Caption         =   "OK"
  19.       Height          =   375
  20.       Left            =   1890
  21.       TabIndex        =   5
  22.       Top             =   3690
  23.       Width           =   1095
  24.    End
  25.    Begin Label Label6 
  26.       Caption         =   "This program is a simplified address book; it maintains a text mini-database (max size 64KB) in the file ""FPDEMO2.DAT"" in the root of the C: drive.  Operation should be reasonably obvious.  (Note, however: the ""Find"" button searches for the first record whose current sort-field equals OR BEGINS WITH the search-text.)"
  27.       Height          =   1425
  28.       Left            =   480
  29.       TabIndex        =   6
  30.       Top             =   2160
  31.       Width           =   4155
  32.    End
  33.    Begin Label Label5 
  34.       Caption         =   "tel +1-510-623-7854 fax +1-510-651-6039"
  35.       Height          =   465
  36.       Left            =   1290
  37.       TabIndex        =   4
  38.       Top             =   1500
  39.       Width           =   2025
  40.    End
  41.    Begin Label Label4 
  42.       Caption         =   "Fremont, CA  94538  USA"
  43.       Height          =   225
  44.       Left            =   1290
  45.       TabIndex        =   3
  46.       Top             =   1260
  47.       Width           =   2745
  48.    End
  49.    Begin Label Label3 
  50.       Caption         =   "42808 Christy Street, Ste. 222"
  51.       Height          =   225
  52.       Left            =   1290
  53.       TabIndex        =   2
  54.       Top             =   1020
  55.       Width           =   2715
  56.    End
  57.    Begin Label Label2 
  58.       Caption         =   "Software Source"
  59.       FontBold        =   -1  'True
  60.       FontItalic      =   -1  'True
  61.       FontName        =   "Times New Roman"
  62.       FontSize        =   18
  63.       FontStrikethru  =   0   'False
  64.       FontUnderline   =   0   'False
  65.       Height          =   405
  66.       Left            =   1320
  67.       TabIndex        =   1
  68.       Top             =   540
  69.       Width           =   2655
  70.    End
  71.    Begin Label Label1 
  72.       Caption         =   "FieldPack Demo Program 2, by:"
  73.       Height          =   225
  74.       Left            =   180
  75.       TabIndex        =   0
  76.       Top             =   150
  77.       Width           =   2745
  78.    End
  79. End
  80. Option Explicit
  81.  
  82. Sub cmdOK_Click ()
  83.  
  84.     Unload AboutFrm
  85.  
  86. End Sub
  87.  
  88.