_ Partial Class frmDetalleHit Inherits System.Windows.Forms.Form 'Form overrides dispose to clean up the component list. _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) Try If disposing AndAlso components IsNot Nothing Then components.Dispose() End If Finally MyBase.Dispose(disposing) End Try End Sub 'Required by the Windows Form Designer Private components As System.ComponentModel.IContainer 'NOTE: The following procedure is required by the Windows Form Designer 'It can be modified using the Windows Form Designer. 'Do not modify it using the code editor. _ Private Sub InitializeComponent() Me.btnSalir = New System.Windows.Forms.Button() Me.Label1 = New System.Windows.Forms.Label() Me.TabControl1 = New System.Windows.Forms.TabControl() Me.TabPage1 = New System.Windows.Forms.TabPage() Me.rtxtCadena = New System.Windows.Forms.RichTextBox() Me.TabPage2 = New System.Windows.Forms.TabPage() Me.rtxtDetalle = New System.Windows.Forms.RichTextBox() Me.btnHit = New System.Windows.Forms.Button() Me.btnNoHit = New System.Windows.Forms.Button() Me.TabControl1.SuspendLayout() Me.TabPage1.SuspendLayout() Me.TabPage2.SuspendLayout() Me.SuspendLayout() ' 'btnSalir ' Me.btnSalir.Location = New System.Drawing.Point(322, 9) Me.btnSalir.Name = "btnSalir" Me.btnSalir.Size = New System.Drawing.Size(75, 23) Me.btnSalir.TabIndex = 0 Me.btnSalir.Text = "Cerrar" Me.btnSalir.UseVisualStyleBackColor = True ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Location = New System.Drawing.Point(-3, 9) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(39, 13) Me.Label1.TabIndex = 1 Me.Label1.Text = "Label1" ' 'TabControl1 ' Me.TabControl1.Controls.Add(Me.TabPage1) Me.TabControl1.Controls.Add(Me.TabPage2) Me.TabControl1.Location = New System.Drawing.Point(0, 33) Me.TabControl1.Name = "TabControl1" Me.TabControl1.SelectedIndex = 0 Me.TabControl1.Size = New System.Drawing.Size(432, 339) Me.TabControl1.TabIndex = 2 ' 'TabPage1 ' Me.TabPage1.Controls.Add(Me.rtxtCadena) Me.TabPage1.Location = New System.Drawing.Point(4, 22) Me.TabPage1.Name = "TabPage1" Me.TabPage1.Padding = New System.Windows.Forms.Padding(3) Me.TabPage1.Size = New System.Drawing.Size(424, 313) Me.TabPage1.TabIndex = 0 Me.TabPage1.Text = "CadenaOT" Me.TabPage1.UseVisualStyleBackColor = True ' 'rtxtCadena ' Me.rtxtCadena.Location = New System.Drawing.Point(0, 0) Me.rtxtCadena.Name = "rtxtCadena" Me.rtxtCadena.Size = New System.Drawing.Size(421, 313) Me.rtxtCadena.TabIndex = 0 Me.rtxtCadena.Text = "" ' 'TabPage2 ' Me.TabPage2.Controls.Add(Me.rtxtDetalle) Me.TabPage2.Location = New System.Drawing.Point(4, 22) Me.TabPage2.Name = "TabPage2" Me.TabPage2.Padding = New System.Windows.Forms.Padding(3) Me.TabPage2.Size = New System.Drawing.Size(424, 313) Me.TabPage2.TabIndex = 1 Me.TabPage2.Text = "Detalles" Me.TabPage2.UseVisualStyleBackColor = True ' 'rtxtDetalle ' Me.rtxtDetalle.Location = New System.Drawing.Point(0, 0) Me.rtxtDetalle.Name = "rtxtDetalle" Me.rtxtDetalle.Size = New System.Drawing.Size(424, 313) Me.rtxtDetalle.TabIndex = 1 Me.rtxtDetalle.Text = "" ' 'btnHit ' Me.btnHit.Location = New System.Drawing.Point(272, 386) Me.btnHit.Name = "btnHit" Me.btnHit.Size = New System.Drawing.Size(75, 23) Me.btnHit.TabIndex = 3 Me.btnHit.Text = "Es Hit" Me.btnHit.UseVisualStyleBackColor = True ' 'btnNoHit ' Me.btnNoHit.Location = New System.Drawing.Point(353, 386) Me.btnNoHit.Name = "btnNoHit" Me.btnNoHit.Size = New System.Drawing.Size(75, 23) Me.btnNoHit.TabIndex = 4 Me.btnNoHit.Text = "No es Hit" Me.btnNoHit.UseVisualStyleBackColor = True ' 'frmDetalleHit ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(433, 421) Me.Controls.Add(Me.btnNoHit) Me.Controls.Add(Me.btnHit) Me.Controls.Add(Me.TabControl1) Me.Controls.Add(Me.Label1) Me.Controls.Add(Me.btnSalir) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "frmDetalleHit" Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.Text = "Detalle Hit" Me.TabControl1.ResumeLayout(False) Me.TabPage1.ResumeLayout(False) Me.TabPage2.ResumeLayout(False) Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents btnSalir As System.Windows.Forms.Button Friend WithEvents Label1 As System.Windows.Forms.Label Friend WithEvents TabControl1 As System.Windows.Forms.TabControl Friend WithEvents TabPage1 As System.Windows.Forms.TabPage Friend WithEvents TabPage2 As System.Windows.Forms.TabPage Friend WithEvents rtxtCadena As System.Windows.Forms.RichTextBox Friend WithEvents rtxtDetalle As System.Windows.Forms.RichTextBox Friend WithEvents btnHit As System.Windows.Forms.Button Friend WithEvents btnNoHit As System.Windows.Forms.Button End Class