home *** CD-ROM | disk | FTP | other *** search
/ Master 95 #1 / MASTER95_1.iso / microsof / vbasic4 / vb4-6.cab / expname.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-07-26  |  2.1 KB  |  77 lines

  1. VERSION 4.00
  2. Begin VB.Form frmExpName 
  3.    BorderStyle     =   3  'Fixed Double
  4.    Caption         =   "Export"
  5.    ClientHeight    =   1335
  6.    ClientLeft      =   2775
  7.    ClientTop       =   2670
  8.    ClientWidth     =   4950
  9.    Height          =   1740
  10.    HelpContextID   =   2016127
  11.    Icon            =   "EXPNAME.frx":0000
  12.    Left            =   2715
  13.    LinkTopic       =   "Form1"
  14.    LockControls    =   -1  'True
  15.    MaxButton       =   0   'False
  16.    MinButton       =   0   'False
  17.    ScaleHeight     =   1335
  18.    ScaleWidth      =   4950
  19.    Top             =   2325
  20.    Width           =   5070
  21.    Begin VB.CommandButton cmdCancel 
  22.       Cancel          =   -1  'True
  23.       Caption         =   "&Cancel"
  24.       Height          =   375
  25.       Left            =   3480
  26.       TabIndex        =   4
  27.       Top             =   600
  28.       Width           =   1335
  29.    End
  30.    Begin VB.CommandButton cmdOK 
  31.       Caption         =   "&OK"
  32.       Default         =   -1  'True
  33.       Height          =   375
  34.       Left            =   3480
  35.       TabIndex        =   3
  36.       Top             =   120
  37.       Width           =   1335
  38.    End
  39.    Begin VB.TextBox txtTable 
  40.       Height          =   285
  41.       Left            =   160
  42.       TabIndex        =   1
  43.       Top             =   480
  44.       Width           =   2895
  45.    End
  46.    Begin VB.Label Label2 
  47.       AutoSize        =   -1  'True
  48.       Height          =   195
  49.       Left            =   165
  50.       TabIndex        =   2
  51.       Top             =   840
  52.       Width           =   45
  53.    End
  54.    Begin VB.Label Label1 
  55.       AutoSize        =   -1  'True
  56.       Height          =   195
  57.       Left            =   165
  58.       TabIndex        =   0
  59.       Top             =   120
  60.       Width           =   45
  61.    End
  62. Attribute VB_Name = "frmExpName"
  63. Attribute VB_Creatable = False
  64. Attribute VB_Exposed = False
  65. Option Explicit
  66. Private Sub cmdCancel_Click()
  67.   gExpTable = gsNULL_STR
  68.   Unload Me
  69. End Sub
  70. Private Sub cmdOK_Click()
  71.   gExpTable = txtTable.Text
  72.   Unload Me
  73. End Sub
  74. Sub Form_Load()
  75.   CenterMe Me, gnMDIFORM
  76. End Sub
  77.