_ Partial Class Frm_Upload Inherits System.Windows.Forms.Form 'Form은 Dispose를 재정의하여 구성 요소 목록을 정리합니다. _ 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 'Windows Form 디자이너에 필요합니다. Private components As System.ComponentModel.IContainer '참고: 다음 프로시저는 Windows Form 디자이너에 필요합니다. '수정하려면 Windows Form 디자이너를 사용하십시오. '코드 편집기를 사용하여 수정하지 마십시오. _ Private Sub InitializeComponent() Me.FpSpread1 = New FarPoint.Win.Spread.FpSpread() Me.FpSpread1_Sheet1 = New FarPoint.Win.Spread.SheetView() Me.Panel1 = New System.Windows.Forms.Panel() Me.Button2 = New System.Windows.Forms.Button() Me.Button1 = New System.Windows.Forms.Button() CType(Me.FpSpread1, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.FpSpread1_Sheet1, System.ComponentModel.ISupportInitialize).BeginInit() Me.Panel1.SuspendLayout() Me.SuspendLayout() ' 'FpSpread1 ' Me.FpSpread1.AccessibleDescription = "" Me.FpSpread1.Dock = System.Windows.Forms.DockStyle.Fill Me.FpSpread1.Location = New System.Drawing.Point(0, 49) Me.FpSpread1.Name = "FpSpread1" Me.FpSpread1.Sheets.AddRange(New FarPoint.Win.Spread.SheetView() {Me.FpSpread1_Sheet1}) Me.FpSpread1.Size = New System.Drawing.Size(760, 596) Me.FpSpread1.TabIndex = 0 ' 'FpSpread1_Sheet1 ' Me.FpSpread1_Sheet1.Reset() Me.FpSpread1_Sheet1.SheetName = "Sheet1" FpSpread1_Sheet1.ColumnCount = 5 FpSpread1_Sheet1.RowCount = 1 ' 'Panel1 ' Me.Panel1.Controls.Add(Me.Button2) Me.Panel1.Controls.Add(Me.Button1) Me.Panel1.Dock = System.Windows.Forms.DockStyle.Top Me.Panel1.Location = New System.Drawing.Point(0, 0) Me.Panel1.Name = "Panel1" Me.Panel1.Size = New System.Drawing.Size(760, 49) Me.Panel1.TabIndex = 1 ' 'Button2 ' Me.Button2.Location = New System.Drawing.Point(149, 6) Me.Button2.Name = "Button2" Me.Button2.Size = New System.Drawing.Size(137, 38) Me.Button2.TabIndex = 1 Me.Button2.Text = "저장하기" Me.Button2.UseVisualStyleBackColor = True ' 'Button1 ' Me.Button1.Location = New System.Drawing.Point(6, 6) Me.Button1.Name = "Button1" Me.Button1.Size = New System.Drawing.Size(137, 38) Me.Button1.TabIndex = 0 Me.Button1.Text = "새로고침" Me.Button1.UseVisualStyleBackColor = True ' 'Frm_Upload ' Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 12.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(760, 645) Me.Controls.Add(Me.FpSpread1) Me.Controls.Add(Me.Panel1) Me.Name = "Frm_Upload" Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.Text = "업로드자료" Me.WindowState = System.Windows.Forms.FormWindowState.Minimized CType(Me.FpSpread1, System.ComponentModel.ISupportInitialize).EndInit() CType(Me.FpSpread1_Sheet1, System.ComponentModel.ISupportInitialize).EndInit() Me.Panel1.ResumeLayout(False) Me.ResumeLayout(False) End Sub Friend WithEvents FpSpread1 As FarPoint.Win.Spread.FpSpread Friend WithEvents FpSpread1_Sheet1 As FarPoint.Win.Spread.SheetView Friend WithEvents Panel1 As System.Windows.Forms.Panel Friend WithEvents Button1 As System.Windows.Forms.Button Friend WithEvents Button2 As System.Windows.Forms.Button End Class