Public Class Form1
Inherits System.Windows.Forms.Form
Public Sub New()
MyBase.New()
InitializeComponent()
End Sub
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub
Private components As System.ComponentModel.IContainer
Friend WithEvents Button1 As System.Windows.Forms.Button
Friend WithEvents txtVorname As System.Windows.Forms.TextBox
Friend WithEvents txtZuname As System.Windows.Forms.TextBox
Friend WithEvents Button2 As System.Windows.Forms.Button
Friend WithEvents Button3 As System.Windows.Forms.Button
Friend WithEvents Button4 As System.Windows.Forms.Button
Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents Label2 As System.Windows.Forms.Label
Friend WithEvents DataGrid1 As System.Windows.Forms.DataGrid
Friend WithEvents Button5 As System.Windows.Forms.Button
Friend WithEvents Button6 As System.Windows.Forms.Button
Friend WithEvents Button7 As System.Windows.Forms.Button
Friend WithEvents Button8 As System.Windows.Forms.Button
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
Me.Button1 = New System.Windows.Forms.Button
Me.txtVorname = New System.Windows.Forms.TextBox
Me.txtZuname = New System.Windows.Forms.TextBox
Me.Button2 = New System.Windows.Forms.Button
Me.Button3 = New System.Windows.Forms.Button
Me.Button4 = New System.Windows.Forms.Button
Me.Label1 = New System.Windows.Forms.Label
Me.Label2 = New System.Windows.Forms.Label
Me.DataGrid1 = New System.Windows.Forms.DataGrid
Me.Button5 = New System.Windows.Forms.Button
Me.Button6 = New System.Windows.Forms.Button
Me.Button7 = New System.Windows.Forms.Button
Me.Button8 = New System.Windows.Forms.Button
CType(Me.DataGrid1, System.ComponentModel.ISupportInitialize).BeginInit( _
)
Me.SuspendLayout()
Me.Button1.Location = New System.Drawing.Point(360, 240)
Me.Button1.Name = "Button1"
Me.Button1.RightToLeft = System.Windows.Forms.RightToLeft.Yes
Me.Button1.Size = New System.Drawing.Size(80, 32)
Me.Button1.TabIndex = 0
Me.Button1.Text = "Save"
Me.txtVorname.Location = New System.Drawing.Point(168, 176)
Me.txtVorname.Name = "txtVorname"
Me.txtVorname.Size = New System.Drawing.Size(360, 20)
Me.txtVorname.TabIndex = 1
Me.txtVorname.Text = ""
Me.txtZuname.Location = New System.Drawing.Point(168, 208)
Me.txtZuname.Name = "txtZuname"
Me.txtZuname.Size = New System.Drawing.Size(360, 20)
Me.txtZuname.TabIndex = 1
Me.txtZuname.Text = ""
Me.Button2.Location = New System.Drawing.Point(168, 240)
Me.Button2.Name = "Button2"
Me.Button2.Size = New System.Drawing.Size(88, 32)
Me.Button2.TabIndex = 5
Me.Button2.Text = "Refresh"
Me.Button3.Location = New System.Drawing.Point(424, 280)
Me.Button3.Name = "Button3"
Me.Button3.Size = New System.Drawing.Size(48, 24)
Me.Button3.TabIndex = 6
Me.Button3.Text = ">"
Me.Button4.Location = New System.Drawing.Point(224, 280)
Me.Button4.Name = "Button4"
Me.Button4.Size = New System.Drawing.Size(48, 24)
Me.Button4.TabIndex = 6
Me.Button4.Text = "<"
Me.Label1.Location = New System.Drawing.Point(16, 176)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(128, 16)
Me.Label1.TabIndex = 7
Me.Label1.Text = "Vorname:"
Me.Label2.Location = New System.Drawing.Point(16, 208)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(128, 16)
Me.Label2.TabIndex = 7
Me.Label2.Text = "Nachname:"
Me.DataGrid1.DataMember = ""
Me.DataGrid1.HeaderForeColor = System.Drawing.SystemColors.ControlText
Me.DataGrid1.Location = New System.Drawing.Point(16, 8)
Me.DataGrid1.Name = "DataGrid1"
Me.DataGrid1.Size = New System.Drawing.Size(512, 152)
Me.DataGrid1.TabIndex = 8
Me.Button5.Location = New System.Drawing.Point(168, 280)
Me.Button5.Name = "Button5"
Me.Button5.Size = New System.Drawing.Size(48, 24)
Me.Button5.TabIndex = 9
Me.Button5.Text = "|<"
Me.Button6.Location = New System.Drawing.Point(480, 280)
Me.Button6.Name = "Button6"
Me.Button6.Size = New System.Drawing.Size(48, 24) |