Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
88
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.         CType(Me.DataGridView1, System.ComponentModel.ISupportInitialize).BeginInit()
  31.         Me.SuspendLayout()
  32.         '
  33.        'ListBox1
  34.        '
  35.        Me.ListBox1.AccessibleName = "dGV"
  36.         Me.ListBox1.FormattingEnabled = True
  37.         Me.ListBox1.Items.AddRange(New Object() {"log (log x)", "log(x)", "sqrt(x)", "x^2", "x^3", "2^x", "RESET", "DELETE"})
  38.         Me.ListBox1.Location = New System.Drawing.Point(5, 11)
  39.         Me.ListBox1.Name = "ListBox1"
  40.         Me.ListBox1.Size = New System.Drawing.Size(65, 108)
  41.         Me.ListBox1.TabIndex = 0
  42.         '
  43.        'DataGridView1
  44.        '
  45.        Me.DataGridView1.AccessibleName = "dGV"
  46.         Me.DataGridView1.AllowUserToOrderColumns = True
  47.         Me.DataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  48.         Me.DataGridView1.Location = New System.Drawing.Point(107, 18)
  49.         Me.DataGridView1.Name = "DataGridView1"
  50.         Me.DataGridView1.Size = New System.Drawing.Size(444, 266)
  51.         Me.DataGridView1.TabIndex = 1
  52.         '
  53.        'btnReset
  54.        '
  55.        Me.btnReset.AccessibleName = "dGV"
  56.         Me.btnReset.Location = New System.Drawing.Point(5, 125)
  57.         Me.btnReset.Name = "btnReset"
  58.         Me.btnReset.Size = New System.Drawing.Size(82, 36)
  59.         Me.btnReset.TabIndex = 2
  60.         Me.btnReset.Text = "RESET"
  61.         Me.btnReset.UseVisualStyleBackColor = True
  62.         '
  63.        'btnDelete
  64.        '
  65.        Me.btnDelete.AccessibleName = "dGV"
  66.         Me.btnDelete.Location = New System.Drawing.Point(7, 180)
  67.         Me.btnDelete.Name = "btnDelete"
  68.         Me.btnDelete.Size = New System.Drawing.Size(79, 55)
  69.         Me.btnDelete.TabIndex = 3
  70.         Me.btnDelete.Text = "Delete"
  71.         Me.btnDelete.UseVisualStyleBackColor = True
  72.         '
  73.        'Label1
  74.        '
  75.        Me.Label1.AccessibleName = "dGV"
  76.         Me.Label1.AutoSize = True
  77.         Me.Label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  78.         Me.Label1.Location = New System.Drawing.Point(11, 250)
  79.         Me.Label1.Name = "Label1"
  80.         Me.Label1.Size = New System.Drawing.Size(41, 15)
  81.         Me.Label1.TabIndex = 4
  82.         Me.Label1.Text = "Label1"
  83.         '
  84.        'Form1
  85.        '
  86.        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
  87.         Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  88.         Me.ClientSize = New System.Drawing.Size(577, 302)
  89.         Me.Controls.Add(Me.Label1)
  90.         Me.Controls.Add(Me.btnDelete)
  91.         Me.Controls.Add(Me.btnReset)
  92.         Me.Controls.Add(Me.DataGridView1)
  93.         Me.Controls.Add(Me.ListBox1)
  94.         Me.Name = "Form1"
  95.         Me.Text = "Form1"
  96.         CType(Me.DataGridView1, System.ComponentModel.ISupportInitialize).EndInit()
  97.         Me.ResumeLayout(False)
  98.         Me.PerformLayout()
  99.  
  100.     End Sub
  101.     Friend WithEvents ListBox1 As System.Windows.Forms.ListBox
  102.     Friend WithEvents DataGridView1 As System.Windows.Forms.DataGridView
  103.     Friend WithEvents btnReset As System.Windows.Forms.Button
  104.     Friend WithEvents btnDelete As System.Windows.Forms.Button
  105.     Friend WithEvents Label1 As System.Windows.Forms.Label
  106.  
  107. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement