home *** CD-ROM | disk | FTP | other *** search
/ Internet Magazine 2002 December / INTERNET97.ISO / pc / software / windows / building / xmlspy / setup44.exe / Data1.cab / F1509_DlgGenDTD.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  2000-09-26  |  2.4 KB  |  84 lines

  1. VERSION 5.00
  2. Begin VB.Form DlgGenDTD 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "Generate DTD/Schema"
  5.    ClientHeight    =   1515
  6.    ClientLeft      =   2760
  7.    ClientTop       =   3750
  8.    ClientWidth     =   4230
  9.    LinkTopic       =   "Form1"
  10.    MaxButton       =   0   'False
  11.    MinButton       =   0   'False
  12.    ScaleHeight     =   1515
  13.    ScaleWidth      =   4230
  14.    ShowInTaskbar   =   0   'False
  15.    Begin VB.ComboBox ComboDetec 
  16.       Height          =   315
  17.       ItemData        =   "DlgGenDTD.frx":0000
  18.       Left            =   120
  19.       List            =   "DlgGenDTD.frx":000D
  20.       Style           =   2  'Dropdown List
  21.       TabIndex        =   4
  22.       Top             =   1095
  23.       Width           =   2295
  24.    End
  25.    Begin VB.ComboBox ComboType 
  26.       Height          =   315
  27.       ItemData        =   "DlgGenDTD.frx":003C
  28.       Left            =   120
  29.       List            =   "DlgGenDTD.frx":004F
  30.       Style           =   2  'Dropdown List
  31.       TabIndex        =   2
  32.       Top             =   375
  33.       Width           =   2295
  34.    End
  35.    Begin VB.CommandButton CancelButton 
  36.       Caption         =   "Cancel"
  37.       Height          =   375
  38.       Left            =   2880
  39.       TabIndex        =   1
  40.       Top             =   600
  41.       Width           =   1215
  42.    End
  43.    Begin VB.CommandButton OKButton 
  44.       Caption         =   "OK"
  45.       Height          =   375
  46.       Left            =   2880
  47.       TabIndex        =   0
  48.       Top             =   120
  49.       Width           =   1215
  50.    End
  51.    Begin VB.Label Label2 
  52.       Caption         =   "Type detection:"
  53.       Height          =   255
  54.       Left            =   120
  55.       TabIndex        =   5
  56.       Top             =   840
  57.       Width           =   2295
  58.    End
  59.    Begin VB.Label Label1 
  60.       Caption         =   "Type of DTD/Schema:"
  61.       Height          =   255
  62.       Left            =   120
  63.       TabIndex        =   3
  64.       Top             =   120
  65.       Width           =   2295
  66.    End
  67. Attribute VB_Name = "DlgGenDTD"
  68. Attribute VB_GlobalNameSpace = False
  69. Attribute VB_Creatable = False
  70. Attribute VB_PredeclaredId = True
  71. Attribute VB_Exposed = False
  72. Public bOK As Boolean
  73. Option Explicit
  74. Private Sub CancelButton_Click()
  75.     Hide
  76. End Sub
  77. Private Sub Form_Initialize()
  78.     bOK = False
  79. End Sub
  80. Private Sub OKButton_Click()
  81.     bOK = True
  82.     Hide
  83. End Sub
  84.