home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 January / PCWorld_2001-01_cd.bin / Software / Topware / xmlspy / xmlspy35.exe / Main / DlgInputStr.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  2000-11-20  |  1.7 KB  |  64 lines

  1. VERSION 5.00
  2. Begin VB.Form DlgInputStr 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "Dialog Caption"
  5.    ClientHeight    =   1425
  6.    ClientLeft      =   2760
  7.    ClientTop       =   3750
  8.    ClientWidth     =   5400
  9.    LinkTopic       =   "Form1"
  10.    MaxButton       =   0   'False
  11.    MinButton       =   0   'False
  12.    ScaleHeight     =   1425
  13.    ScaleWidth      =   5400
  14.    ShowInTaskbar   =   0   'False
  15.    Begin VB.TextBox EditString 
  16.       Height          =   285
  17.       Left            =   135
  18.       TabIndex        =   3
  19.       Text            =   "EditString"
  20.       Top             =   390
  21.       Width           =   5175
  22.    End
  23.    Begin VB.CommandButton CancelButton 
  24.       Caption         =   "Cancel"
  25.       Height          =   375
  26.       Left            =   2640
  27.       TabIndex        =   1
  28.       Top             =   960
  29.       Width           =   1215
  30.    End
  31.    Begin VB.CommandButton OKButton 
  32.       Caption         =   "OK"
  33.       Height          =   375
  34.       Left            =   4080
  35.       TabIndex        =   0
  36.       Top             =   960
  37.       Width           =   1215
  38.    End
  39.    Begin VB.Label TxtLabel 
  40.       Caption         =   "Label"
  41.       Height          =   255
  42.       Left            =   135
  43.       TabIndex        =   2
  44.       Top             =   90
  45.       Width           =   5175
  46.    End
  47. Attribute VB_Name = "DlgInputStr"
  48. Attribute VB_GlobalNameSpace = False
  49. Attribute VB_Creatable = False
  50. Attribute VB_PredeclaredId = True
  51. Attribute VB_Exposed = False
  52. Public bOK As Boolean
  53. Option Explicit
  54. Private Sub CancelButton_Click()
  55.     Hide
  56. End Sub
  57. Private Sub Form_Initialize()
  58.     bOK = False
  59. End Sub
  60. Private Sub OKButton_Click()
  61.     bOK = True
  62.     Hide
  63. End Sub
  64.