1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
|
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class frmTestEditor
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> _
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
MyBase.Dispose(disposing)
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.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.lblFolder = New System.Windows.Forms.Label
Me.lblFile = New System.Windows.Forms.Label
Me.txtFolder = New System.Windows.Forms.TextBox
Me.txtFile = New System.Windows.Forms.TextBox
Me.cmdCancel = New System.Windows.Forms.Button
Me.cmdSave = New System.Windows.Forms.Button
Me.txtCode = New System.Windows.Forms.RichTextBox
Me.SuspendLayout()
'
'lblFolder
'
Me.lblFolder.Location = New System.Drawing.Point(4, 6)
Me.lblFolder.Name = "lblFolder"
Me.lblFolder.Size = New System.Drawing.Size(73, 16)
Me.lblFolder.TabIndex = 1
Me.lblFolder.Text = "Folder:"
'
'lblFile
'
Me.lblFile.Location = New System.Drawing.Point(4, 34)
Me.lblFile.Name = "lblFile"
Me.lblFile.Size = New System.Drawing.Size(73, 16)
Me.lblFile.TabIndex = 2
Me.lblFile.Text = "File:"
'
'txtFolder
'
Me.txtFolder.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.txtFolder.Location = New System.Drawing.Point(84, 8)
Me.txtFolder.Name = "txtFolder"
Me.txtFolder.Size = New System.Drawing.Size(655, 21)
Me.txtFolder.TabIndex = 3
'
'txtFile
'
Me.txtFile.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.txtFile.Location = New System.Drawing.Point(83, 34)
Me.txtFile.Name = "txtFile"
Me.txtFile.Size = New System.Drawing.Size(655, 21)
Me.txtFile.TabIndex = 4
'
'cmdCancel
'
Me.cmdCancel.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel
Me.cmdCancel.Location = New System.Drawing.Point(649, 454)
Me.cmdCancel.Name = "cmdCancel"
Me.cmdCancel.Size = New System.Drawing.Size(91, 27)
Me.cmdCancel.TabIndex = 5
Me.cmdCancel.Text = "&Cancel"
Me.cmdCancel.UseVisualStyleBackColor = True
'
'cmdSave
'
Me.cmdSave.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.cmdSave.DialogResult = System.Windows.Forms.DialogResult.OK
Me.cmdSave.Location = New System.Drawing.Point(552, 454)
Me.cmdSave.Name = "cmdSave"
Me.cmdSave.Size = New System.Drawing.Size(91, 27)
Me.cmdSave.TabIndex = 6
Me.cmdSave.Text = "&Save"
Me.cmdSave.UseVisualStyleBackColor = True
'
'txtCode
'
Me.txtCode.AcceptsTab = True
Me.txtCode.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.txtCode.Font = New System.Drawing.Font("Courier New", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.txtCode.Location = New System.Drawing.Point(7, 61)
Me.txtCode.Name = "txtCode"
Me.txtCode.Size = New System.Drawing.Size(732, 387)
Me.txtCode.TabIndex = 7
Me.txtCode.Text = ""
'
'frmTestEditor
'
Me.AcceptButton = Me.cmdSave
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.CancelButton = Me.cmdCancel
Me.ClientSize = New System.Drawing.Size(748, 487)
Me.Controls.Add(Me.txtCode)
Me.Controls.Add(Me.cmdSave)
Me.Controls.Add(Me.cmdCancel)
Me.Controls.Add(Me.txtFile)
Me.Controls.Add(Me.txtFolder)
Me.Controls.Add(Me.lblFile)
Me.Controls.Add(Me.lblFolder)
Me.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Name = "frmTestEditor"
Me.ShowInTaskbar = False
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent
Me.Text = "Test Editor"
Me.WindowState = System.Windows.Forms.FormWindowState.Maximized
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents lblFolder As System.Windows.Forms.Label
Friend WithEvents lblFile As System.Windows.Forms.Label
Friend WithEvents txtFolder As System.Windows.Forms.TextBox
Friend WithEvents txtFile As System.Windows.Forms.TextBox
Friend WithEvents cmdCancel As System.Windows.Forms.Button
Friend WithEvents cmdSave As System.Windows.Forms.Button
Friend WithEvents txtCode As System.Windows.Forms.RichTextBox
End Class
|