ProgressForm.Designer.vb 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
  2. Partial Class ProgressForm
  3. Inherits System.Windows.Forms.Form
  4. 'Form overrides dispose to clean up the component list.
  5. <System.Diagnostics.DebuggerNonUserCode()> _
  6. Protected Overrides Sub Dispose(ByVal disposing As Boolean)
  7. Try
  8. If disposing AndAlso components IsNot Nothing Then
  9. components.Dispose()
  10. End If
  11. Finally
  12. MyBase.Dispose(disposing)
  13. End Try
  14. End Sub
  15. 'Required by the Windows Form Designer
  16. Private components As System.ComponentModel.IContainer
  17. 'NOTE: The following procedure is required by the Windows Form Designer
  18. 'It can be modified using the Windows Form Designer.
  19. 'Do not modify it using the code editor.
  20. <System.Diagnostics.DebuggerStepThrough()> _
  21. Private Sub InitializeComponent()
  22. Me.ProgressBar1 = New System.Windows.Forms.ProgressBar()
  23. Me.Label1 = New System.Windows.Forms.Label()
  24. Me.ProgressBar2 = New System.Windows.Forms.ProgressBar()
  25. Me.SuspendLayout()
  26. '
  27. 'ProgressBar1
  28. '
  29. Me.ProgressBar1.Location = New System.Drawing.Point(12, 35)
  30. Me.ProgressBar1.Name = "ProgressBar1"
  31. Me.ProgressBar1.Size = New System.Drawing.Size(260, 23)
  32. Me.ProgressBar1.TabIndex = 0
  33. '
  34. 'Label1
  35. '
  36. Me.Label1.Location = New System.Drawing.Point(10, 9)
  37. Me.Label1.Name = "Label1"
  38. Me.Label1.Size = New System.Drawing.Size(262, 23)
  39. Me.Label1.TabIndex = 1
  40. Me.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  41. '
  42. 'ProgressBar2
  43. '
  44. Me.ProgressBar2.Location = New System.Drawing.Point(13, 65)
  45. Me.ProgressBar2.Name = "ProgressBar2"
  46. Me.ProgressBar2.Size = New System.Drawing.Size(259, 23)
  47. Me.ProgressBar2.TabIndex = 2
  48. '
  49. 'Progress
  50. '
  51. Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
  52. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  53. Me.ClientSize = New System.Drawing.Size(284, 98)
  54. Me.Controls.Add(Me.ProgressBar2)
  55. Me.Controls.Add(Me.Label1)
  56. Me.Controls.Add(Me.ProgressBar1)
  57. Me.Name = "Progress"
  58. Me.Text = "Progress"
  59. Me.ResumeLayout(False)
  60. End Sub
  61. Friend WithEvents ProgressBar1 As System.Windows.Forms.ProgressBar
  62. Friend WithEvents Label1 As System.Windows.Forms.Label
  63. Friend WithEvents ProgressBar2 As System.Windows.Forms.ProgressBar
  64. End Class