_ Partial Class Frm_ViewSetup 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.Label1 = New System.Windows.Forms.Label Me.Label2 = New System.Windows.Forms.Label Me.Label3 = New System.Windows.Forms.Label Me.tb_nulltext = New System.Windows.Forms.TextBox Me.tb_hangul = New System.Windows.Forms.TextBox Me.tb_nextrow = New System.Windows.Forms.TextBox Me.bt_ok = New System.Windows.Forms.Button Me.bt_cancel = New System.Windows.Forms.Button Me.tb_defstyleidx = New System.Windows.Forms.TextBox Me.Label4 = New System.Windows.Forms.Label Me.SuspendLayout() ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Location = New System.Drawing.Point(44, 27) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(393, 12) Me.Label1.TabIndex = 0 Me.Label1.Text = "데이터없이 엔터키를 눌렀을때 전줄의 값을 복사할 열이름을 입력하세요" ' 'Label2 ' Me.Label2.AutoSize = True Me.Label2.Location = New System.Drawing.Point(44, 74) Me.Label2.Name = "Label2" Me.Label2.Size = New System.Drawing.Size(409, 12) Me.Label2.TabIndex = 0 Me.Label2.Text = "해당 필드에 커서가 왓을때 입력형태를 한글로 지정할 열이름을 입력하세요" ' 'Label3 ' Me.Label3.AutoSize = True Me.Label3.Location = New System.Drawing.Point(44, 121) Me.Label3.Name = "Label3" Me.Label3.Size = New System.Drawing.Size(353, 12) Me.Label3.TabIndex = 0 Me.Label3.Text = "엔터키를 눌렀을때 다음줄로 커서를 이동할 열이름을 입력하세요" ' 'tb_nulltext ' Me.tb_nulltext.Location = New System.Drawing.Point(46, 43) Me.tb_nulltext.Name = "tb_nulltext" Me.tb_nulltext.Size = New System.Drawing.Size(699, 21) Me.tb_nulltext.TabIndex = 0 ' 'tb_hangul ' Me.tb_hangul.Location = New System.Drawing.Point(46, 89) Me.tb_hangul.Name = "tb_hangul" Me.tb_hangul.Size = New System.Drawing.Size(699, 21) Me.tb_hangul.TabIndex = 1 ' 'tb_nextrow ' Me.tb_nextrow.Location = New System.Drawing.Point(46, 136) Me.tb_nextrow.Name = "tb_nextrow" Me.tb_nextrow.Size = New System.Drawing.Size(699, 21) Me.tb_nextrow.TabIndex = 2 ' 'bt_ok ' Me.bt_ok.DialogResult = System.Windows.Forms.DialogResult.Cancel Me.bt_ok.Location = New System.Drawing.Point(46, 217) Me.bt_ok.Name = "bt_ok" Me.bt_ok.Size = New System.Drawing.Size(407, 33) Me.bt_ok.TabIndex = 4 Me.bt_ok.Text = "저장" Me.bt_ok.UseVisualStyleBackColor = True ' 'bt_cancel ' Me.bt_cancel.Location = New System.Drawing.Point(462, 217) Me.bt_cancel.Name = "bt_cancel" Me.bt_cancel.Size = New System.Drawing.Size(283, 33) Me.bt_cancel.TabIndex = 5 Me.bt_cancel.Text = "취소" Me.bt_cancel.UseVisualStyleBackColor = True ' 'tb_defstyleidx ' Me.tb_defstyleidx.Location = New System.Drawing.Point(46, 183) Me.tb_defstyleidx.Name = "tb_defstyleidx" Me.tb_defstyleidx.Size = New System.Drawing.Size(699, 21) Me.tb_defstyleidx.TabIndex = 3 Me.tb_defstyleidx.TextAlign = System.Windows.Forms.HorizontalAlignment.Center ' 'Label4 ' Me.Label4.AutoSize = True Me.Label4.Location = New System.Drawing.Point(44, 168) Me.Label4.Name = "Label4" Me.Label4.Size = New System.Drawing.Size(441, 12) Me.Label4.TabIndex = 6 Me.Label4.Text = "출력시 사용할 기본 스타일의 번호입니다. (번호는 위에서부터 0으로 시작합니다)" ' 'Frm_ViewSetup ' Me.AcceptButton = Me.bt_ok Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 12.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.CancelButton = Me.bt_ok Me.ClientSize = New System.Drawing.Size(787, 259) Me.Controls.Add(Me.tb_defstyleidx) Me.Controls.Add(Me.Label4) Me.Controls.Add(Me.bt_cancel) Me.Controls.Add(Me.bt_ok) Me.Controls.Add(Me.tb_nextrow) Me.Controls.Add(Me.tb_hangul) Me.Controls.Add(Me.tb_nulltext) Me.Controls.Add(Me.Label3) Me.Controls.Add(Me.Label2) Me.Controls.Add(Me.Label1) Me.Name = "Frm_ViewSetup" Me.Text = "뷰설정창" Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents Label1 As System.Windows.Forms.Label Friend WithEvents Label2 As System.Windows.Forms.Label Friend WithEvents Label3 As System.Windows.Forms.Label Friend WithEvents tb_nulltext As System.Windows.Forms.TextBox Friend WithEvents tb_hangul As System.Windows.Forms.TextBox Friend WithEvents tb_nextrow As System.Windows.Forms.TextBox Friend WithEvents bt_ok As System.Windows.Forms.Button Friend WithEvents bt_cancel As System.Windows.Forms.Button Friend WithEvents tb_defstyleidx As System.Windows.Forms.TextBox Friend WithEvents Label4 As System.Windows.Forms.Label End Class