ZipUp-Form1.Designer.vb 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
  2. Partial Class Form1
  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.Label1 = New System.Windows.Forms.Label
  23. Me.Label2 = New System.Windows.Forms.Label
  24. Me.tbDirToZip = New System.Windows.Forms.TextBox
  25. Me.tbZipToCreate = New System.Windows.Forms.TextBox
  26. Me.btnDirBrowse = New System.Windows.Forms.Button
  27. Me.btnZipUp = New System.Windows.Forms.Button
  28. Me.ProgressBar1 = New System.Windows.Forms.ProgressBar
  29. Me.ProgressBar2 = New System.Windows.Forms.ProgressBar
  30. Me.lblStatus = New System.Windows.Forms.Label
  31. Me.btnCancel = New System.Windows.Forms.Button
  32. Me.SuspendLayout()
  33. '
  34. 'Label1
  35. '
  36. Me.Label1.AutoSize = True
  37. Me.Label1.Location = New System.Drawing.Point(11, 13)
  38. Me.Label1.Name = "Label1"
  39. Me.Label1.Size = New System.Drawing.Size(78, 13)
  40. Me.Label1.TabIndex = 0
  41. Me.Label1.Text = "directory to zip:"
  42. '
  43. 'Label2
  44. '
  45. Me.Label2.AutoSize = True
  46. Me.Label2.Location = New System.Drawing.Point(11, 39)
  47. Me.Label2.Name = "Label2"
  48. Me.Label2.Size = New System.Drawing.Size(84, 13)
  49. Me.Label2.TabIndex = 1
  50. Me.Label2.Text = "zip file to create:"
  51. '
  52. 'tbDirToZip
  53. '
  54. Me.tbDirToZip.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  55. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  56. Me.tbDirToZip.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest
  57. Me.tbDirToZip.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystemDirectories
  58. Me.tbDirToZip.Location = New System.Drawing.Point(107, 9)
  59. Me.tbDirToZip.Name = "tbDirToZip"
  60. Me.tbDirToZip.Size = New System.Drawing.Size(327, 20)
  61. Me.tbDirToZip.TabIndex = 2
  62. '
  63. 'tbZipToCreate
  64. '
  65. Me.tbZipToCreate.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  66. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  67. Me.tbZipToCreate.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest
  68. Me.tbZipToCreate.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystem
  69. Me.tbZipToCreate.Location = New System.Drawing.Point(106, 35)
  70. Me.tbZipToCreate.Name = "tbZipToCreate"
  71. Me.tbZipToCreate.Size = New System.Drawing.Size(327, 20)
  72. Me.tbZipToCreate.TabIndex = 6
  73. '
  74. 'btnDirBrowse
  75. '
  76. Me.btnDirBrowse.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  77. Me.btnDirBrowse.Location = New System.Drawing.Point(440, 10)
  78. Me.btnDirBrowse.Name = "btnDirBrowse"
  79. Me.btnDirBrowse.Size = New System.Drawing.Size(32, 19)
  80. Me.btnDirBrowse.TabIndex = 4
  81. Me.btnDirBrowse.Text = "..."
  82. Me.btnDirBrowse.UseVisualStyleBackColor = True
  83. '
  84. 'btnZipUp
  85. '
  86. Me.btnZipUp.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  87. Me.btnZipUp.Location = New System.Drawing.Point(377, 72)
  88. Me.btnZipUp.Name = "btnZipUp"
  89. Me.btnZipUp.Size = New System.Drawing.Size(94, 23)
  90. Me.btnZipUp.TabIndex = 0
  91. Me.btnZipUp.Text = "Zip It!"
  92. Me.btnZipUp.UseVisualStyleBackColor = True
  93. '
  94. 'ProgressBar1
  95. '
  96. Me.ProgressBar1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
  97. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  98. Me.ProgressBar1.Location = New System.Drawing.Point(12, 105)
  99. Me.ProgressBar1.Name = "ProgressBar1"
  100. Me.ProgressBar1.Size = New System.Drawing.Size(459, 13)
  101. Me.ProgressBar1.TabIndex = 6
  102. '
  103. 'ProgressBar2
  104. '
  105. Me.ProgressBar2.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
  106. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  107. Me.ProgressBar2.Location = New System.Drawing.Point(13, 124)
  108. Me.ProgressBar2.Name = "ProgressBar2"
  109. Me.ProgressBar2.Size = New System.Drawing.Size(459, 13)
  110. Me.ProgressBar2.TabIndex = 7
  111. '
  112. 'lblStatus
  113. '
  114. Me.lblStatus.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
  115. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  116. Me.lblStatus.AutoSize = True
  117. Me.lblStatus.Location = New System.Drawing.Point(11, 148)
  118. Me.lblStatus.Name = "lblStatus"
  119. Me.lblStatus.Size = New System.Drawing.Size(16, 13)
  120. Me.lblStatus.TabIndex = 8
  121. Me.lblStatus.Text = "..."
  122. '
  123. 'btnCancel
  124. '
  125. Me.btnCancel.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  126. Me.btnCancel.Enabled = False
  127. Me.btnCancel.Location = New System.Drawing.Point(277, 72)
  128. Me.btnCancel.Name = "btnCancel"
  129. Me.btnCancel.Size = New System.Drawing.Size(94, 23)
  130. Me.btnCancel.TabIndex = 8
  131. Me.btnCancel.Text = "Cancel"
  132. Me.btnCancel.UseVisualStyleBackColor = True
  133. '
  134. 'Form1
  135. '
  136. Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
  137. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  138. Me.ClientSize = New System.Drawing.Size(484, 172)
  139. Me.Controls.Add(Me.btnCancel)
  140. Me.Controls.Add(Me.lblStatus)
  141. Me.Controls.Add(Me.ProgressBar2)
  142. Me.Controls.Add(Me.ProgressBar1)
  143. Me.Controls.Add(Me.btnZipUp)
  144. Me.Controls.Add(Me.btnDirBrowse)
  145. Me.Controls.Add(Me.tbZipToCreate)
  146. Me.Controls.Add(Me.tbDirToZip)
  147. Me.Controls.Add(Me.Label2)
  148. Me.Controls.Add(Me.Label1)
  149. Me.MinimumSize = New System.Drawing.Size(500, 208)
  150. Me.Name = "Form1"
  151. Me.Text = "DotNetZip WinForms VB Zip Creator"
  152. Me.ResumeLayout(False)
  153. Me.PerformLayout()
  154. End Sub
  155. Friend WithEvents Label1 As System.Windows.Forms.Label
  156. Friend WithEvents Label2 As System.Windows.Forms.Label
  157. Friend WithEvents tbDirToZip As System.Windows.Forms.TextBox
  158. Friend WithEvents tbZipToCreate As System.Windows.Forms.TextBox
  159. Friend WithEvents btnDirBrowse As System.Windows.Forms.Button
  160. Friend WithEvents btnZipUp As System.Windows.Forms.Button
  161. Friend WithEvents ProgressBar1 As System.Windows.Forms.ProgressBar
  162. Friend WithEvents ProgressBar2 As System.Windows.Forms.ProgressBar
  163. Friend WithEvents lblStatus As System.Windows.Forms.Label
  164. Friend WithEvents btnCancel As System.Windows.Forms.Button
  165. End Class