jj: Work in Progress: Vector Fields / Lookup Field

This commit is contained in:
Jonathan Jenne
2018-08-07 16:14:14 +02:00
parent c5e59b617e
commit d352487f29
3 changed files with 128 additions and 15 deletions

View File

@@ -27,6 +27,7 @@ Partial Class frmLookupGrid
Me.Panel1 = New System.Windows.Forms.Panel()
Me.btnClear = New System.Windows.Forms.Button()
Me.btnOK = New System.Windows.Forms.Button()
Me.Button1 = New System.Windows.Forms.Button()
CType(Me.gridLookup, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.viewLookup, System.ComponentModel.ISupportInitialize).BeginInit()
Me.Panel1.SuspendLayout()
@@ -56,6 +57,7 @@ Partial Class frmLookupGrid
'
'Panel1
'
Me.Panel1.Controls.Add(Me.Button1)
Me.Panel1.Controls.Add(Me.btnClear)
Me.Panel1.Controls.Add(Me.btnOK)
Me.Panel1.Dock = System.Windows.Forms.DockStyle.Bottom
@@ -84,6 +86,15 @@ Partial Class frmLookupGrid
Me.btnOK.Text = "OK"
Me.btnOK.UseVisualStyleBackColor = True
'
'Button1
'
Me.Button1.Location = New System.Drawing.Point(100, 3)
Me.Button1.Name = "Button1"
Me.Button1.Size = New System.Drawing.Size(94, 23)
Me.Button1.TabIndex = 1
Me.Button1.Text = "RestoreSelect"
Me.Button1.UseVisualStyleBackColor = True
'
'frmLookupGrid
'
Me.AcceptButton = Me.btnOK
@@ -92,6 +103,7 @@ Partial Class frmLookupGrid
Me.ClientSize = New System.Drawing.Size(295, 269)
Me.Controls.Add(Me.gridLookup)
Me.Controls.Add(Me.Panel1)
Me.KeyPreview = True
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "frmLookupGrid"
@@ -109,4 +121,5 @@ Partial Class frmLookupGrid
Friend WithEvents Panel1 As Panel
Friend WithEvents btnOK As Button
Friend WithEvents btnClear As Button
Friend WithEvents Button1 As Button
End Class