home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / vb_code1 / fp_demo / gifpabt.frm < prev    next >
Text File  |  1994-01-18  |  4KB  |  134 lines

  1. VERSION 2.00
  2. Begin Form frmAbout 
  3.    BorderStyle     =   3  'Fixed Double
  4.    Caption         =   "Gregg Irwin's FieldPack demo program #1 -- About-Box"
  5.    ClientHeight    =   5145
  6.    ClientLeft      =   1380
  7.    ClientTop       =   585
  8.    ClientWidth     =   7275
  9.    ControlBox      =   0   'False
  10.    Height          =   5550
  11.    Left            =   1320
  12.    LinkTopic       =   "Form1"
  13.    ScaleHeight     =   5145
  14.    ScaleWidth      =   7275
  15.    Top             =   240
  16.    Width           =   7395
  17.    Begin CommandButton cmdOK 
  18.       Caption         =   "OK"
  19.       Height          =   375
  20.       Left            =   2970
  21.       TabIndex        =   5
  22.       Top             =   4680
  23.       Width           =   1095
  24.    End
  25.    Begin Label Label11 
  26.       Caption         =   "NOTE: This demo uses only some of the ""Delimited Substring Tools"" (DS Tools) portion of FieldPack.  FieldPack also includes ""Superstring Tools"" (SS Tools) and ""Utility String Tools"" (US Tools).  For more information, contact Software Source."
  27.       Height          =   675
  28.       Left            =   180
  29.       TabIndex        =   11
  30.       Top             =   3930
  31.       Width           =   7005
  32.    End
  33.    Begin Label Label10 
  34.       Caption         =   "This program demonstrates some of the things you can do very easily with FieldPack building upon simple utility functions. "
  35.       Height          =   465
  36.       Left            =   180
  37.       TabIndex        =   10
  38.       Top             =   3390
  39.       Width           =   6975
  40.    End
  41.    Begin Label Label9 
  42.       Caption         =   "tel +1-407-678-6244"
  43.       Height          =   225
  44.       Left            =   2220
  45.       TabIndex        =   6
  46.       Top             =   2730
  47.       Width           =   2325
  48.    End
  49.    Begin Label Label8 
  50.       Caption         =   "Compuserve ID: 72450,676"
  51.       Height          =   225
  52.       Left            =   2220
  53.       TabIndex        =   9
  54.       Top             =   2970
  55.       Width           =   2565
  56.    End
  57.    Begin Label Label7 
  58.       Caption         =   "Created By:"
  59.       Height          =   225
  60.       Left            =   240
  61.       TabIndex        =   8
  62.       Top             =   2010
  63.       Width           =   1245
  64.    End
  65.    Begin Label Label6 
  66.       Caption         =   "Gregg Irwin"
  67.       FontBold        =   -1  'True
  68.       FontItalic      =   -1  'True
  69.       FontName        =   "Times New Roman"
  70.       FontSize        =   18
  71.       FontStrikethru  =   0   'False
  72.       FontUnderline   =   0   'False
  73.       Height          =   405
  74.       Left            =   2220
  75.       TabIndex        =   7
  76.       Top             =   2280
  77.       Width           =   2475
  78.    End
  79.    Begin Label Label5 
  80.       Caption         =   "tel +1-510-623-7854 fax +1-510-651-6039"
  81.       Height          =   465
  82.       Left            =   2190
  83.       TabIndex        =   4
  84.       Top             =   1470
  85.       Width           =   2025
  86.    End
  87.    Begin Label Label4 
  88.       Caption         =   "Fremont, CA  94538  USA"
  89.       Height          =   225
  90.       Left            =   2190
  91.       TabIndex        =   3
  92.       Top             =   1230
  93.       Width           =   2745
  94.    End
  95.    Begin Label Label3 
  96.       Caption         =   "42808 Christy Street, Ste. 222"
  97.       Height          =   225
  98.       Left            =   2190
  99.       TabIndex        =   2
  100.       Top             =   990
  101.       Width           =   2715
  102.    End
  103.    Begin Label Label2 
  104.       Caption         =   "Software Source"
  105.       FontBold        =   -1  'True
  106.       FontItalic      =   -1  'True
  107.       FontName        =   "Times New Roman"
  108.       FontSize        =   18
  109.       FontStrikethru  =   0   'False
  110.       FontUnderline   =   0   'False
  111.       Height          =   405
  112.       Left            =   2220
  113.       TabIndex        =   1
  114.       Top             =   510
  115.       Width           =   2655
  116.    End
  117.    Begin Label Label1 
  118.       Caption         =   "FieldPack Demo Program, for:"
  119.       Height          =   225
  120.       Left            =   180
  121.       TabIndex        =   0
  122.       Top             =   120
  123.       Width           =   2745
  124.    End
  125. End
  126. Option Explicit
  127.  
  128. Sub cmdOK_Click ()
  129.  
  130.     Unload Me
  131.  
  132. End Sub
  133.  
  134.