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