WIP: EDM Designer, create table

This commit is contained in:
Jonathan Jenne
2018-09-04 16:42:12 +02:00
parent 77c20440d8
commit 720b6955fd
3 changed files with 52 additions and 23 deletions

View File

@@ -23,7 +23,7 @@ Partial Class FrmNewTable
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.btnOK = New System.Windows.Forms.Button()
Me.TextBox1 = New System.Windows.Forms.TextBox()
Me.txtTablename = New System.Windows.Forms.TextBox()
Me.Label1 = New System.Windows.Forms.Label()
Me.SuspendLayout()
'
@@ -36,12 +36,12 @@ Partial Class FrmNewTable
Me.btnOK.Text = "OK"
Me.btnOK.UseVisualStyleBackColor = True
'
'TextBox1
'txtTablename
'
Me.TextBox1.Location = New System.Drawing.Point(12, 25)
Me.TextBox1.Name = "TextBox1"
Me.TextBox1.Size = New System.Drawing.Size(374, 20)
Me.TextBox1.TabIndex = 1
Me.txtTablename.Location = New System.Drawing.Point(12, 25)
Me.txtTablename.Name = "txtTablename"
Me.txtTablename.Size = New System.Drawing.Size(374, 20)
Me.txtTablename.TabIndex = 1
'
'Label1
'
@@ -58,7 +58,7 @@ Partial Class FrmNewTable
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(398, 98)
Me.Controls.Add(Me.Label1)
Me.Controls.Add(Me.TextBox1)
Me.Controls.Add(Me.txtTablename)
Me.Controls.Add(Me.btnOK)
Me.Name = "FrmNewTable"
Me.Text = "Neue Tabelle"
@@ -68,6 +68,6 @@ Partial Class FrmNewTable
End Sub
Friend WithEvents btnOK As Button
Friend WithEvents TextBox1 As TextBox
Friend WithEvents txtTablename As TextBox
Friend WithEvents Label1 As Label
End Class