Questo sito utilizza cookies solo per scopi di autenticazione sul sito e nient'altro. Nessuna informazione personale viene tracciata. Leggi l'informativa sui cookies.
Username: Password: oppure
MGraphing2009 - Form1.Designer.vb

Form1.Designer.vb

Caricato da: Totem
Scarica il programma completo

  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.strMainMenu = New System.Windows.Forms.MenuStrip
  26.         Me.strGraph = New System.Windows.Forms.ToolStripMenuItem
  27.         Me.strDraw = New System.Windows.Forms.ToolStripMenuItem
  28.         Me.strSaveAs = New System.Windows.Forms.ToolStripMenuItem
  29.         Me.splitMain = New System.Windows.Forms.SplitContainer
  30.         Me.imgGraph = New System.Windows.Forms.PictureBox
  31.         Me.tabMain = New System.Windows.Forms.TabControl
  32.         Me.TabPage1 = New System.Windows.Forms.TabPage
  33.         Me.pgDetails = New System.Windows.Forms.PropertyGrid
  34.         Me.TabPage2 = New System.Windows.Forms.TabPage
  35.         Me.btnRemoveFunction = New System.Windows.Forms.Button
  36.         Me.btnAddFunction = New System.Windows.Forms.Button
  37.         Me.txtFunctionDomain = New System.Windows.Forms.TextBox
  38.         Me.Label4 = New System.Windows.Forms.Label
  39.         Me.btnValidateDef = New System.Windows.Forms.Button
  40.         Me.pnlColor = New System.Windows.Forms.Panel
  41.         Me.Label3 = New System.Windows.Forms.Label
  42.         Me.dgvFunctionDefinition = New System.Windows.Forms.DataGridView
  43.         Me.Column1 = New System.Windows.Forms.DataGridViewTextBoxColumn
  44.         Me.Column2 = New System.Windows.Forms.DataGridViewTextBoxColumn
  45.         Me.Label2 = New System.Windows.Forms.Label
  46.         Me.txtFunctionName = New System.Windows.Forms.TextBox
  47.         Me.Label1 = New System.Windows.Forms.Label
  48.         Me.lstFunctions = New System.Windows.Forms.ListBox
  49.         Me.TabPage3 = New System.Windows.Forms.TabPage
  50.         Me.lblZeroFunction = New System.Windows.Forms.Label
  51.         Me.lblZero = New System.Windows.Forms.Label
  52.         Me.nudExpError = New System.Windows.Forms.NumericUpDown
  53.         Me.Label6 = New System.Windows.Forms.Label
  54.         Me.btnFindZero = New System.Windows.Forms.Button
  55.         Me.txtZeroInterval = New System.Windows.Forms.TextBox
  56.         Me.Label5 = New System.Windows.Forms.Label
  57.         Me.ColorDialog1 = New System.Windows.Forms.ColorDialog
  58.         Me.SaveDialog = New System.Windows.Forms.SaveFileDialog
  59.         Me.strMainMenu.SuspendLayout()
  60.         Me.splitMain.Panel1.SuspendLayout()
  61.         Me.splitMain.Panel2.SuspendLayout()
  62.         Me.splitMain.SuspendLayout()
  63.         CType(Me.imgGraph, System.ComponentModel.ISupportInitialize).BeginInit()
  64.         Me.tabMain.SuspendLayout()
  65.         Me.TabPage1.SuspendLayout()
  66.         Me.TabPage2.SuspendLayout()
  67.         CType(Me.dgvFunctionDefinition, System.ComponentModel.ISupportInitialize).BeginInit()
  68.         Me.TabPage3.SuspendLayout()
  69.         CType(Me.nudExpError, System.ComponentModel.ISupportInitialize).BeginInit()
  70.         Me.SuspendLayout()
  71.         '
  72.         'strMainMenu
  73.         '
  74.         Me.strMainMenu.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.strGraph})
  75.         Me.strMainMenu.Location = New System.Drawing.Point(0, 0)
  76.         Me.strMainMenu.Name = "strMainMenu"
  77.         Me.strMainMenu.RenderMode = System.Windows.Forms.ToolStripRenderMode.System
  78.         Me.strMainMenu.Size = New System.Drawing.Size(810, 24)
  79.         Me.strMainMenu.TabIndex = 0
  80.         Me.strMainMenu.Text = "MenuStrip1"
  81.         '
  82.         'strGraph
  83.         '
  84.         Me.strGraph.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.strDraw, Me.strSaveAs})
  85.         Me.strGraph.Name = "strGraph"
  86.         Me.strGraph.Size = New System.Drawing.Size(57, 20)
  87.         Me.strGraph.Text = "Grafico"
  88.         '
  89.         'strDraw
  90.         '
  91.         Me.strDraw.Name = "strDraw"
  92.         Me.strDraw.Size = New System.Drawing.Size(191, 22)
  93.         Me.strDraw.Text = "Disegna"
  94.         '
  95.         'strSaveAs
  96.         '
  97.         Me.strSaveAs.Name = "strSaveAs"
  98.         Me.strSaveAs.Size = New System.Drawing.Size(191, 22)
  99.         Me.strSaveAs.Text = "Salva come immagine"
  100.         '
  101.         'splitMain
  102.         '
  103.         Me.splitMain.Dock = System.Windows.Forms.DockStyle.Fill
  104.         Me.splitMain.Location = New System.Drawing.Point(0, 24)
  105.         Me.splitMain.Name = "splitMain"
  106.         '
  107.         'splitMain.Panel1
  108.         '
  109.         Me.splitMain.Panel1.Controls.Add(Me.imgGraph)
  110.         '
  111.         'splitMain.Panel2
  112.         '
  113.         Me.splitMain.Panel2.Controls.Add(Me.tabMain)
  114.         Me.splitMain.Size = New System.Drawing.Size(810, 602)
  115.         Me.splitMain.SplitterDistance = 514
  116.         Me.splitMain.TabIndex = 1
  117.         '
  118.         'imgGraph
  119.         '
  120.         Me.imgGraph.Dock = System.Windows.Forms.DockStyle.Fill
  121.         Me.imgGraph.Location = New System.Drawing.Point(0, 0)
  122.         Me.imgGraph.Name = "imgGraph"
  123.         Me.imgGraph.Size = New System.Drawing.Size(514, 602)
  124.         Me.imgGraph.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage
  125.         Me.imgGraph.TabIndex = 0
  126.         Me.imgGraph.TabStop = False
  127.         '
  128.         'tabMain
  129.         '
  130.         Me.tabMain.Controls.Add(Me.TabPage1)
  131.         Me.tabMain.Controls.Add(Me.TabPage2)
  132.         Me.tabMain.Controls.Add(Me.TabPage3)
  133.         Me.tabMain.Dock = System.Windows.Forms.DockStyle.Fill
  134.         Me.tabMain.Location = New System.Drawing.Point(0, 0)
  135.         Me.tabMain.Name = "tabMain"
  136.         Me.tabMain.SelectedIndex = 0
  137.         Me.tabMain.Size = New System.Drawing.Size(292, 602)
  138.         Me.tabMain.TabIndex = 1
  139.         '
  140.         'TabPage1
  141.         '
  142.         Me.TabPage1.Controls.Add(Me.pgDetails)
  143.         Me.TabPage1.Location = New System.Drawing.Point(4, 22)
  144.         Me.TabPage1.Name = "TabPage1"
  145.         Me.TabPage1.Padding = New System.Windows.Forms.Padding(3)
  146.         Me.TabPage1.Size = New System.Drawing.Size(284, 576)
  147.         Me.TabPage1.TabIndex = 0
  148.         Me.TabPage1.Text = "Dettagli grafico"
  149.         Me.TabPage1.UseVisualStyleBackColor = True
  150.         '
  151.         'pgDetails
  152.         '
  153.         Me.pgDetails.Dock = System.Windows.Forms.DockStyle.Fill
  154.         Me.pgDetails.Location = New System.Drawing.Point(3, 3)
  155.         Me.pgDetails.Name = "pgDetails"
  156.         Me.pgDetails.Size = New System.Drawing.Size(278, 570)
  157.         Me.pgDetails.TabIndex = 0
  158.         '
  159.         'TabPage2
  160.         '
  161.         Me.TabPage2.Controls.Add(Me.btnRemoveFunction)
  162.         Me.TabPage2.Controls.Add(Me.btnAddFunction)
  163.         Me.TabPage2.Controls.Add(Me.txtFunctionDomain)
  164.         Me.TabPage2.Controls.Add(Me.Label4)
  165.         Me.TabPage2.Controls.Add(Me.btnValidateDef)
  166.         Me.TabPage2.Controls.Add(Me.pnlColor)
  167.         Me.TabPage2.Controls.Add(Me.Label3)
  168.         Me.TabPage2.Controls.Add(Me.dgvFunctionDefinition)
  169.         Me.TabPage2.Controls.Add(Me.Label2)
  170.         Me.TabPage2.Controls.Add(Me.txtFunctionName)
  171.         Me.TabPage2.Controls.Add(Me.Label1)
  172.         Me.TabPage2.Controls.Add(Me.lstFunctions)
  173.         Me.TabPage2.Location = New System.Drawing.Point(4, 22)
  174.         Me.TabPage2.Name = "TabPage2"
  175.         Me.TabPage2.Padding = New System.Windows.Forms.Padding(3)
  176.         Me.TabPage2.Size = New System.Drawing.Size(284, 576)
  177.         Me.TabPage2.TabIndex = 1
  178.         Me.TabPage2.Text = "Funzioni"
  179.         Me.TabPage2.UseVisualStyleBackColor = True
  180.         '
  181.         'btnRemoveFunction
  182.         '
  183.         Me.btnRemoveFunction.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  184.         Me.btnRemoveFunction.Location = New System.Drawing.Point(253, 35)
  185.         Me.btnRemoveFunction.Name = "btnRemoveFunction"
  186.         Me.btnRemoveFunction.Size = New System.Drawing.Size(25, 23)
  187.         Me.btnRemoveFunction.TabIndex = 11
  188.         Me.btnRemoveFunction.Text = "-"
  189.         Me.btnRemoveFunction.UseVisualStyleBackColor = True
  190.         '
  191.         'btnAddFunction
  192.         '
  193.         Me.btnAddFunction.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  194.         Me.btnAddFunction.Location = New System.Drawing.Point(253, 6)
  195.         Me.btnAddFunction.Name = "btnAddFunction"
  196.         Me.btnAddFunction.Size = New System.Drawing.Size(25, 23)
  197.         Me.btnAddFunction.TabIndex = 10
  198.         Me.btnAddFunction.Text = "+"
  199.         Me.btnAddFunction.UseVisualStyleBackColor = True
  200.         '
  201.         'txtFunctionDomain
  202.         '
  203.         Me.txtFunctionDomain.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
  204.                     Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  205.         Me.txtFunctionDomain.BackColor = System.Drawing.Color.LemonChiffon
  206.         Me.txtFunctionDomain.Location = New System.Drawing.Point(6, 471)
  207.         Me.txtFunctionDomain.Multiline = True
  208.         Me.txtFunctionDomain.Name = "txtFunctionDomain"
  209.         Me.txtFunctionDomain.Size = New System.Drawing.Size(272, 97)
  210.         Me.txtFunctionDomain.TabIndex = 9
  211.         Me.txtFunctionDomain.Text = "R"
  212.         '
  213.         'Label4
  214.         '
  215.         Me.Label4.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  216.         Me.Label4.AutoSize = True
  217.         Me.Label4.Location = New System.Drawing.Point(3, 455)
  218.         Me.Label4.Name = "Label4"
  219.         Me.Label4.Size = New System.Drawing.Size(48, 13)
  220.         Me.Label4.TabIndex = 8
  221.         Me.Label4.Text = "Dominio:"
  222.         '
  223.         'btnValidateDef
  224.         '
  225.         Me.btnValidateDef.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  226.         Me.btnValidateDef.Location = New System.Drawing.Point(177, 210)
  227.         Me.btnValidateDef.Name = "btnValidateDef"
  228.         Me.btnValidateDef.Size = New System.Drawing.Size(101, 23)
  229.         Me.btnValidateDef.TabIndex = 7
  230.         Me.btnValidateDef.Text = "Conferma"
  231.         Me.btnValidateDef.UseVisualStyleBackColor = True
  232.         '
  233.         'pnlColor
  234.         '
  235.         Me.pnlColor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  236.         Me.pnlColor.Cursor = System.Windows.Forms.Cursors.Hand
  237.         Me.pnlColor.Location = New System.Drawing.Point(90, 173)
  238.         Me.pnlColor.Name = "pnlColor"
  239.         Me.pnlColor.Size = New System.Drawing.Size(104, 20)
  240.         Me.pnlColor.TabIndex = 6
  241.         '
  242.         'Label3
  243.         '
  244.         Me.Label3.AutoSize = True
  245.         Me.Label3.Location = New System.Drawing.Point(3, 180)
  246.         Me.Label3.Name = "Label3"
  247.         Me.Label3.Size = New System.Drawing.Size(40, 13)
  248.         Me.Label3.TabIndex = 5
  249.         Me.Label3.Text = "Colore:"
  250.         '
  251.         'dgvFunctionDefinition
  252.         '
  253.         Me.dgvFunctionDefinition.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  254.                     Or System.Windows.Forms.AnchorStyles.Left) _
  255.                     Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  256.         Me.dgvFunctionDefinition.BackgroundColor = System.Drawing.Color.LemonChiffon
  257.         Me.dgvFunctionDefinition.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  258.         Me.dgvFunctionDefinition.Columns.AddRange(New System.Windows.Forms.DataGridViewColumn() {Me.Column1, Me.Column2})
  259.         Me.dgvFunctionDefinition.Location = New System.Drawing.Point(6, 239)
  260.         Me.dgvFunctionDefinition.Name = "dgvFunctionDefinition"
  261.         Me.dgvFunctionDefinition.Size = New System.Drawing.Size(272, 213)
  262.         Me.dgvFunctionDefinition.TabIndex = 4
  263.         '
  264.         'Column1
  265.         '
  266.         Me.Column1.HeaderText = "Condizione"
  267.         Me.Column1.Name = "Column1"
  268.         Me.Column1.Width = 70
  269.         '
  270.         'Column2
  271.         '
  272.         Me.Column2.HeaderText = "Funzione"
  273.         Me.Column2.Name = "Column2"
  274.         Me.Column2.Width = 150
  275.         '
  276.         'Label2
  277.         '
  278.         Me.Label2.AutoSize = True
  279.         Me.Label2.Location = New System.Drawing.Point(3, 223)
  280.         Me.Label2.Name = "Label2"
  281.         Me.Label2.Size = New System.Drawing.Size(62, 13)
  282.         Me.Label2.TabIndex = 3
  283.         Me.Label2.Text = "Definizione:"
  284.         '
  285.         'txtFunctionName
  286.         '
  287.         Me.txtFunctionName.Location = New System.Drawing.Point(90, 147)
  288.         Me.txtFunctionName.Name = "txtFunctionName"
  289.         Me.txtFunctionName.Size = New System.Drawing.Size(104, 20)
  290.         Me.txtFunctionName.TabIndex = 2
  291.         '
  292.         'Label1
  293.         '
  294.         Me.Label1.AutoSize = True
  295.         Me.Label1.Location = New System.Drawing.Point(3, 150)
  296.         Me.Label1.Name = "Label1"
  297.         Me.Label1.Size = New System.Drawing.Size(81, 13)
  298.         Me.Label1.TabIndex = 1
  299.         Me.Label1.Text = "Nome funzione:"
  300.         '
  301.         'lstFunctions
  302.         '
  303.         Me.lstFunctions.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  304.                     Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  305.         Me.lstFunctions.FormattingEnabled = True
  306.         Me.lstFunctions.IntegralHeight = False
  307.         Me.lstFunctions.Location = New System.Drawing.Point(6, 6)
  308.         Me.lstFunctions.Name = "lstFunctions"
  309.         Me.lstFunctions.Size = New System.Drawing.Size(241, 131)
  310.         Me.lstFunctions.TabIndex = 0
  311.         '
  312.         'TabPage3
  313.         '
  314.         Me.TabPage3.Controls.Add(Me.lblZeroFunction)
  315.         Me.TabPage3.Controls.Add(Me.lblZero)
  316.         Me.TabPage3.Controls.Add(Me.nudExpError)
  317.         Me.TabPage3.Controls.Add(Me.Label6)
  318.         Me.TabPage3.Controls.Add(Me.btnFindZero)
  319.         Me.TabPage3.Controls.Add(Me.txtZeroInterval)
  320.         Me.TabPage3.Controls.Add(Me.Label5)
  321.         Me.TabPage3.Location = New System.Drawing.Point(4, 22)
  322.         Me.TabPage3.Name = "TabPage3"
  323.         Me.TabPage3.Size = New System.Drawing.Size(284, 576)
  324.         Me.TabPage3.TabIndex = 2
  325.         Me.TabPage3.Text = "Zeri"
  326.         Me.TabPage3.UseVisualStyleBackColor = True
  327.         '
  328.         'lblZeroFunction
  329.         '
  330.         Me.lblZeroFunction.AutoSize = True
  331.         Me.lblZeroFunction.Location = New System.Drawing.Point(3, 100)
  332.         Me.lblZeroFunction.Name = "lblZeroFunction"
  333.         Me.lblZeroFunction.Size = New System.Drawing.Size(109, 13)
  334.         Me.lblZeroFunction.TabIndex = 6
  335.         Me.lblZeroFunction.Text = "Funzione selezionata:"
  336.         '
  337.         'lblZero
  338.         '
  339.         Me.lblZero.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  340.                     Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  341.         Me.lblZero.Location = New System.Drawing.Point(6, 170)
  342.         Me.lblZero.Name = "lblZero"
  343.         Me.lblZero.Size = New System.Drawing.Size(270, 29)
  344.         Me.lblZero.TabIndex = 5
  345.         Me.lblZero.Text = "x = 0"
  346.         Me.lblZero.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  347.         Me.lblZero.Visible = False
  348.         '
  349.         'nudExpError
  350.         '
  351.         Me.nudExpError.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  352.         Me.nudExpError.Location = New System.Drawing.Point(190, 65)
  353.         Me.nudExpError.Maximum = New Decimal(New Integer() {300, 0, 0, 0})
  354.         Me.nudExpError.Minimum = New Decimal(New Integer() {300, 0, 0, -2147483648})
  355.         Me.nudExpError.Name = "nudExpError"
  356.         Me.nudExpError.Size = New System.Drawing.Size(86, 20)
  357.         Me.nudExpError.TabIndex = 4
  358.         Me.nudExpError.Value = New Decimal(New Integer() {1, 0, 0, -2147483648})
  359.         '
  360.         'Label6
  361.         '
  362.         Me.Label6.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  363.         Me.Label6.AutoSize = True
  364.         Me.Label6.Location = New System.Drawing.Point(116, 67)
  365.         Me.Label6.Name = "Label6"
  366.         Me.Label6.Size = New System.Drawing.Size(68, 13)
  367.         Me.Label6.TabIndex = 3
  368.         Me.Label6.Text = "Errore:   10 ^"
  369.         '
  370.         'btnFindZero
  371.         '
  372.         Me.btnFindZero.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  373.         Me.btnFindZero.Location = New System.Drawing.Point(201, 131)
  374.         Me.btnFindZero.Name = "btnFindZero"
  375.         Me.btnFindZero.Size = New System.Drawing.Size(75, 23)
  376.         Me.btnFindZero.TabIndex = 2
  377.         Me.btnFindZero.Text = "Calcola"
  378.         Me.btnFindZero.UseVisualStyleBackColor = True
  379.         '
  380.         'txtZeroInterval
  381.         '
  382.         Me.txtZeroInterval.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  383.                     Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  384.         Me.txtZeroInterval.Location = New System.Drawing.Point(6, 39)
  385.         Me.txtZeroInterval.Name = "txtZeroInterval"
  386.         Me.txtZeroInterval.Size = New System.Drawing.Size(270, 20)
  387.         Me.txtZeroInterval.TabIndex = 1
  388.         '
  389.         'Label5
  390.         '
  391.         Me.Label5.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  392.                     Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  393.         Me.Label5.AutoSize = True
  394.         Me.Label5.Location = New System.Drawing.Point(3, 10)
  395.         Me.Label5.Name = "Label5"
  396.         Me.Label5.Size = New System.Drawing.Size(268, 26)
  397.         Me.Label5.TabIndex = 0
  398.         Me.Label5.Text = "Il programma può approssimare uno zero della funzione." & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "Scrivere l'intervallo in " & _
  399.             "cui cercare:"
  400.         '
  401.         'ColorDialog1
  402.         '
  403.         Me.ColorDialog1.AnyColor = True
  404.         '
  405.         'SaveDialog
  406.         '
  407.         Me.SaveDialog.Filter = "Bitmap|*.bmp|JPEG|*.jpg|PNG|*.png|GIF|*.gif"
  408.         '
  409.         'Form1
  410.         '
  411.         Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
  412.         Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  413.         Me.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center
  414.         Me.ClientSize = New System.Drawing.Size(810, 626)
  415.         Me.Controls.Add(Me.splitMain)
  416.         Me.Controls.Add(Me.strMainMenu)
  417.         Me.MainMenuStrip = Me.strMainMenu
  418.         Me.Name = "Form1"
  419.         Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
  420.         Me.Text = "MGraphing 2009"
  421.         Me.strMainMenu.ResumeLayout(False)
  422.         Me.strMainMenu.PerformLayout()
  423.         Me.splitMain.Panel1.ResumeLayout(False)
  424.         Me.splitMain.Panel2.ResumeLayout(False)
  425.         Me.splitMain.ResumeLayout(False)
  426.         CType(Me.imgGraph, System.ComponentModel.ISupportInitialize).EndInit()
  427.         Me.tabMain.ResumeLayout(False)
  428.         Me.TabPage1.ResumeLayout(False)
  429.         Me.TabPage2.ResumeLayout(False)
  430.         Me.TabPage2.PerformLayout()
  431.         CType(Me.dgvFunctionDefinition, System.ComponentModel.ISupportInitialize).EndInit()
  432.         Me.TabPage3.ResumeLayout(False)
  433.         Me.TabPage3.PerformLayout()
  434.         CType(Me.nudExpError, System.ComponentModel.ISupportInitialize).EndInit()
  435.         Me.ResumeLayout(False)
  436.         Me.PerformLayout()
  437.  
  438.     End Sub
  439.     Friend WithEvents strMainMenu As System.Windows.Forms.MenuStrip
  440.     Friend WithEvents strGraph As System.Windows.Forms.ToolStripMenuItem
  441.     Friend WithEvents strSaveAs As System.Windows.Forms.ToolStripMenuItem
  442.     Friend WithEvents splitMain As System.Windows.Forms.SplitContainer
  443.     Friend WithEvents imgGraph As System.Windows.Forms.PictureBox
  444.     Friend WithEvents tabMain As System.Windows.Forms.TabControl
  445.     Friend WithEvents TabPage1 As System.Windows.Forms.TabPage
  446.     Friend WithEvents pgDetails As System.Windows.Forms.PropertyGrid
  447.     Friend WithEvents TabPage2 As System.Windows.Forms.TabPage
  448.     Friend WithEvents Label2 As System.Windows.Forms.Label
  449.     Friend WithEvents txtFunctionName As System.Windows.Forms.TextBox
  450.     Friend WithEvents Label1 As System.Windows.Forms.Label
  451.     Friend WithEvents lstFunctions As System.Windows.Forms.ListBox
  452.     Friend WithEvents dgvFunctionDefinition As System.Windows.Forms.DataGridView
  453.     Friend WithEvents pnlColor As System.Windows.Forms.Panel
  454.     Friend WithEvents Label3 As System.Windows.Forms.Label
  455.     Friend WithEvents Column1 As System.Windows.Forms.DataGridViewTextBoxColumn
  456.     Friend WithEvents Column2 As System.Windows.Forms.DataGridViewTextBoxColumn
  457.     Friend WithEvents ColorDialog1 As System.Windows.Forms.ColorDialog
  458.     Friend WithEvents btnValidateDef As System.Windows.Forms.Button
  459.     Friend WithEvents strDraw As System.Windows.Forms.ToolStripMenuItem
  460.     Friend WithEvents txtFunctionDomain As System.Windows.Forms.TextBox
  461.     Friend WithEvents Label4 As System.Windows.Forms.Label
  462.     Friend WithEvents btnRemoveFunction As System.Windows.Forms.Button
  463.     Friend WithEvents btnAddFunction As System.Windows.Forms.Button
  464.     Friend WithEvents SaveDialog As System.Windows.Forms.SaveFileDialog
  465.     Friend WithEvents TabPage3 As System.Windows.Forms.TabPage
  466.     Friend WithEvents lblZero As System.Windows.Forms.Label
  467.     Friend WithEvents nudExpError As System.Windows.Forms.NumericUpDown
  468.     Friend WithEvents Label6 As System.Windows.Forms.Label
  469.     Friend WithEvents btnFindZero As System.Windows.Forms.Button
  470.     Friend WithEvents txtZeroInterval As System.Windows.Forms.TextBox
  471.     Friend WithEvents Label5 As System.Windows.Forms.Label
  472.     Friend WithEvents lblZeroFunction As System.Windows.Forms.Label
  473.  
  474. End Class