home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frmPackTable
- Caption = "Pack A dBASE IV Table"
- ClientHeight = 3792
- ClientLeft = 2820
- ClientTop = 2520
- ClientWidth = 6072
- Height = 4212
- Left = 2772
- LinkTopic = "Form1"
- ScaleHeight = 3792
- ScaleWidth = 6072
- Top = 2148
- Width = 6168
- Begin CommandButton cmdQuit
- Caption = "&Quit"
- Height = 612
- Left = 3180
- TabIndex = 3
- Top = 2460
- Width = 1452
- End
- Begin CommandButton cmdPack
- Caption = "&Pack"
- Height = 612
- Left = 1560
- TabIndex = 2
- Top = 2460
- Width = 1392
- End
- Begin TextBox txtTable
- Height = 432
- Left = 2460
- TabIndex = 1
- Top = 1680
- Width = 2952
- End
- Begin TextBox txtDatabase
- Height = 432
- Left = 2460
- TabIndex = 0
- Top = 1080
- Width = 2952
- End
- Begin Label lblTable
- Caption = "Table:"
- Height = 432
- Left = 780
- TabIndex = 5
- Top = 1680
- Width = 1572
- End
- Begin Label lblDatabase
- Caption = "Database:"
- Height = 432
- Left = 780
- TabIndex = 4
- Top = 1080
- Width = 1572
- End
- 'Pack the table.
- Sub cmdPack_Click ()
- Dim sDatabase As String
- Dim sTable As String
- sDatabase = txtDatabase.Text
- sTable = txtTable.Text
- Call PackTable(sDatabase, sTable)
- End Sub
- Sub cmdQuit_Click ()
- End
- End Sub
-