home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / WIN_UTL1 / DB4PK1.ZIP / FRMPACKT.FRM < prev    next >
Text File  |  1994-02-10  |  2KB  |  76 lines

  1. VERSION 2.00
  2. Begin Form frmPackTable 
  3.    Caption         =   "Pack A dBASE IV Table"
  4.    ClientHeight    =   3792
  5.    ClientLeft      =   2820
  6.    ClientTop       =   2520
  7.    ClientWidth     =   6072
  8.    Height          =   4212
  9.    Left            =   2772
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   3792
  12.    ScaleWidth      =   6072
  13.    Top             =   2148
  14.    Width           =   6168
  15.    Begin CommandButton cmdQuit 
  16.       Caption         =   "&Quit"
  17.       Height          =   612
  18.       Left            =   3180
  19.       TabIndex        =   3
  20.       Top             =   2460
  21.       Width           =   1452
  22.    End
  23.    Begin CommandButton cmdPack 
  24.       Caption         =   "&Pack"
  25.       Height          =   612
  26.       Left            =   1560
  27.       TabIndex        =   2
  28.       Top             =   2460
  29.       Width           =   1392
  30.    End
  31.    Begin TextBox txtTable 
  32.       Height          =   432
  33.       Left            =   2460
  34.       TabIndex        =   1
  35.       Top             =   1680
  36.       Width           =   2952
  37.    End
  38.    Begin TextBox txtDatabase 
  39.       Height          =   432
  40.       Left            =   2460
  41.       TabIndex        =   0
  42.       Top             =   1080
  43.       Width           =   2952
  44.    End
  45.    Begin Label lblTable 
  46.       Caption         =   "Table:"
  47.       Height          =   432
  48.       Left            =   780
  49.       TabIndex        =   5
  50.       Top             =   1680
  51.       Width           =   1572
  52.    End
  53.    Begin Label lblDatabase 
  54.       Caption         =   "Database:"
  55.       Height          =   432
  56.       Left            =   780
  57.       TabIndex        =   4
  58.       Top             =   1080
  59.       Width           =   1572
  60.    End
  61. End
  62.  
  63. 'Pack the table.
  64. Sub cmdPack_Click ()
  65.     Dim sDatabase As String
  66.     Dim sTable As String
  67.     sDatabase = txtDatabase.Text
  68.     sTable = txtTable.Text
  69.     Call PackTable(sDatabase, sTable)
  70. End Sub
  71.  
  72. Sub cmdQuit_Click ()
  73.     End
  74. End Sub
  75.  
  76.