_ Partial Class ImpCtl Inherits System.Windows.Forms.UserControl 'UserControl은 Dispose를 재정의하여 구성 요소 목록을 정리합니다. _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) If disposing AndAlso components IsNot Nothing Then components.Dispose() End If MyBase.Dispose(disposing) End Sub 'Windows Form 디자이너에 필요합니다. Private components As System.ComponentModel.IContainer '참고: 다음 프로시저는 Windows Form 디자이너에 필요합니다. '수정하려면 Windows Form 디자이너를 사용하십시오. '코드 편집기를 사용하여 수정하지 마십시오. _ Private Sub InitializeComponent() Me.components = New System.ComponentModel.Container Me.TextBox2 = New System.Windows.Forms.TextBox Me.Label1 = New System.Windows.Forms.Label Me.TextBox1 = New System.Windows.Forms.TextBox Me.CheckBox1 = New System.Windows.Forms.CheckBox Me.ToolTip1 = New System.Windows.Forms.ToolTip(Me.components) Me.TableLayoutPanel1 = New System.Windows.Forms.TableLayoutPanel Me.ComboBox1 = New System.Windows.Forms.ComboBox Me.TableLayoutPanel1.SuspendLayout() Me.SuspendLayout() ' 'TextBox2 ' Me.TextBox2.BackColor = System.Drawing.Color.LightSlateGray Me.TextBox2.Dock = System.Windows.Forms.DockStyle.Fill Me.TextBox2.Location = New System.Drawing.Point(1, 126) Me.TextBox2.Margin = New System.Windows.Forms.Padding(0) Me.TextBox2.Name = "TextBox2" Me.TextBox2.Size = New System.Drawing.Size(89, 21) Me.TextBox2.TabIndex = 6 Me.TextBox2.TabStop = False Me.TextBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center ' 'Label1 ' Me.Label1.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ Or System.Windows.Forms.AnchorStyles.Left) _ Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.Label1.BackColor = System.Drawing.Color.White Me.Label1.Font = New System.Drawing.Font("굴림", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.Label1.Location = New System.Drawing.Point(1, 1) Me.Label1.Margin = New System.Windows.Forms.Padding(0) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(89, 82) Me.Label1.TabIndex = 5 Me.Label1.Text = "개체번호" Me.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter ' 'TextBox1 ' Me.TextBox1.Dock = System.Windows.Forms.DockStyle.Fill Me.TextBox1.Location = New System.Drawing.Point(1, 105) Me.TextBox1.Margin = New System.Windows.Forms.Padding(0) Me.TextBox1.Name = "TextBox1" Me.TextBox1.Size = New System.Drawing.Size(89, 21) Me.TextBox1.TabIndex = 4 Me.TextBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center ' 'CheckBox1 ' Me.CheckBox1.AutoSize = True Me.CheckBox1.Dock = System.Windows.Forms.DockStyle.Fill Me.CheckBox1.Location = New System.Drawing.Point(1, 147) Me.CheckBox1.Margin = New System.Windows.Forms.Padding(0) Me.CheckBox1.Name = "CheckBox1" Me.CheckBox1.Size = New System.Drawing.Size(89, 20) Me.CheckBox1.TabIndex = 7 Me.CheckBox1.TabStop = False Me.CheckBox1.Text = "빈값" Me.ToolTip1.SetToolTip(Me.CheckBox1, "선택이 됫을경우 선택된 모든개체의 값이 비어있을경우 데이터가져오기 대상에 제외합니다") Me.CheckBox1.UseVisualStyleBackColor = True ' 'TableLayoutPanel1 ' Me.TableLayoutPanel1.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.[Single] Me.TableLayoutPanel1.ColumnCount = 1 Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100.0!)) Me.TableLayoutPanel1.Controls.Add(Me.CheckBox1, 0, 4) Me.TableLayoutPanel1.Controls.Add(Me.Label1, 0, 0) Me.TableLayoutPanel1.Controls.Add(Me.TextBox2, 0, 3) Me.TableLayoutPanel1.Controls.Add(Me.TextBox1, 0, 2) Me.TableLayoutPanel1.Controls.Add(Me.ComboBox1, 0, 1) Me.TableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill Me.TableLayoutPanel1.Location = New System.Drawing.Point(0, 0) Me.TableLayoutPanel1.Name = "TableLayoutPanel1" Me.TableLayoutPanel1.RowCount = 5 Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100.0!)) Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20.0!)) Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20.0!)) Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20.0!)) Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20.0!)) Me.TableLayoutPanel1.Size = New System.Drawing.Size(91, 168) Me.TableLayoutPanel1.TabIndex = 8 ' 'ComboBox1 ' Me.ComboBox1.Dock = System.Windows.Forms.DockStyle.Fill Me.ComboBox1.FormattingEnabled = True Me.ComboBox1.Items.AddRange(New Object() {"문자", "숫자", "날짜"}) Me.ComboBox1.Location = New System.Drawing.Point(1, 84) Me.ComboBox1.Margin = New System.Windows.Forms.Padding(0) Me.ComboBox1.Name = "ComboBox1" Me.ComboBox1.Size = New System.Drawing.Size(89, 20) Me.ComboBox1.TabIndex = 8 ' 'ImpCtl ' Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 12.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.Controls.Add(Me.TableLayoutPanel1) Me.Name = "ImpCtl" Me.Size = New System.Drawing.Size(91, 168) Me.TableLayoutPanel1.ResumeLayout(False) Me.TableLayoutPanel1.PerformLayout() Me.ResumeLayout(False) End Sub Friend WithEvents TextBox2 As System.Windows.Forms.TextBox Friend WithEvents Label1 As System.Windows.Forms.Label Friend WithEvents TextBox1 As System.Windows.Forms.TextBox Friend WithEvents CheckBox1 As System.Windows.Forms.CheckBox Friend WithEvents ToolTip1 As System.Windows.Forms.ToolTip Friend WithEvents TableLayoutPanel1 As System.Windows.Forms.TableLayoutPanel Friend WithEvents ComboBox1 As System.Windows.Forms.ComboBox End Class