_ Partial Class FibonacciForm Inherits System.Windows.Forms.Form 'Form overrides dispose to clean up the component list. _ 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. _ Private Sub InitializeComponent() Me.NumericUpDown1 = New System.Windows.Forms.NumericUpDown() Me.NumericUpDown2 = New System.Windows.Forms.NumericUpDown() Me.StartAsyncButton = New System.Windows.Forms.Button() Me.CancelAsyncButton = New System.Windows.Forms.Button() Me.ResultLabel1 = New System.Windows.Forms.Label() Me.ResultLabel2 = New System.Windows.Forms.Label() Me.ResultLabel3 = New System.Windows.Forms.Label() Me.ProgressBar1 = New System.Windows.Forms.ProgressBar() Me.BackgroundWorker1 = New System.ComponentModel.BackgroundWorker() Me.Label1 = New System.Windows.Forms.Label() CType(Me.NumericUpDown1, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.NumericUpDown2, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'NumericUpDown1 ' Me.NumericUpDown1.Location = New System.Drawing.Point(16, 16) Me.NumericUpDown1.Maximum = New Decimal(New Integer() {91, 0, 0, 0}) Me.NumericUpDown1.Minimum = New Decimal(New Integer() {1, 0, 0, 0}) Me.NumericUpDown1.Name = "NumericUpDown1" Me.NumericUpDown1.Size = New System.Drawing.Size(80, 20) Me.NumericUpDown1.TabIndex = 0 Me.NumericUpDown1.Value = New Decimal(New Integer() {1, 0, 0, 0}) ' 'NumericUpDown2 ' Me.NumericUpDown2.Location = New System.Drawing.Point(80, 70) Me.NumericUpDown2.Minimum = New Decimal(New Integer() {1, 0, 0, 0}) Me.NumericUpDown2.Name = "NumericUpDown2" Me.NumericUpDown2.Size = New System.Drawing.Size(48, 20) Me.NumericUpDown2.TabIndex = 9 Me.NumericUpDown2.Value = New Decimal(New Integer() {1, 0, 0, 0}) ' 'StartAsyncButton ' Me.StartAsyncButton.Location = New System.Drawing.Point(16, 102) Me.StartAsyncButton.Name = "StartAsyncButton" Me.StartAsyncButton.Size = New System.Drawing.Size(80, 23) Me.StartAsyncButton.TabIndex = 1 Me.StartAsyncButton.Text = "Start Async" Me.StartAsyncButton.UseVisualStyleBackColor = True ' 'CancelAsyncButton ' Me.CancelAsyncButton.Location = New System.Drawing.Point(106, 102) Me.CancelAsyncButton.Name = "CancelAsyncButton" Me.CancelAsyncButton.Size = New System.Drawing.Size(80, 23) Me.CancelAsyncButton.TabIndex = 2 Me.CancelAsyncButton.Text = "End Async" Me.CancelAsyncButton.UseVisualStyleBackColor = True ' 'ResultLabel1 ' Me.ResultLabel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.ResultLabel1.Location = New System.Drawing.Point(112, 16) Me.ResultLabel1.Name = "ResultLabel1" Me.ResultLabel1.Size = New System.Drawing.Size(70, 23) Me.ResultLabel1.TabIndex = 4 Me.ResultLabel1.Text = "(no result)" Me.ResultLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter ' 'ResultLabel2 ' Me.ResultLabel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.ResultLabel2.Location = New System.Drawing.Point(200, 16) Me.ResultLabel2.Name = "ResultLabel2" Me.ResultLabel2.Size = New System.Drawing.Size(70, 23) Me.ResultLabel2.TabIndex = 5 Me.ResultLabel2.Text = "(no result)" Me.ResultLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter ' 'ResultLabel3 ' Me.ResultLabel3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.ResultLabel3.Location = New System.Drawing.Point(156, 70) Me.ResultLabel3.Name = "ResultLabel3" Me.ResultLabel3.Size = New System.Drawing.Size(30, 23) Me.ResultLabel3.TabIndex = 6 Me.ResultLabel3.Text = "0" Me.ResultLabel3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter ' 'ProgressBar1 ' Me.ProgressBar1.Location = New System.Drawing.Point(22, 47) Me.ProgressBar1.Name = "ProgressBar1" Me.ProgressBar1.Size = New System.Drawing.Size(245, 10) Me.ProgressBar1.TabIndex = 7 ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Location = New System.Drawing.Point(16, 72) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(33, 13) Me.Label1.TabIndex = 8 Me.Label1.Text = "Cycle" ' 'backgroundWorker1 ' Me.BackgroundWorker1.WorkerReportsProgress = True Me.BackgroundWorker1.WorkerSupportsCancellation = True ' 'FibonacciForm ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(280, 138) Me.Controls.Add(Me.Label1) Me.Controls.Add(Me.ProgressBar1) Me.Controls.Add(Me.ResultLabel3) Me.Controls.Add(Me.ResultLabel2) Me.Controls.Add(Me.ResultLabel1) Me.Controls.Add(Me.CancelAsyncButton) Me.Controls.Add(Me.StartAsyncButton) Me.Controls.Add(Me.NumericUpDown1) Me.Controls.Add(Me.NumericUpDown2) Me.Name = "FibonacciForm" Me.Text = "Fibonacci Calculator" CType(Me.NumericUpDown1, System.ComponentModel.ISupportInitialize).EndInit() CType(Me.NumericUpDown2, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents NumericUpDown1 As System.Windows.Forms.NumericUpDown Friend WithEvents NumericUpDown2 As System.Windows.Forms.NumericUpDown Friend WithEvents StartAsyncButton As System.Windows.Forms.Button Friend WithEvents CancelAsyncButton As System.Windows.Forms.Button Friend WithEvents ResultLabel1 As System.Windows.Forms.Label Friend WithEvents ResultLabel2 As System.Windows.Forms.Label Friend WithEvents ResultLabel3 As System.Windows.Forms.Label Friend WithEvents Label1 As System.Windows.Forms.Label Friend WithEvents ProgressBar1 As System.Windows.Forms.ProgressBar Friend WithEvents BackgroundWorker1 As System.ComponentModel.BackgroundWorker End Class