Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
  2. Partial Class Form1
  3.     Inherits System.Windows.Forms.Form
  4.  
  5.     'Form overrides dispose to clean up the component list.
  6.    <System.Diagnostics.DebuggerNonUserCode()> _
  7.     Protected Overrides Sub Dispose(ByVal disposing As Boolean)
  8.         Try
  9.             If disposing AndAlso components IsNot Nothing Then
  10.                 components.Dispose()
  11.             End If
  12.         Finally
  13.             MyBase.Dispose(disposing)
  14.         End Try
  15.     End Sub
  16.  
  17.     'Required by the Windows Form Designer
  18.    Private components As System.ComponentModel.IContainer
  19.  
  20.     'NOTE: The following procedure is required by the Windows Form Designer
  21.    'It can be modified using the Windows Form Designer.  
  22.    'Do not modify it using the code editor.
  23.    <System.Diagnostics.DebuggerStepThrough()> _
  24.     Private Sub InitializeComponent()
  25.         Me.ListBox1 = New System.Windows.Forms.ListBox()
  26.         Me.DataGridView1 = New System.Windows.Forms.DataGridView()
  27.         Me.btnReset = New System.Windows.Forms.Button()
  28.         Me.btnDelete = New System.Windows.Forms.Button()
  29.         Me.Label1 = New System.Windows.Forms.Label()
  30.         Me.btnMasterReset = New System.Windows.Forms.Button()
  31.         CType(Me.DataGridView1, System.ComponentModel.ISupportInitialize).BeginInit()
  32.         Me.SuspendLayout()
  33.         '
  34.        'ListBox1
  35.        '
  36.        Me.ListBox1.AccessibleName = "dGV"
  37.         Me.ListBox1.FormattingEnabled = True
  38.         Me.ListBox1.Items.AddRange(New Object() {"log (log x)", "log(x)", "sqrt(x)", "x^2", "x^3", "2^x", "RESET", "DELETE"})
  39.         Me.ListBox1.Location = New System.Drawing.Point(5, 11)
  40.         Me.ListBox1.Name = "ListBox1"
  41.         Me.ListBox1.Size = New System.Drawing.Size(65, 108)
  42.         Me.ListBox1.TabIndex = 0
  43.         '
  44.        'DataGridView1
  45.        '
  46.        Me.DataGridView1.AccessibleName = "dGV"
  47.         Me.DataGridView1.AllowUserToAddRows = False
  48.         Me.DataGridView1.AllowUserToDeleteRows = False
  49.         Me.DataGridView1.AllowUserToResizeColumns = False
  50.         Me.DataGridView1.AllowUserToResizeRows = False
  51.         Me.DataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  52.         Me.DataGridView1.Location = New System.Drawing.Point(103, 14)
  53.         Me.DataGridView1.Name = "DataGridView1"
  54.         Me.DataGridView1.Size = New System.Drawing.Size(444, 266)
  55.         Me.DataGridView1.TabIndex = 1
  56.         '
  57.        'btnReset
  58.        '
  59.        Me.btnReset.AccessibleName = "dGV"
  60.         Me.btnReset.Location = New System.Drawing.Point(5, 125)
  61.         Me.btnReset.Name = "btnReset"
  62.         Me.btnReset.Size = New System.Drawing.Size(82, 36)
  63.         Me.btnReset.TabIndex = 2
  64.         Me.btnReset.Text = "RESET"
  65.         Me.btnReset.UseVisualStyleBackColor = True
  66.         '
  67.        'btnDelete
  68.        '
  69.        Me.btnDelete.AccessibleName = "dGV"
  70.         Me.btnDelete.Location = New System.Drawing.Point(7, 180)
  71.         Me.btnDelete.Name = "btnDelete"
  72.         Me.btnDelete.Size = New System.Drawing.Size(79, 55)
  73.         Me.btnDelete.TabIndex = 3
  74.         Me.btnDelete.Text = "Delete"
  75.         Me.btnDelete.UseVisualStyleBackColor = True
  76.         '
  77.        'Label1
  78.        '
  79.        Me.Label1.AccessibleName = "dGV"
  80.         Me.Label1.AutoSize = True
  81.         Me.Label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  82.         Me.Label1.Location = New System.Drawing.Point(11, 250)
  83.         Me.Label1.Name = "Label1"
  84.         Me.Label1.Size = New System.Drawing.Size(41, 15)
  85.         Me.Label1.TabIndex = 4
  86.         Me.Label1.Text = "Label1"
  87.         '
  88.        'btnMasterReset
  89.        '
  90.        Me.btnMasterReset.Location = New System.Drawing.Point(469, 279)
  91.         Me.btnMasterReset.Name = "btnMasterReset"
  92.         Me.btnMasterReset.Size = New System.Drawing.Size(82, 21)
  93.         Me.btnMasterReset.TabIndex = 5
  94.         Me.btnMasterReset.Text = "master reset"
  95.         Me.btnMasterReset.UseVisualStyleBackColor = True
  96.         '
  97.        'Form1
  98.        '
  99.        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
  100.         Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  101.         Me.ClientSize = New System.Drawing.Size(577, 302)
  102.         Me.Controls.Add(Me.btnMasterReset)
  103.         Me.Controls.Add(Me.Label1)
  104.         Me.Controls.Add(Me.btnDelete)
  105.         Me.Controls.Add(Me.btnReset)
  106.         Me.Controls.Add(Me.DataGridView1)
  107.         Me.Controls.Add(Me.ListBox1)
  108.         Me.Name = "Form1"
  109.         Me.Text = "Form1"
  110.         CType(Me.DataGridView1, System.ComponentModel.ISupportInitialize).EndInit()
  111.         Me.ResumeLayout(False)
  112.         Me.PerformLayout()
  113.  
  114.     End Sub
  115.     Friend WithEvents ListBox1 As System.Windows.Forms.ListBox
  116.     Friend WithEvents DataGridView1 As System.Windows.Forms.DataGridView
  117.     Friend WithEvents btnReset As System.Windows.Forms.Button
  118.     Friend WithEvents btnDelete As System.Windows.Forms.Button
  119.     Friend WithEvents Label1 As System.Windows.Forms.Label
  120.     Friend WithEvents btnMasterReset As System.Windows.Forms.Button
  121.  
  122. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement