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
|
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class frmNewTest
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)
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.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.cmdCancel = New System.Windows.Forms.Button()
Me.cmdCreateTest = New System.Windows.Forms.Button()
Me.lblFilename = New System.Windows.Forms.Label()
Me.txtFilename = New System.Windows.Forms.TextBox()
Me.lblName = New System.Windows.Forms.Label()
Me.txtName = New System.Windows.Forms.TextBox()
Me.SuspendLayout()
'
'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(284, 64)
Me.cmdCancel.Name = "cmdCancel"
Me.cmdCancel.Size = New System.Drawing.Size(75, 31)
Me.cmdCancel.TabIndex = 5
Me.cmdCancel.Text = "&Cancel"
Me.cmdCancel.UseVisualStyleBackColor = True
'
'cmdCreateTest
'
Me.cmdCreateTest.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.cmdCreateTest.Location = New System.Drawing.Point(203, 64)
Me.cmdCreateTest.Name = "cmdCreateTest"
Me.cmdCreateTest.Size = New System.Drawing.Size(75, 31)
Me.cmdCreateTest.TabIndex = 4
Me.cmdCreateTest.Text = "Cre&ate Test"
Me.cmdCreateTest.UseVisualStyleBackColor = True
'
'lblFilename
'
Me.lblFilename.AutoSize = True
Me.lblFilename.Location = New System.Drawing.Point(12, 36)
Me.lblFilename.Name = "lblFilename"
Me.lblFilename.Size = New System.Drawing.Size(53, 13)
Me.lblFilename.TabIndex = 2
Me.lblFilename.Text = "Filename:"
'
'txtFilename
'
Me.txtFilename.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.txtFilename.Location = New System.Drawing.Point(71, 33)
Me.txtFilename.Name = "txtFilename"
Me.txtFilename.Size = New System.Drawing.Size(288, 21)
Me.txtFilename.TabIndex = 3
'
'lblName
'
Me.lblName.AutoSize = True
Me.lblName.Location = New System.Drawing.Point(12, 9)
Me.lblName.Name = "lblName"
Me.lblName.Size = New System.Drawing.Size(38, 13)
Me.lblName.TabIndex = 0
Me.lblName.Text = "Name:"
'
'txtName
'
Me.txtName.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.txtName.Location = New System.Drawing.Point(71, 6)
Me.txtName.Name = "txtName"
Me.txtName.Size = New System.Drawing.Size(288, 21)
Me.txtName.TabIndex = 1
'
'frmNewTest
'
Me.AcceptButton = Me.cmdCreateTest
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(371, 107)
Me.Controls.Add(Me.txtName)
Me.Controls.Add(Me.txtFilename)
Me.Controls.Add(Me.lblName)
Me.Controls.Add(Me.lblFilename)
Me.Controls.Add(Me.cmdCreateTest)
Me.Controls.Add(Me.cmdCancel)
Me.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Name = "frmNewTest"
Me.Text = "Create Test"
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents cmdCancel As System.Windows.Forms.Button
Friend WithEvents cmdCreateTest As System.Windows.Forms.Button
Friend WithEvents lblFilename As System.Windows.Forms.Label
Friend WithEvents txtFilename As System.Windows.Forms.TextBox
Friend WithEvents lblName As System.Windows.Forms.Label
Friend WithEvents txtName As System.Windows.Forms.TextBox
End Class
|