Click here to Skip to main content
15,881,898 members
Articles / Programming Languages / Visual Basic

Mathemathics Framework

Rate me:
Please Sign up or sign in to vote.
4.76/5 (56 votes)
16 Sep 2008CPOL6 min read 75.2K   6.2K   171  
.NET Mathematical Framework
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class HScrollBar
    Inherits Controls.ScrollBar

    '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.btnLeft = New BV.Controls.Button
        Me.btnRight = New BV.Controls.Button
        Me.btnMiddle = New BV.Controls.Button
        Me.SuspendLayout()
        '
        'btnLeft
        '
        Me.btnLeft.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
                    Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
        Me.btnLeft.BtnState = System.Windows.Forms.ButtonState.Flat
        Me.btnLeft.Icon = Nothing
        Me.btnLeft.Location = New System.Drawing.Point(0, 0)
        Me.btnLeft.Name = "btnLeft"
        Me.btnLeft.Size = New System.Drawing.Size(22, 24)
        Me.btnLeft.Style = BV.Controls.Button.BtnStyle.TriangleLeft
        Me.btnLeft.TabIndex = 0
        Me.btnLeft.ToolTipTex = Nothing
        '
        'btnDown
        '
        Me.btnRight.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
                    Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.btnRight.BtnState = System.Windows.Forms.ButtonState.Flat
        Me.btnRight.Icon = Nothing
        Me.btnRight.Location = New System.Drawing.Point(130, 0)
        Me.btnRight.Name = "btnDown"
        Me.btnRight.Size = New System.Drawing.Size(22, 24)
        Me.btnRight.Style = BV.Controls.Button.BtnStyle.TriangleRight
        Me.btnRight.TabIndex = 1
        Me.btnRight.ToolTipTex = Nothing
        '
        'btnMiddle
        '
        Me.btnMiddle.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom), System.Windows.Forms.AnchorStyles)
        Me.btnMiddle.BtnState = System.Windows.Forms.ButtonState.Flat
        Me.btnMiddle.Icon = Nothing
        Me.btnMiddle.Location = New System.Drawing.Point(28, 0)
        Me.btnMiddle.Name = "btnMiddle"
        Me.btnMiddle.Size = New System.Drawing.Size(22, 24)
        Me.btnMiddle.Style = BV.Controls.Button.BtnStyle.Close
        Me.btnMiddle.TabIndex = 2
        Me.btnMiddle.ToolTipTex = Nothing
        '
        'HScrollBar
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
        Me.Controls.Add(Me.btnMiddle)
        Me.Controls.Add(Me.btnRight)
        Me.Controls.Add(Me.btnLeft)
        Me.Maximum = 100
        Me.Name = "HScrollBar"
        Me.Size = New System.Drawing.Size(152, 24)
        Me.SmallChange = 5.0!
        Me.LargeChange = 10.0!
        Me.ResumeLayout(False)

    End Sub
    Friend WithEvents btnLeft As BV.Controls.Button
    Friend WithEvents btnRight As BV.Controls.Button
    Friend WithEvents btnMiddle As BV.Controls.Button

End Class

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Engineer Universidad Tecnológica Nacional
Argentina Argentina
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions