Initial commit

This commit is contained in:
2020-10-21 10:44:38 +02:00
commit 039adbbadf
1125 changed files with 854026 additions and 0 deletions

View File

@@ -0,0 +1,62 @@
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class frmEditWhere
Inherits System.Windows.Forms.Form
'Das Formular überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen.
<System.Diagnostics.DebuggerNonUserCode()> _
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
'Wird vom Windows Form-Designer benötigt.
Private components As System.ComponentModel.IContainer
'Hinweis: Die folgende Prozedur ist für den Windows Form-Designer erforderlich.
'Das Bearbeiten ist mit dem Windows Form-Designer möglich.
'Das Bearbeiten mit dem Code-Editor ist nicht möglich.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmEditWhere))
Me.Editor = New System.Windows.Forms.RichTextBox
Me.Button1 = New System.Windows.Forms.Button
Me.SuspendLayout()
'
'Editor
'
Me.Editor.Location = New System.Drawing.Point(12, 12)
Me.Editor.Name = "Editor"
Me.Editor.Size = New System.Drawing.Size(646, 168)
Me.Editor.TabIndex = 0
Me.Editor.Text = ""
'
'Button1
'
Me.Button1.Location = New System.Drawing.Point(12, 186)
Me.Button1.Name = "Button1"
Me.Button1.Size = New System.Drawing.Size(75, 23)
Me.Button1.TabIndex = 1
Me.Button1.Text = "Speichern"
Me.Button1.UseVisualStyleBackColor = True
'
'frmEditWhere
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(670, 222)
Me.Controls.Add(Me.Button1)
Me.Controls.Add(Me.Editor)
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.Name = "frmEditWhere"
Me.Text = "Edit Where-Klausel"
Me.ResumeLayout(False)
End Sub
Friend WithEvents Editor As System.Windows.Forms.RichTextBox
Friend WithEvents Button1 As System.Windows.Forms.Button
End Class

View File

@@ -0,0 +1,373 @@
Imports System
Imports System.Data
Imports System.Data.SqlTypes
Imports System.Data.SqlClient
Namespace DB
Public Class clsPruefSchrittStatus
Inherits clsDBInteractionBase
#Region " Class Member Declarations "
Private m_bAktiv As SqlBoolean
Private m_daMutiert_am, m_daErstellt_am As SqlDateTime
Private m_iMutierer, m_iPruefschrittStatusNr As SqlInt32
Private m_sBezeichnung, m_sBeschreibung As SqlString
#End Region
Public Sub New()
' // Nothing for now.
End Sub
Overrides Public Function Insert() As Boolean
Dim scmCmdToExecute As SqlCommand = New SqlCommand()
scmCmdToExecute.CommandText = "dbo.[pr_PruefSchrittStatus_Insert]"
scmCmdToExecute.CommandType = CommandType.StoredProcedure
' // Use base class' connection object
scmCmdToExecute.Connection = m_scoMainConnection
Try
scmCmdToExecute.Parameters.Add(New SqlParameter("@iPruefschrittStatusNr", SqlDbType.Int, 4, ParameterDirection.Input, False, 10, 0, "", DataRowVersion.Proposed, m_iPruefschrittStatusNr))
scmCmdToExecute.Parameters.Add(New SqlParameter("@sBezeichnung", SqlDbType.VarChar, 255, ParameterDirection.Input, True, 0, 0, "", DataRowVersion.Proposed, m_sBezeichnung))
scmCmdToExecute.Parameters.Add(New SqlParameter("@sBeschreibung", SqlDbType.VarChar, 255, ParameterDirection.Input, True, 0, 0, "", DataRowVersion.Proposed, m_sBeschreibung))
scmCmdToExecute.Parameters.Add(New SqlParameter("@baktiv", SqlDbType.Bit, 1, ParameterDirection.Input, True, 0, 0, "", DataRowVersion.Proposed, m_bAktiv))
scmCmdToExecute.Parameters.Add(New SqlParameter("@daErstellt_am", SqlDbType.DateTime, 8, ParameterDirection.Input, True, 0, 0, "", DataRowVersion.Proposed, m_daErstellt_am))
scmCmdToExecute.Parameters.Add(New SqlParameter("@daMutiert_am", SqlDbType.DateTime, 8, ParameterDirection.Input, True, 0, 0, "", DataRowVersion.Proposed, m_daMutiert_am))
scmCmdToExecute.Parameters.Add(New SqlParameter("@iMutierer", SqlDbType.Int, 4, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, m_iMutierer))
scmCmdToExecute.Parameters.Add(new SqlParameter("@iErrorCode", SqlDbType.Int, 4, ParameterDirection.Output, True, 10, 0, "", DataRowVersion.Proposed, m_iErrorCode))
If m_bMainConnectionIsCreatedLocal Then
' // Open connection.
m_scoMainConnection.Open()
Else
If m_cpMainConnectionProvider.bIsTransactionPending Then
scmCmdToExecute.Transaction = m_cpMainConnectionProvider.stCurrentTransaction
End If
End If
' // Execute query.
m_iRowsAffected = scmCmdToExecute.ExecuteNonQuery()
m_iErrorCode = New SqlInt32(CType(scmCmdToExecute.Parameters.Item("@iErrorCode").Value, SqlInt32))
If Not m_iErrorCode.Equals(New SqlInt32(LLBLError.AllOk)) Then
' // Throw error.
Throw New Exception("Stored Procedure 'pr_PruefSchrittStatus_Insert' reported the ErrorCode: " & m_iErrorCode.ToString())
End If
Return True
Catch ex As Exception
' // some error occured. Bubble it to caller and encapsulate Exception object
Throw New Exception("clsPruefSchrittStatus::Insert::Error occured.", ex)
Finally
If m_bMainConnectionIsCreatedLocal Then
' // Close connection.
m_scoMainConnection.Close()
End If
scmCmdToExecute.Dispose()
End Try
End Function
Overrides Public Function Update() As Boolean
Dim scmCmdToExecute As SqlCommand = New SqlCommand()
scmCmdToExecute.CommandText = "dbo.[pr_PruefSchrittStatus_Update]"
scmCmdToExecute.CommandType = CommandType.StoredProcedure
' // Use base class' connection object
scmCmdToExecute.Connection = m_scoMainConnection
Try
scmCmdToExecute.Parameters.Add(New SqlParameter("@iPruefschrittStatusNr", SqlDbType.Int, 4, ParameterDirection.Input, False, 10, 0, "", DataRowVersion.Proposed, m_iPruefschrittStatusNr))
scmCmdToExecute.Parameters.Add(New SqlParameter("@sBezeichnung", SqlDbType.VarChar, 255, ParameterDirection.Input, True, 0, 0, "", DataRowVersion.Proposed, m_sBezeichnung))
scmCmdToExecute.Parameters.Add(New SqlParameter("@sBeschreibung", SqlDbType.VarChar, 255, ParameterDirection.Input, True, 0, 0, "", DataRowVersion.Proposed, m_sBeschreibung))
scmCmdToExecute.Parameters.Add(New SqlParameter("@baktiv", SqlDbType.Bit, 1, ParameterDirection.Input, True, 0, 0, "", DataRowVersion.Proposed, m_bAktiv))
scmCmdToExecute.Parameters.Add(New SqlParameter("@daErstellt_am", SqlDbType.DateTime, 8, ParameterDirection.Input, True, 0, 0, "", DataRowVersion.Proposed, m_daErstellt_am))
scmCmdToExecute.Parameters.Add(New SqlParameter("@daMutiert_am", SqlDbType.DateTime, 8, ParameterDirection.Input, True, 0, 0, "", DataRowVersion.Proposed, m_daMutiert_am))
scmCmdToExecute.Parameters.Add(New SqlParameter("@iMutierer", SqlDbType.Int, 4, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, m_iMutierer))
scmCmdToExecute.Parameters.Add(new SqlParameter("@iErrorCode", SqlDbType.Int, 4, ParameterDirection.Output, True, 10, 0, "", DataRowVersion.Proposed, m_iErrorCode))
If m_bMainConnectionIsCreatedLocal Then
' // Open connection.
m_scoMainConnection.Open()
Else
If m_cpMainConnectionProvider.bIsTransactionPending Then
scmCmdToExecute.Transaction = m_cpMainConnectionProvider.stCurrentTransaction
End If
End If
' // Execute query.
m_iRowsAffected = scmCmdToExecute.ExecuteNonQuery()
m_iErrorCode = New SqlInt32(CType(scmCmdToExecute.Parameters.Item("@iErrorCode").Value, SqlInt32))
If Not m_iErrorCode.Equals(New SqlInt32(LLBLError.AllOk)) Then
' // Throw error.
Throw New Exception("Stored Procedure 'pr_PruefSchrittStatus_Update' reported the ErrorCode: " & m_iErrorCode.ToString())
End If
Return True
Catch ex As Exception
' // some error occured. Bubble it to caller and encapsulate Exception object
Throw New Exception("clsPruefSchrittStatus::Update::Error occured.", ex)
Finally
If m_bMainConnectionIsCreatedLocal Then
' // Close connection.
m_scoMainConnection.Close()
End If
scmCmdToExecute.Dispose()
End Try
End Function
Overrides Public Function Delete() As Boolean
Dim scmCmdToExecute As SqlCommand = New SqlCommand()
scmCmdToExecute.CommandText = "dbo.[pr_PruefSchrittStatus_Delete]"
scmCmdToExecute.CommandType = CommandType.StoredProcedure
' // Use base class' connection object
scmCmdToExecute.Connection = m_scoMainConnection
Try
scmCmdToExecute.Parameters.Add(New SqlParameter("@iPruefschrittStatusNr", SqlDbType.Int, 4, ParameterDirection.Input, False, 10, 0, "", DataRowVersion.Proposed, m_iPruefschrittStatusNr))
scmCmdToExecute.Parameters.Add(new SqlParameter("@iErrorCode", SqlDbType.Int, 4, ParameterDirection.Output, True, 10, 0, "", DataRowVersion.Proposed, m_iErrorCode))
If m_bMainConnectionIsCreatedLocal Then
' // Open connection.
m_scoMainConnection.Open()
Else
If m_cpMainConnectionProvider.bIsTransactionPending Then
scmCmdToExecute.Transaction = m_cpMainConnectionProvider.stCurrentTransaction
End If
End If
' // Execute query.
m_iRowsAffected = scmCmdToExecute.ExecuteNonQuery()
m_iErrorCode = New SqlInt32(CType(scmCmdToExecute.Parameters.Item("@iErrorCode").Value, SqlInt32))
If Not m_iErrorCode.Equals(New SqlInt32(LLBLError.AllOk)) Then
' // Throw error.
Throw New Exception("Stored Procedure 'pr_PruefSchrittStatus_Delete' reported the ErrorCode: " & m_iErrorCode.ToString())
End If
Return True
Catch ex As Exception
' // some error occured. Bubble it to caller and encapsulate Exception object
Throw New Exception("clsPruefSchrittStatus::Delete::Error occured.", ex)
Finally
If m_bMainConnectionIsCreatedLocal Then
' // Close connection.
m_scoMainConnection.Close()
End If
scmCmdToExecute.Dispose()
End Try
End Function
Overrides Public Function SelectOne() As DataTable
Dim scmCmdToExecute As SqlCommand = New SqlCommand()
scmCmdToExecute.CommandText = "dbo.[pr_PruefSchrittStatus_SelectOne]"
scmCmdToExecute.CommandType = CommandType.StoredProcedure
Dim dtToReturn As DataTable = new DataTable("PruefSchrittStatus")
Dim sdaAdapter As SqlDataAdapter = new SqlDataAdapter(scmCmdToExecute)
' // Use base class' connection object
scmCmdToExecute.Connection = m_scoMainConnection
Try
scmCmdToExecute.Parameters.Add(new SqlParameter("@iPruefschrittStatusNr", SqlDbType.Int, 4, ParameterDirection.Input, False, 10, 0, "", DataRowVersion.Proposed, m_iPruefschrittStatusNr))
scmCmdToExecute.Parameters.Add(new SqlParameter("@iErrorCode", SqlDbType.Int, 4, ParameterDirection.Output, True, 10, 0, "", DataRowVersion.Proposed, m_iErrorCode))
If m_bMainConnectionIsCreatedLocal Then
' // Open connection.
m_scoMainConnection.Open()
Else
If m_cpMainConnectionProvider.bIsTransactionPending Then
scmCmdToExecute.Transaction = m_cpMainConnectionProvider.stCurrentTransaction
End If
End If
' // Execute query.
sdaAdapter.Fill(dtToReturn)
m_iErrorCode = New SqlInt32(CType(scmCmdToExecute.Parameters.Item("@iErrorCode").Value, SqlInt32))
If Not m_iErrorCode.Equals(New SqlInt32(LLBLError.AllOk)) Then
' // Throw error.
Throw New Exception("Stored Procedure 'pr_PruefSchrittStatus_SelectOne' reported the ErrorCode: " & m_iErrorCode.ToString())
End If
If dtToReturn.Rows.Count > 0 Then
m_iPruefschrittStatusNr = New SqlInt32(CType(dtToReturn.Rows(0)("PruefschrittStatusNr"), Integer))
If dtToReturn.Rows(0)("Bezeichnung") Is System.DBNull.Value Then
m_sBezeichnung = SqlString.Null
Else
m_sBezeichnung = New SqlString(CType(dtToReturn.Rows(0)("Bezeichnung"), String))
End If
If dtToReturn.Rows(0)("Beschreibung") Is System.DBNull.Value Then
m_sBeschreibung = SqlString.Null
Else
m_sBeschreibung = New SqlString(CType(dtToReturn.Rows(0)("Beschreibung"), String))
End If
If dtToReturn.Rows(0)("aktiv") Is System.DBNull.Value Then
m_bAktiv = SqlBoolean.Null
Else
m_bAktiv = New SqlBoolean(CType(dtToReturn.Rows(0)("aktiv"), Boolean))
End If
If dtToReturn.Rows(0)("Erstellt_am") Is System.DBNull.Value Then
m_daErstellt_am = SqlDateTime.Null
Else
m_daErstellt_am = New SqlDateTime(CType(dtToReturn.Rows(0)("Erstellt_am"), Date))
End If
If dtToReturn.Rows(0)("Mutiert_am") Is System.DBNull.Value Then
m_daMutiert_am = SqlDateTime.Null
Else
m_daMutiert_am = New SqlDateTime(CType(dtToReturn.Rows(0)("Mutiert_am"), Date))
End If
If dtToReturn.Rows(0)("Mutierer") Is System.DBNull.Value Then
m_iMutierer = SqlInt32.Null
Else
m_iMutierer = New SqlInt32(CType(dtToReturn.Rows(0)("Mutierer"), Integer))
End If
End If
Return dtToReturn
Catch ex As Exception
' // some error occured. Bubble it to caller and encapsulate Exception object
Throw New Exception("clsPruefSchrittStatus::SelectOne::Error occured.", ex)
Finally
If m_bMainConnectionIsCreatedLocal Then
' // Close connection.
m_scoMainConnection.Close()
End If
scmCmdToExecute.Dispose()
sdaAdapter.Dispose()
End Try
End Function
Overrides Public Function SelectAll() As DataTable
Dim scmCmdToExecute As SqlCommand = New SqlCommand()
scmCmdToExecute.CommandText = "dbo.[pr_PruefSchrittStatus_SelectAll]"
scmCmdToExecute.CommandType = CommandType.StoredProcedure
Dim dtToReturn As DataTable = new DataTable("PruefSchrittStatus")
Dim sdaAdapter As SqlDataAdapter = new SqlDataAdapter(scmCmdToExecute)
' // Use base class' connection object
scmCmdToExecute.Connection = m_scoMainConnection
Try
scmCmdToExecute.Parameters.Add(new SqlParameter("@iErrorCode", SqlDbType.Int, 4, ParameterDirection.Output, True, 10, 0, "", DataRowVersion.Proposed, m_iErrorCode))
If m_bMainConnectionIsCreatedLocal Then
' // Open connection.
m_scoMainConnection.Open()
Else
If m_cpMainConnectionProvider.bIsTransactionPending Then
scmCmdToExecute.Transaction = m_cpMainConnectionProvider.stCurrentTransaction
End If
End If
' // Execute query.
sdaAdapter.Fill(dtToReturn)
m_iErrorCode = New SqlInt32(CType(scmCmdToExecute.Parameters.Item("@iErrorCode").Value, SqlInt32))
If Not m_iErrorCode.Equals(New SqlInt32(LLBLError.AllOk)) Then
' // Throw error.
Throw New Exception("Stored Procedure 'pr_PruefSchrittStatus_SelectAll' reported the ErrorCode: " & m_iErrorCode.ToString())
End If
Return dtToReturn
Catch ex As Exception
' // some error occured. Bubble it to caller and encapsulate Exception object
Throw New Exception("clsPruefSchrittStatus::SelectAll::Error occured.", ex)
Finally
If m_bMainConnectionIsCreatedLocal Then
' // Close connection.
m_scoMainConnection.Close()
End If
scmCmdToExecute.Dispose()
sdaAdapter.Dispose()
End Try
End Function
#Region " Class Property Declarations "
Public Property [iPruefschrittStatusNr]() As SqlInt32
Get
Return m_iPruefschrittStatusNr
End Get
Set(ByVal Value As SqlInt32)
Dim iPruefschrittStatusNrTmp As SqlInt32 = Value
If iPruefschrittStatusNrTmp.IsNull Then
Throw New ArgumentOutOfRangeException("iPruefschrittStatusNr", "iPruefschrittStatusNr can't be NULL")
End If
m_iPruefschrittStatusNr = Value
End Set
End Property
Public Property [sBezeichnung]() As SqlString
Get
Return m_sBezeichnung
End Get
Set(ByVal Value As SqlString)
m_sBezeichnung = Value
End Set
End Property
Public Property [sBeschreibung]() As SqlString
Get
Return m_sBeschreibung
End Get
Set(ByVal Value As SqlString)
m_sBeschreibung = Value
End Set
End Property
Public Property [bAktiv]() As SqlBoolean
Get
Return m_bAktiv
End Get
Set(ByVal Value As SqlBoolean)
m_bAktiv = Value
End Set
End Property
Public Property [daErstellt_am]() As SqlDateTime
Get
Return m_daErstellt_am
End Get
Set(ByVal Value As SqlDateTime)
m_daErstellt_am = Value
End Set
End Property
Public Property [daMutiert_am]() As SqlDateTime
Get
Return m_daMutiert_am
End Get
Set(ByVal Value As SqlDateTime)
m_daMutiert_am = Value
End Set
End Property
Public Property [iMutierer]() As SqlInt32
Get
Return m_iMutierer
End Get
Set(ByVal Value As SqlInt32)
m_iMutierer = Value
End Set
End Property
#End Region
End Class
End Namespace

View File

@@ -0,0 +1,995 @@
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class frmMassnahmeplanDetail
Inherits System.Windows.Forms.Form
'Das Formular überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen.
<System.Diagnostics.DebuggerNonUserCode()> _
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
'Wird vom Windows Form-Designer benötigt.
Private components As System.ComponentModel.IContainer
'Hinweis: Die folgende Prozedur ist für den Windows Form-Designer erforderlich.
'Das Bearbeiten ist mit dem Windows Form-Designer möglich.
'Das Bearbeiten mit dem Code-Editor ist nicht möglich.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmMassnahmeplanDetail))
Me.ToolStrip1 = New System.Windows.Forms.ToolStrip()
Me.TSBtnQuit = New System.Windows.Forms.ToolStripButton()
Me.TSBtnSave = New System.Windows.Forms.ToolStripButton()
Me.ToolStripButton1 = New System.Windows.Forms.ToolStripButton()
Me.MenuStrip1 = New System.Windows.Forms.MenuStrip()
Me.DateiToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.BeendenToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.NeuAnmeldenToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.grpPruefgegenstand = New System.Windows.Forms.GroupBox()
Me.GrpStruktur = New System.Windows.Forms.GroupBox()
Me.TreeStruktur = New DevComponents.AdvTree.AdvTree()
Me.ImageList1 = New System.Windows.Forms.ImageList(Me.components)
Me.Node1 = New DevComponents.AdvTree.Node()
Me.NodeConnector1 = New DevComponents.AdvTree.NodeConnector()
Me.ElementStyle1 = New DevComponents.DotNetBar.ElementStyle()
Me.ToolStripTree = New System.Windows.Forms.ToolStrip()
Me.tslabelFilter = New System.Windows.Forms.ToolStripLabel()
Me.tsCbxFilter = New System.Windows.Forms.ToolStripComboBox()
Me.ToolStripSeparator1 = New System.Windows.Forms.ToolStripSeparator()
Me.lblSuche = New System.Windows.Forms.ToolStripLabel()
Me.tstxtSuche = New System.Windows.Forms.ToolStripTextBox()
Me.TSBtnSuche = New System.Windows.Forms.ToolStripButton()
Me.TSBtnFilterAufheben = New System.Windows.Forms.ToolStripButton()
Me.TSBtnFirst = New System.Windows.Forms.ToolStripButton()
Me.TSBtnPrevious = New System.Windows.Forms.ToolStripButton()
Me.TSBtnNext = New System.Windows.Forms.ToolStripButton()
Me.TSBtnLast = New System.Windows.Forms.ToolStripButton()
Me.txtHilfsmittel = New System.Windows.Forms.TextBox()
Me.lblHilfsmittel = New System.Windows.Forms.Label()
Me.txtBezeichnung = New System.Windows.Forms.TextBox()
Me.lblBezeichnung = New System.Windows.Forms.Label()
Me.lblKontrollaktivität = New System.Windows.Forms.Label()
Me.txtBeschreibung = New System.Windows.Forms.TextBox()
Me.lblBeschreibung = New System.Windows.Forms.Label()
Me.lblEreignisse2 = New System.Windows.Forms.Label()
Me.lblMassnahmen2 = New System.Windows.Forms.Label()
Me.txtEreignisse = New System.Windows.Forms.TextBox()
Me.lblEreignisse = New System.Windows.Forms.Label()
Me.txtMassnahmen = New System.Windows.Forms.TextBox()
Me.lblMassnahmen1 = New System.Windows.Forms.Label()
Me.txtPruefgegenstand = New System.Windows.Forms.TextBox()
Me.lblPruefgegenstand = New System.Windows.Forms.Label()
Me.cbAktiv = New System.Windows.Forms.CheckBox()
Me.lblAktiv = New System.Windows.Forms.Label()
Me.txtMutierer = New System.Windows.Forms.TextBox()
Me.txtMutiertam = New System.Windows.Forms.TextBox()
Me.txtErstelltam = New System.Windows.Forms.TextBox()
Me.lblMutierer = New System.Windows.Forms.Label()
Me.lblErstelltam = New System.Windows.Forms.Label()
Me.lblMutiertam = New System.Windows.Forms.Label()
Me.GrpLeft = New System.Windows.Forms.GroupBox()
Me.GrpPlanung = New System.Windows.Forms.GroupBox()
Me.cbboxTerminierung = New System.Windows.Forms.ComboBox()
Me.lblTerminierung = New System.Windows.Forms.Label()
Me.dtGueltigBis = New System.Windows.Forms.DateTimePicker()
Me.lblGueltigBis = New System.Windows.Forms.Label()
Me.dtErstmalsam = New System.Windows.Forms.DateTimePicker()
Me.Label2 = New System.Windows.Forms.Label()
Me.cbboxZeitpunkt = New System.Windows.Forms.ComboBox()
Me.lblPrioritaet = New System.Windows.Forms.Label()
Me.lblZeitpunkt = New System.Windows.Forms.Label()
Me.cbboxPrioritaet = New System.Windows.Forms.ComboBox()
Me.lblPeriodizitaet = New System.Windows.Forms.Label()
Me.cbboxPeriodizitaet = New System.Windows.Forms.ComboBox()
Me.GrpVerantwortung = New System.Windows.Forms.GroupBox()
Me.cbboxVerantwortungISI = New System.Windows.Forms.ComboBox()
Me.cbboxVerantwortlich = New System.Windows.Forms.ComboBox()
Me.Label1 = New System.Windows.Forms.Label()
Me.lblVerantwortlich = New System.Windows.Forms.Label()
Me.GrpDefinitionZuordnung = New System.Windows.Forms.GroupBox()
Me.TreeZuordnung = New DevComponents.AdvTree.AdvTree()
Me.ctxMenuZurodnung = New System.Windows.Forms.ContextMenuStrip(Me.components)
Me.EintragBearbeitenToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.NeuerEintragHinzufügenToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.Node2 = New DevComponents.AdvTree.Node()
Me.NodeConnector2 = New DevComponents.AdvTree.NodeConnector()
Me.ElementStyle2 = New DevComponents.DotNetBar.ElementStyle()
Me.btnNeueZuordnung = New System.Windows.Forms.Button()
Me.Panel1 = New System.Windows.Forms.Panel()
Me.GroupBox1 = New System.Windows.Forms.GroupBox()
Me.DokumenteAllgemein = New ThemenDokumente.Dokumente()
Me.ToolStrip1.SuspendLayout()
Me.MenuStrip1.SuspendLayout()
Me.grpPruefgegenstand.SuspendLayout()
Me.GrpStruktur.SuspendLayout()
CType(Me.TreeStruktur, System.ComponentModel.ISupportInitialize).BeginInit()
Me.ToolStripTree.SuspendLayout()
Me.GrpLeft.SuspendLayout()
Me.GrpPlanung.SuspendLayout()
Me.GrpVerantwortung.SuspendLayout()
Me.GrpDefinitionZuordnung.SuspendLayout()
CType(Me.TreeZuordnung, System.ComponentModel.ISupportInitialize).BeginInit()
Me.ctxMenuZurodnung.SuspendLayout()
Me.Panel1.SuspendLayout()
Me.GroupBox1.SuspendLayout()
Me.SuspendLayout()
'
'ToolStrip1
'
Me.ToolStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.TSBtnQuit, Me.TSBtnSave, Me.ToolStripButton1})
Me.ToolStrip1.Location = New System.Drawing.Point(0, 24)
Me.ToolStrip1.Name = "ToolStrip1"
Me.ToolStrip1.Size = New System.Drawing.Size(958, 25)
Me.ToolStrip1.TabIndex = 10
Me.ToolStrip1.Text = "ToolStrip1"
'
'TSBtnQuit
'
Me.TSBtnQuit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.TSBtnQuit.Image = CType(resources.GetObject("TSBtnQuit.Image"), System.Drawing.Image)
Me.TSBtnQuit.ImageTransparentColor = System.Drawing.Color.Magenta
Me.TSBtnQuit.Name = "TSBtnQuit"
Me.TSBtnQuit.Size = New System.Drawing.Size(23, 22)
Me.TSBtnQuit.Text = "ToolStripButton1"
Me.TSBtnQuit.ToolTipText = "Anwendung beenden"
'
'TSBtnSave
'
Me.TSBtnSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.TSBtnSave.Image = CType(resources.GetObject("TSBtnSave.Image"), System.Drawing.Image)
Me.TSBtnSave.ImageTransparentColor = System.Drawing.Color.Magenta
Me.TSBtnSave.Name = "TSBtnSave"
Me.TSBtnSave.Size = New System.Drawing.Size(23, 22)
Me.TSBtnSave.Text = "Speichern"
'
'ToolStripButton1
'
Me.ToolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.ToolStripButton1.Image = CType(resources.GetObject("ToolStripButton1.Image"), System.Drawing.Image)
Me.ToolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta
Me.ToolStripButton1.Name = "ToolStripButton1"
Me.ToolStripButton1.Size = New System.Drawing.Size(23, 22)
Me.ToolStripButton1.Text = "ToolStripButton1"
'
'MenuStrip1
'
Me.MenuStrip1.ImageScalingSize = New System.Drawing.Size(32, 32)
Me.MenuStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.DateiToolStripMenuItem})
Me.MenuStrip1.Location = New System.Drawing.Point(0, 0)
Me.MenuStrip1.Name = "MenuStrip1"
Me.MenuStrip1.Size = New System.Drawing.Size(958, 24)
Me.MenuStrip1.TabIndex = 9
Me.MenuStrip1.Text = "MenuStrip1"
'
'DateiToolStripMenuItem
'
Me.DateiToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.BeendenToolStripMenuItem, Me.NeuAnmeldenToolStripMenuItem})
Me.DateiToolStripMenuItem.Name = "DateiToolStripMenuItem"
Me.DateiToolStripMenuItem.Size = New System.Drawing.Size(46, 20)
Me.DateiToolStripMenuItem.Text = "&Datei"
'
'BeendenToolStripMenuItem
'
Me.BeendenToolStripMenuItem.Name = "BeendenToolStripMenuItem"
Me.BeendenToolStripMenuItem.Size = New System.Drawing.Size(152, 22)
Me.BeendenToolStripMenuItem.Text = "&Beenden"
'
'NeuAnmeldenToolStripMenuItem
'
Me.NeuAnmeldenToolStripMenuItem.Name = "NeuAnmeldenToolStripMenuItem"
Me.NeuAnmeldenToolStripMenuItem.Size = New System.Drawing.Size(152, 22)
Me.NeuAnmeldenToolStripMenuItem.Text = "&Neu anmelden"
'
'grpPruefgegenstand
'
Me.grpPruefgegenstand.Controls.Add(Me.GrpStruktur)
Me.grpPruefgegenstand.Controls.Add(Me.txtHilfsmittel)
Me.grpPruefgegenstand.Controls.Add(Me.lblHilfsmittel)
Me.grpPruefgegenstand.Controls.Add(Me.txtBezeichnung)
Me.grpPruefgegenstand.Controls.Add(Me.lblBezeichnung)
Me.grpPruefgegenstand.Controls.Add(Me.lblKontrollaktivität)
Me.grpPruefgegenstand.Controls.Add(Me.txtBeschreibung)
Me.grpPruefgegenstand.Controls.Add(Me.lblBeschreibung)
Me.grpPruefgegenstand.Controls.Add(Me.lblEreignisse2)
Me.grpPruefgegenstand.Controls.Add(Me.lblMassnahmen2)
Me.grpPruefgegenstand.Controls.Add(Me.txtEreignisse)
Me.grpPruefgegenstand.Controls.Add(Me.lblEreignisse)
Me.grpPruefgegenstand.Controls.Add(Me.txtMassnahmen)
Me.grpPruefgegenstand.Controls.Add(Me.lblMassnahmen1)
Me.grpPruefgegenstand.Controls.Add(Me.txtPruefgegenstand)
Me.grpPruefgegenstand.Controls.Add(Me.lblPruefgegenstand)
Me.grpPruefgegenstand.Dock = System.Windows.Forms.DockStyle.Left
Me.grpPruefgegenstand.Location = New System.Drawing.Point(239, 49)
Me.grpPruefgegenstand.Name = "grpPruefgegenstand"
Me.grpPruefgegenstand.Size = New System.Drawing.Size(543, 573)
Me.grpPruefgegenstand.TabIndex = 0
Me.grpPruefgegenstand.TabStop = False
Me.grpPruefgegenstand.Text = "Prüfgegenstand"
'
'GrpStruktur
'
Me.GrpStruktur.Controls.Add(Me.TreeStruktur)
Me.GrpStruktur.Controls.Add(Me.ToolStripTree)
Me.GrpStruktur.Location = New System.Drawing.Point(327, 33)
Me.GrpStruktur.Name = "GrpStruktur"
Me.GrpStruktur.Size = New System.Drawing.Size(225, 208)
Me.GrpStruktur.TabIndex = 52
Me.GrpStruktur.TabStop = False
Me.GrpStruktur.Text = "Struktur"
Me.GrpStruktur.Visible = False
'
'TreeStruktur
'
Me.TreeStruktur.AccessibleRole = System.Windows.Forms.AccessibleRole.Outline
Me.TreeStruktur.AllowDrop = True
Me.TreeStruktur.AllowExternalDrop = False
Me.TreeStruktur.BackColor = System.Drawing.SystemColors.Window
'
'
'
Me.TreeStruktur.BackgroundStyle.Class = "TreeBorderKey"
Me.TreeStruktur.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square
Me.TreeStruktur.Dock = System.Windows.Forms.DockStyle.Fill
Me.TreeStruktur.DragDropNodeCopyEnabled = False
Me.TreeStruktur.ImageList = Me.ImageList1
Me.TreeStruktur.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F"
Me.TreeStruktur.Location = New System.Drawing.Point(3, 55)
Me.TreeStruktur.Name = "TreeStruktur"
Me.TreeStruktur.Nodes.AddRange(New DevComponents.AdvTree.Node() {Me.Node1})
Me.TreeStruktur.NodesConnector = Me.NodeConnector1
Me.TreeStruktur.NodeStyle = Me.ElementStyle1
Me.TreeStruktur.PathSeparator = ";"
Me.TreeStruktur.Size = New System.Drawing.Size(219, 150)
Me.TreeStruktur.Styles.Add(Me.ElementStyle1)
Me.TreeStruktur.TabIndex = 3
Me.TreeStruktur.Text = "AdvTree1"
'
'ImageList1
'
Me.ImageList1.ImageStream = CType(resources.GetObject("ImageList1.ImageStream"), System.Windows.Forms.ImageListStreamer)
Me.ImageList1.TransparentColor = System.Drawing.Color.Transparent
Me.ImageList1.Images.SetKeyName(0, "No Title #6.png")
Me.ImageList1.Images.SetKeyName(1, "Abort.png")
Me.ImageList1.Images.SetKeyName(2, "Stop.png")
Me.ImageList1.Images.SetKeyName(3, "Restore.png")
'
'Node1
'
Me.Node1.Expanded = True
Me.Node1.Name = "Node1"
Me.Node1.Text = "Node1"
'
'NodeConnector1
'
Me.NodeConnector1.LineColor = System.Drawing.SystemColors.ControlText
'
'ElementStyle1
'
Me.ElementStyle1.CornerType = DevComponents.DotNetBar.eCornerType.Square
Me.ElementStyle1.Name = "ElementStyle1"
Me.ElementStyle1.TextColor = System.Drawing.SystemColors.ControlText
'
'ToolStripTree
'
Me.ToolStripTree.ImageScalingSize = New System.Drawing.Size(32, 32)
Me.ToolStripTree.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tslabelFilter, Me.tsCbxFilter, Me.ToolStripSeparator1, Me.lblSuche, Me.tstxtSuche, Me.TSBtnSuche, Me.TSBtnFilterAufheben, Me.TSBtnFirst, Me.TSBtnPrevious, Me.TSBtnNext, Me.TSBtnLast})
Me.ToolStripTree.Location = New System.Drawing.Point(3, 16)
Me.ToolStripTree.Name = "ToolStripTree"
Me.ToolStripTree.Size = New System.Drawing.Size(219, 39)
Me.ToolStripTree.TabIndex = 2
Me.ToolStripTree.Text = "ToolStrip2"
'
'tslabelFilter
'
Me.tslabelFilter.Name = "tslabelFilter"
Me.tslabelFilter.Size = New System.Drawing.Size(33, 36)
Me.tslabelFilter.Text = "Filter"
'
'tsCbxFilter
'
Me.tsCbxFilter.Name = "tsCbxFilter"
Me.tsCbxFilter.Size = New System.Drawing.Size(75, 39)
'
'ToolStripSeparator1
'
Me.ToolStripSeparator1.Name = "ToolStripSeparator1"
Me.ToolStripSeparator1.Size = New System.Drawing.Size(6, 39)
'
'lblSuche
'
Me.lblSuche.Name = "lblSuche"
Me.lblSuche.Size = New System.Drawing.Size(46, 36)
Me.lblSuche.Text = "Suchen"
'
'tstxtSuche
'
Me.tstxtSuche.Name = "tstxtSuche"
Me.tstxtSuche.Size = New System.Drawing.Size(52, 23)
'
'TSBtnSuche
'
Me.TSBtnSuche.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.TSBtnSuche.Image = CType(resources.GetObject("TSBtnSuche.Image"), System.Drawing.Image)
Me.TSBtnSuche.ImageTransparentColor = System.Drawing.Color.Magenta
Me.TSBtnSuche.Name = "TSBtnSuche"
Me.TSBtnSuche.Size = New System.Drawing.Size(36, 36)
Me.TSBtnSuche.Text = "Suchen"
'
'TSBtnFilterAufheben
'
Me.TSBtnFilterAufheben.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.TSBtnFilterAufheben.Image = CType(resources.GetObject("TSBtnFilterAufheben.Image"), System.Drawing.Image)
Me.TSBtnFilterAufheben.ImageTransparentColor = System.Drawing.Color.Magenta
Me.TSBtnFilterAufheben.Name = "TSBtnFilterAufheben"
Me.TSBtnFilterAufheben.Size = New System.Drawing.Size(36, 36)
Me.TSBtnFilterAufheben.Text = "Filter aufheben"
'
'TSBtnFirst
'
Me.TSBtnFirst.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.TSBtnFirst.Image = CType(resources.GetObject("TSBtnFirst.Image"), System.Drawing.Image)
Me.TSBtnFirst.ImageTransparentColor = System.Drawing.Color.Magenta
Me.TSBtnFirst.Name = "TSBtnFirst"
Me.TSBtnFirst.Size = New System.Drawing.Size(36, 36)
Me.TSBtnFirst.Text = "Erster Datensatz"
'
'TSBtnPrevious
'
Me.TSBtnPrevious.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.TSBtnPrevious.Image = CType(resources.GetObject("TSBtnPrevious.Image"), System.Drawing.Image)
Me.TSBtnPrevious.ImageTransparentColor = System.Drawing.Color.Magenta
Me.TSBtnPrevious.Name = "TSBtnPrevious"
Me.TSBtnPrevious.Size = New System.Drawing.Size(36, 36)
Me.TSBtnPrevious.Text = "Vorheriger Datensatz"
'
'TSBtnNext
'
Me.TSBtnNext.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.TSBtnNext.Image = CType(resources.GetObject("TSBtnNext.Image"), System.Drawing.Image)
Me.TSBtnNext.ImageTransparentColor = System.Drawing.Color.Magenta
Me.TSBtnNext.Name = "TSBtnNext"
Me.TSBtnNext.Size = New System.Drawing.Size(36, 36)
Me.TSBtnNext.Text = "Nächster Datensatz"
'
'TSBtnLast
'
Me.TSBtnLast.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.TSBtnLast.Image = CType(resources.GetObject("TSBtnLast.Image"), System.Drawing.Image)
Me.TSBtnLast.ImageTransparentColor = System.Drawing.Color.Magenta
Me.TSBtnLast.Name = "TSBtnLast"
Me.TSBtnLast.Size = New System.Drawing.Size(36, 36)
Me.TSBtnLast.Text = "Letzter Datensatz"
'
'txtHilfsmittel
'
Me.txtHilfsmittel.Location = New System.Drawing.Point(104, 263)
Me.txtHilfsmittel.Multiline = True
Me.txtHilfsmittel.Name = "txtHilfsmittel"
Me.txtHilfsmittel.Size = New System.Drawing.Size(427, 96)
Me.txtHilfsmittel.TabIndex = 55
'
'lblHilfsmittel
'
Me.lblHilfsmittel.AutoSize = True
Me.lblHilfsmittel.Location = New System.Drawing.Point(15, 265)
Me.lblHilfsmittel.Name = "lblHilfsmittel"
Me.lblHilfsmittel.Size = New System.Drawing.Size(51, 13)
Me.lblHilfsmittel.TabIndex = 54
Me.lblHilfsmittel.Text = "Hilfsmittel"
'
'txtBezeichnung
'
Me.txtBezeichnung.Location = New System.Drawing.Point(104, 30)
Me.txtBezeichnung.Name = "txtBezeichnung"
Me.txtBezeichnung.Size = New System.Drawing.Size(427, 20)
Me.txtBezeichnung.TabIndex = 0
'
'lblBezeichnung
'
Me.lblBezeichnung.AutoSize = True
Me.lblBezeichnung.Location = New System.Drawing.Point(16, 33)
Me.lblBezeichnung.Name = "lblBezeichnung"
Me.lblBezeichnung.Size = New System.Drawing.Size(69, 13)
Me.lblBezeichnung.TabIndex = 53
Me.lblBezeichnung.Text = "Bezeichnung"
'
'lblKontrollaktivität
'
Me.lblKontrollaktivität.AutoSize = True
Me.lblKontrollaktivität.Location = New System.Drawing.Point(16, 75)
Me.lblKontrollaktivität.Name = "lblKontrollaktivität"
Me.lblKontrollaktivität.Size = New System.Drawing.Size(79, 13)
Me.lblKontrollaktivität.TabIndex = 51
Me.lblKontrollaktivität.Text = "Kontrollaktivität"
'
'txtBeschreibung
'
Me.txtBeschreibung.Location = New System.Drawing.Point(104, 62)
Me.txtBeschreibung.Multiline = True
Me.txtBeschreibung.Name = "txtBeschreibung"
Me.txtBeschreibung.Size = New System.Drawing.Size(427, 96)
Me.txtBeschreibung.TabIndex = 1
'
'lblBeschreibung
'
Me.lblBeschreibung.AutoSize = True
Me.lblBeschreibung.Location = New System.Drawing.Point(16, 62)
Me.lblBeschreibung.Name = "lblBeschreibung"
Me.lblBeschreibung.Size = New System.Drawing.Size(72, 13)
Me.lblBeschreibung.TabIndex = 49
Me.lblBeschreibung.Text = "Beschreibung"
'
'lblEreignisse2
'
Me.lblEreignisse2.AutoSize = True
Me.lblEreignisse2.Location = New System.Drawing.Point(14, 468)
Me.lblEreignisse2.Name = "lblEreignisse2"
Me.lblEreignisse2.Size = New System.Drawing.Size(74, 13)
Me.lblEreignisse2.TabIndex = 34
Me.lblEreignisse2.Text = "Info / Rapport"
'
'lblMassnahmen2
'
Me.lblMassnahmen2.AutoSize = True
Me.lblMassnahmen2.Location = New System.Drawing.Point(15, 379)
Me.lblMassnahmen2.Name = "lblMassnahmen2"
Me.lblMassnahmen2.Size = New System.Drawing.Size(83, 13)
Me.lblMassnahmen2.TabIndex = 33
Me.lblMassnahmen2.Text = "bei Abweichung"
'
'txtEreignisse
'
Me.txtEreignisse.Location = New System.Drawing.Point(104, 465)
Me.txtEreignisse.Multiline = True
Me.txtEreignisse.Name = "txtEreignisse"
Me.txtEreignisse.Size = New System.Drawing.Size(427, 96)
Me.txtEreignisse.TabIndex = 4
'
'lblEreignisse
'
Me.lblEreignisse.AutoSize = True
Me.lblEreignisse.Location = New System.Drawing.Point(15, 392)
Me.lblEreignisse.Name = "lblEreignisse"
Me.lblEreignisse.Size = New System.Drawing.Size(55, 13)
Me.lblEreignisse.TabIndex = 31
Me.lblEreignisse.Text = "Ereignisse"
'
'txtMassnahmen
'
Me.txtMassnahmen.Location = New System.Drawing.Point(104, 363)
Me.txtMassnahmen.Multiline = True
Me.txtMassnahmen.Name = "txtMassnahmen"
Me.txtMassnahmen.Size = New System.Drawing.Size(427, 96)
Me.txtMassnahmen.TabIndex = 3
'
'lblMassnahmen1
'
Me.lblMassnahmen1.AutoSize = True
Me.lblMassnahmen1.Location = New System.Drawing.Point(14, 366)
Me.lblMassnahmen1.Name = "lblMassnahmen1"
Me.lblMassnahmen1.Size = New System.Drawing.Size(70, 13)
Me.lblMassnahmen1.TabIndex = 29
Me.lblMassnahmen1.Text = "Massnahmen"
'
'txtPruefgegenstand
'
Me.txtPruefgegenstand.Location = New System.Drawing.Point(104, 164)
Me.txtPruefgegenstand.Multiline = True
Me.txtPruefgegenstand.Name = "txtPruefgegenstand"
Me.txtPruefgegenstand.Size = New System.Drawing.Size(427, 96)
Me.txtPruefgegenstand.TabIndex = 2
'
'lblPruefgegenstand
'
Me.lblPruefgegenstand.AutoSize = True
Me.lblPruefgegenstand.Location = New System.Drawing.Point(16, 164)
Me.lblPruefgegenstand.Name = "lblPruefgegenstand"
Me.lblPruefgegenstand.Size = New System.Drawing.Size(82, 13)
Me.lblPruefgegenstand.TabIndex = 27
Me.lblPruefgegenstand.Text = "Prüfgegenstand"
'
'cbAktiv
'
Me.cbAktiv.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.cbAktiv.AutoSize = True
Me.cbAktiv.Location = New System.Drawing.Point(65, 91)
Me.cbAktiv.Name = "cbAktiv"
Me.cbAktiv.Size = New System.Drawing.Size(15, 14)
Me.cbAktiv.TabIndex = 46
Me.cbAktiv.UseVisualStyleBackColor = True
'
'lblAktiv
'
Me.lblAktiv.AutoSize = True
Me.lblAktiv.Location = New System.Drawing.Point(7, 91)
Me.lblAktiv.Name = "lblAktiv"
Me.lblAktiv.Size = New System.Drawing.Size(31, 13)
Me.lblAktiv.TabIndex = 45
Me.lblAktiv.Text = "Aktiv"
'
'txtMutierer
'
Me.txtMutierer.Location = New System.Drawing.Point(68, 63)
Me.txtMutierer.Name = "txtMutierer"
Me.txtMutierer.ReadOnly = True
Me.txtMutierer.Size = New System.Drawing.Size(159, 20)
Me.txtMutierer.TabIndex = 44
'
'txtMutiertam
'
Me.txtMutiertam.Location = New System.Drawing.Point(68, 38)
Me.txtMutiertam.Name = "txtMutiertam"
Me.txtMutiertam.ReadOnly = True
Me.txtMutiertam.Size = New System.Drawing.Size(159, 20)
Me.txtMutiertam.TabIndex = 43
'
'txtErstelltam
'
Me.txtErstelltam.Location = New System.Drawing.Point(68, 12)
Me.txtErstelltam.Name = "txtErstelltam"
Me.txtErstelltam.ReadOnly = True
Me.txtErstelltam.Size = New System.Drawing.Size(159, 20)
Me.txtErstelltam.TabIndex = 42
'
'lblMutierer
'
Me.lblMutierer.AutoSize = True
Me.lblMutierer.Location = New System.Drawing.Point(7, 66)
Me.lblMutierer.Name = "lblMutierer"
Me.lblMutierer.Size = New System.Drawing.Size(45, 13)
Me.lblMutierer.TabIndex = 41
Me.lblMutierer.Text = "Mutierer"
'
'lblErstelltam
'
Me.lblErstelltam.AutoSize = True
Me.lblErstelltam.Location = New System.Drawing.Point(7, 15)
Me.lblErstelltam.Name = "lblErstelltam"
Me.lblErstelltam.Size = New System.Drawing.Size(55, 13)
Me.lblErstelltam.TabIndex = 39
Me.lblErstelltam.Text = "Erstellt am"
'
'lblMutiertam
'
Me.lblMutiertam.AutoSize = True
Me.lblMutiertam.Location = New System.Drawing.Point(7, 41)
Me.lblMutiertam.Name = "lblMutiertam"
Me.lblMutiertam.Size = New System.Drawing.Size(56, 13)
Me.lblMutiertam.TabIndex = 40
Me.lblMutiertam.Text = "Mutiert am"
'
'GrpLeft
'
Me.GrpLeft.Controls.Add(Me.GrpPlanung)
Me.GrpLeft.Controls.Add(Me.GrpVerantwortung)
Me.GrpLeft.Controls.Add(Me.GrpDefinitionZuordnung)
Me.GrpLeft.Controls.Add(Me.Panel1)
Me.GrpLeft.Dock = System.Windows.Forms.DockStyle.Left
Me.GrpLeft.Location = New System.Drawing.Point(0, 49)
Me.GrpLeft.Name = "GrpLeft"
Me.GrpLeft.Size = New System.Drawing.Size(239, 573)
Me.GrpLeft.TabIndex = 11
Me.GrpLeft.TabStop = False
'
'GrpPlanung
'
Me.GrpPlanung.Controls.Add(Me.cbboxTerminierung)
Me.GrpPlanung.Controls.Add(Me.lblTerminierung)
Me.GrpPlanung.Controls.Add(Me.dtGueltigBis)
Me.GrpPlanung.Controls.Add(Me.lblGueltigBis)
Me.GrpPlanung.Controls.Add(Me.dtErstmalsam)
Me.GrpPlanung.Controls.Add(Me.Label2)
Me.GrpPlanung.Controls.Add(Me.cbboxZeitpunkt)
Me.GrpPlanung.Controls.Add(Me.lblPrioritaet)
Me.GrpPlanung.Controls.Add(Me.lblZeitpunkt)
Me.GrpPlanung.Controls.Add(Me.cbboxPrioritaet)
Me.GrpPlanung.Controls.Add(Me.lblPeriodizitaet)
Me.GrpPlanung.Controls.Add(Me.cbboxPeriodizitaet)
Me.GrpPlanung.Dock = System.Windows.Forms.DockStyle.Top
Me.GrpPlanung.Location = New System.Drawing.Point(3, 253)
Me.GrpPlanung.Name = "GrpPlanung"
Me.GrpPlanung.Size = New System.Drawing.Size(233, 196)
Me.GrpPlanung.TabIndex = 2
Me.GrpPlanung.TabStop = False
Me.GrpPlanung.Text = "Planung"
'
'cbboxTerminierung
'
Me.cbboxTerminierung.FormattingEnabled = True
Me.cbboxTerminierung.Location = New System.Drawing.Point(68, 134)
Me.cbboxTerminierung.Name = "cbboxTerminierung"
Me.cbboxTerminierung.Size = New System.Drawing.Size(108, 21)
Me.cbboxTerminierung.TabIndex = 4
'
'lblTerminierung
'
Me.lblTerminierung.AutoSize = True
Me.lblTerminierung.Location = New System.Drawing.Point(6, 137)
Me.lblTerminierung.Name = "lblTerminierung"
Me.lblTerminierung.Size = New System.Drawing.Size(39, 13)
Me.lblTerminierung.TabIndex = 37
Me.lblTerminierung.Text = "Termin"
'
'dtGueltigBis
'
Me.dtGueltigBis.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
Me.dtGueltigBis.Location = New System.Drawing.Point(68, 160)
Me.dtGueltigBis.Name = "dtGueltigBis"
Me.dtGueltigBis.Size = New System.Drawing.Size(108, 20)
Me.dtGueltigBis.TabIndex = 5
'
'lblGueltigBis
'
Me.lblGueltigBis.AutoSize = True
Me.lblGueltigBis.Location = New System.Drawing.Point(6, 161)
Me.lblGueltigBis.Name = "lblGueltigBis"
Me.lblGueltigBis.Size = New System.Drawing.Size(50, 13)
Me.lblGueltigBis.TabIndex = 35
Me.lblGueltigBis.Text = "Gültig bis"
'
'dtErstmalsam
'
Me.dtErstmalsam.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
Me.dtErstmalsam.Location = New System.Drawing.Point(69, 108)
Me.dtErstmalsam.Name = "dtErstmalsam"
Me.dtErstmalsam.Size = New System.Drawing.Size(108, 20)
Me.dtErstmalsam.TabIndex = 3
'
'Label2
'
Me.Label2.AutoSize = True
Me.Label2.Location = New System.Drawing.Point(6, 114)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(63, 13)
Me.Label2.TabIndex = 33
Me.Label2.Text = "Erstmals am"
'
'cbboxZeitpunkt
'
Me.cbboxZeitpunkt.FormattingEnabled = True
Me.cbboxZeitpunkt.Location = New System.Drawing.Point(69, 78)
Me.cbboxZeitpunkt.Name = "cbboxZeitpunkt"
Me.cbboxZeitpunkt.Size = New System.Drawing.Size(108, 21)
Me.cbboxZeitpunkt.TabIndex = 2
'
'lblPrioritaet
'
Me.lblPrioritaet.AutoSize = True
Me.lblPrioritaet.Location = New System.Drawing.Point(6, 25)
Me.lblPrioritaet.Name = "lblPrioritaet"
Me.lblPrioritaet.Size = New System.Drawing.Size(42, 13)
Me.lblPrioritaet.TabIndex = 27
Me.lblPrioritaet.Text = "Priorität"
'
'lblZeitpunkt
'
Me.lblZeitpunkt.AutoSize = True
Me.lblZeitpunkt.Location = New System.Drawing.Point(5, 81)
Me.lblZeitpunkt.Name = "lblZeitpunkt"
Me.lblZeitpunkt.Size = New System.Drawing.Size(52, 13)
Me.lblZeitpunkt.TabIndex = 31
Me.lblZeitpunkt.Text = "Zeitpunkt"
'
'cbboxPrioritaet
'
Me.cbboxPrioritaet.FormattingEnabled = True
Me.cbboxPrioritaet.Location = New System.Drawing.Point(69, 22)
Me.cbboxPrioritaet.Name = "cbboxPrioritaet"
Me.cbboxPrioritaet.Size = New System.Drawing.Size(108, 21)
Me.cbboxPrioritaet.TabIndex = 0
'
'lblPeriodizitaet
'
Me.lblPeriodizitaet.AutoSize = True
Me.lblPeriodizitaet.Location = New System.Drawing.Point(6, 53)
Me.lblPeriodizitaet.Name = "lblPeriodizitaet"
Me.lblPeriodizitaet.Size = New System.Drawing.Size(58, 13)
Me.lblPeriodizitaet.TabIndex = 29
Me.lblPeriodizitaet.Text = "Periodizität"
'
'cbboxPeriodizitaet
'
Me.cbboxPeriodizitaet.FormattingEnabled = True
Me.cbboxPeriodizitaet.Location = New System.Drawing.Point(69, 50)
Me.cbboxPeriodizitaet.Name = "cbboxPeriodizitaet"
Me.cbboxPeriodizitaet.Size = New System.Drawing.Size(108, 21)
Me.cbboxPeriodizitaet.TabIndex = 1
'
'GrpVerantwortung
'
Me.GrpVerantwortung.Controls.Add(Me.cbboxVerantwortungISI)
Me.GrpVerantwortung.Controls.Add(Me.cbboxVerantwortlich)
Me.GrpVerantwortung.Controls.Add(Me.Label1)
Me.GrpVerantwortung.Controls.Add(Me.lblVerantwortlich)
Me.GrpVerantwortung.Dock = System.Windows.Forms.DockStyle.Top
Me.GrpVerantwortung.Location = New System.Drawing.Point(3, 170)
Me.GrpVerantwortung.Name = "GrpVerantwortung"
Me.GrpVerantwortung.Size = New System.Drawing.Size(233, 83)
Me.GrpVerantwortung.TabIndex = 1
Me.GrpVerantwortung.TabStop = False
Me.GrpVerantwortung.Text = "Verantwortung"
'
'cbboxVerantwortungISI
'
Me.cbboxVerantwortungISI.FormattingEnabled = True
Me.cbboxVerantwortungISI.Location = New System.Drawing.Point(102, 47)
Me.cbboxVerantwortungISI.Name = "cbboxVerantwortungISI"
Me.cbboxVerantwortungISI.Size = New System.Drawing.Size(125, 21)
Me.cbboxVerantwortungISI.TabIndex = 1
'
'cbboxVerantwortlich
'
Me.cbboxVerantwortlich.FormattingEnabled = True
Me.cbboxVerantwortlich.Location = New System.Drawing.Point(102, 14)
Me.cbboxVerantwortlich.Name = "cbboxVerantwortlich"
Me.cbboxVerantwortlich.Size = New System.Drawing.Size(125, 21)
Me.cbboxVerantwortlich.TabIndex = 0
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.Location = New System.Drawing.Point(6, 50)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(92, 13)
Me.Label1.TabIndex = 34
Me.Label1.Text = "Verantwortung ISI"
'
'lblVerantwortlich
'
Me.lblVerantwortlich.AutoSize = True
Me.lblVerantwortlich.Location = New System.Drawing.Point(6, 22)
Me.lblVerantwortlich.Name = "lblVerantwortlich"
Me.lblVerantwortlich.Size = New System.Drawing.Size(74, 13)
Me.lblVerantwortlich.TabIndex = 33
Me.lblVerantwortlich.Text = "Verantwortlich"
'
'GrpDefinitionZuordnung
'
Me.GrpDefinitionZuordnung.Controls.Add(Me.TreeZuordnung)
Me.GrpDefinitionZuordnung.Controls.Add(Me.btnNeueZuordnung)
Me.GrpDefinitionZuordnung.Dock = System.Windows.Forms.DockStyle.Top
Me.GrpDefinitionZuordnung.Location = New System.Drawing.Point(3, 16)
Me.GrpDefinitionZuordnung.Name = "GrpDefinitionZuordnung"
Me.GrpDefinitionZuordnung.Size = New System.Drawing.Size(233, 154)
Me.GrpDefinitionZuordnung.TabIndex = 0
Me.GrpDefinitionZuordnung.TabStop = False
Me.GrpDefinitionZuordnung.Text = "Zuordnung"
'
'TreeZuordnung
'
Me.TreeZuordnung.AccessibleRole = System.Windows.Forms.AccessibleRole.Outline
Me.TreeZuordnung.AllowDrop = True
Me.TreeZuordnung.AllowExternalDrop = False
Me.TreeZuordnung.BackColor = System.Drawing.SystemColors.Window
'
'
'
Me.TreeZuordnung.BackgroundStyle.Class = "TreeBorderKey"
Me.TreeZuordnung.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square
Me.TreeZuordnung.ContextMenuStrip = Me.ctxMenuZurodnung
Me.TreeZuordnung.ImageList = Me.ImageList1
Me.TreeZuordnung.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F"
Me.TreeZuordnung.Location = New System.Drawing.Point(6, 46)
Me.TreeZuordnung.Name = "TreeZuordnung"
Me.TreeZuordnung.Nodes.AddRange(New DevComponents.AdvTree.Node() {Me.Node2})
Me.TreeZuordnung.NodesConnector = Me.NodeConnector2
Me.TreeZuordnung.NodeStyle = Me.ElementStyle2
Me.TreeZuordnung.PathSeparator = ";"
Me.TreeZuordnung.Size = New System.Drawing.Size(217, 100)
Me.TreeZuordnung.Styles.Add(Me.ElementStyle2)
Me.TreeZuordnung.TabIndex = 1
Me.TreeZuordnung.Text = "AdvTree1"
'
'ctxMenuZurodnung
'
Me.ctxMenuZurodnung.ImageScalingSize = New System.Drawing.Size(32, 32)
Me.ctxMenuZurodnung.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.EintragBearbeitenToolStripMenuItem, Me.NeuerEintragHinzufügenToolStripMenuItem})
Me.ctxMenuZurodnung.Name = "ctxMenuZurodnung"
Me.ctxMenuZurodnung.Size = New System.Drawing.Size(210, 48)
'
'EintragBearbeitenToolStripMenuItem
'
Me.EintragBearbeitenToolStripMenuItem.Name = "EintragBearbeitenToolStripMenuItem"
Me.EintragBearbeitenToolStripMenuItem.Size = New System.Drawing.Size(209, 22)
Me.EintragBearbeitenToolStripMenuItem.Text = "Eintrag bearbeiten"
'
'NeuerEintragHinzufügenToolStripMenuItem
'
Me.NeuerEintragHinzufügenToolStripMenuItem.Name = "NeuerEintragHinzufügenToolStripMenuItem"
Me.NeuerEintragHinzufügenToolStripMenuItem.Size = New System.Drawing.Size(209, 22)
Me.NeuerEintragHinzufügenToolStripMenuItem.Text = "Neuer Eintrag hinzufügen"
'
'Node2
'
Me.Node2.Expanded = True
Me.Node2.Name = "Node2"
Me.Node2.Text = "Node2"
'
'NodeConnector2
'
Me.NodeConnector2.LineColor = System.Drawing.SystemColors.ControlText
'
'ElementStyle2
'
Me.ElementStyle2.CornerType = DevComponents.DotNetBar.eCornerType.Square
Me.ElementStyle2.Name = "ElementStyle2"
Me.ElementStyle2.TextColor = System.Drawing.SystemColors.ControlText
'
'btnNeueZuordnung
'
Me.btnNeueZuordnung.Location = New System.Drawing.Point(6, 17)
Me.btnNeueZuordnung.Name = "btnNeueZuordnung"
Me.btnNeueZuordnung.Size = New System.Drawing.Size(217, 23)
Me.btnNeueZuordnung.TabIndex = 0
Me.btnNeueZuordnung.Text = "Struktur anzeigen"
Me.btnNeueZuordnung.UseVisualStyleBackColor = True
'
'Panel1
'
Me.Panel1.Controls.Add(Me.txtMutierer)
Me.Panel1.Controls.Add(Me.txtErstelltam)
Me.Panel1.Controls.Add(Me.lblMutierer)
Me.Panel1.Controls.Add(Me.cbAktiv)
Me.Panel1.Controls.Add(Me.txtMutiertam)
Me.Panel1.Controls.Add(Me.lblErstelltam)
Me.Panel1.Controls.Add(Me.lblAktiv)
Me.Panel1.Controls.Add(Me.lblMutiertam)
Me.Panel1.Dock = System.Windows.Forms.DockStyle.Bottom
Me.Panel1.Location = New System.Drawing.Point(3, 458)
Me.Panel1.Name = "Panel1"
Me.Panel1.Size = New System.Drawing.Size(233, 112)
Me.Panel1.TabIndex = 47
'
'GroupBox1
'
Me.GroupBox1.Controls.Add(Me.DokumenteAllgemein)
Me.GroupBox1.Dock = System.Windows.Forms.DockStyle.Fill
Me.GroupBox1.Location = New System.Drawing.Point(782, 49)
Me.GroupBox1.Name = "GroupBox1"
Me.GroupBox1.Size = New System.Drawing.Size(176, 573)
Me.GroupBox1.TabIndex = 13
Me.GroupBox1.TabStop = False
Me.GroupBox1.Text = "Dokumente"
'
'DokumenteAllgemein
'
Me.DokumenteAllgemein.ConnectionString = Nothing
Me.DokumenteAllgemein.Dock = System.Windows.Forms.DockStyle.Fill
Me.DokumenteAllgemein.Doktype = 0
Me.DokumenteAllgemein.Location = New System.Drawing.Point(3, 16)
Me.DokumenteAllgemein.Margin = New System.Windows.Forms.Padding(5, 6, 5, 6)
Me.DokumenteAllgemein.Mitarbeiternr = 0
Me.DokumenteAllgemein.Name = "DokumenteAllgemein"
Me.DokumenteAllgemein.Pruefschrittnr = 0
Me.DokumenteAllgemein.Size = New System.Drawing.Size(170, 554)
Me.DokumenteAllgemein.TabIndex = 0
Me.DokumenteAllgemein.TempFilePath = Nothing
Me.DokumenteAllgemein.ThemaNr = 0
'
'frmMassnahmeplanDetail
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(958, 622)
Me.Controls.Add(Me.GroupBox1)
Me.Controls.Add(Me.grpPruefgegenstand)
Me.Controls.Add(Me.GrpLeft)
Me.Controls.Add(Me.ToolStrip1)
Me.Controls.Add(Me.MenuStrip1)
Me.Name = "frmMassnahmeplanDetail"
Me.Text = "Massnahmeplan Detail"
Me.ToolStrip1.ResumeLayout(False)
Me.ToolStrip1.PerformLayout()
Me.MenuStrip1.ResumeLayout(False)
Me.MenuStrip1.PerformLayout()
Me.grpPruefgegenstand.ResumeLayout(False)
Me.grpPruefgegenstand.PerformLayout()
Me.GrpStruktur.ResumeLayout(False)
Me.GrpStruktur.PerformLayout()
CType(Me.TreeStruktur, System.ComponentModel.ISupportInitialize).EndInit()
Me.ToolStripTree.ResumeLayout(False)
Me.ToolStripTree.PerformLayout()
Me.GrpLeft.ResumeLayout(False)
Me.GrpPlanung.ResumeLayout(False)
Me.GrpPlanung.PerformLayout()
Me.GrpVerantwortung.ResumeLayout(False)
Me.GrpVerantwortung.PerformLayout()
Me.GrpDefinitionZuordnung.ResumeLayout(False)
CType(Me.TreeZuordnung, System.ComponentModel.ISupportInitialize).EndInit()
Me.ctxMenuZurodnung.ResumeLayout(False)
Me.Panel1.ResumeLayout(False)
Me.Panel1.PerformLayout()
Me.GroupBox1.ResumeLayout(False)
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents ToolStrip1 As System.Windows.Forms.ToolStrip
Friend WithEvents TSBtnQuit As System.Windows.Forms.ToolStripButton
Friend WithEvents ToolStripButton1 As System.Windows.Forms.ToolStripButton
Friend WithEvents MenuStrip1 As System.Windows.Forms.MenuStrip
Friend WithEvents DateiToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents BeendenToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents NeuAnmeldenToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents grpPruefgegenstand As System.Windows.Forms.GroupBox
Friend WithEvents lblEreignisse2 As System.Windows.Forms.Label
Friend WithEvents lblMassnahmen2 As System.Windows.Forms.Label
Friend WithEvents txtEreignisse As System.Windows.Forms.TextBox
Friend WithEvents lblEreignisse As System.Windows.Forms.Label
Friend WithEvents txtMassnahmen As System.Windows.Forms.TextBox
Friend WithEvents lblMassnahmen1 As System.Windows.Forms.Label
Friend WithEvents txtPruefgegenstand As System.Windows.Forms.TextBox
Friend WithEvents lblPruefgegenstand As System.Windows.Forms.Label
Friend WithEvents GrpLeft As System.Windows.Forms.GroupBox
Friend WithEvents cbboxZeitpunkt As System.Windows.Forms.ComboBox
Friend WithEvents lblZeitpunkt As System.Windows.Forms.Label
Friend WithEvents cbboxPeriodizitaet As System.Windows.Forms.ComboBox
Friend WithEvents lblPeriodizitaet As System.Windows.Forms.Label
Friend WithEvents cbboxPrioritaet As System.Windows.Forms.ComboBox
Friend WithEvents lblPrioritaet As System.Windows.Forms.Label
Friend WithEvents GrpVerantwortung As System.Windows.Forms.GroupBox
Friend WithEvents cbboxVerantwortungISI As System.Windows.Forms.ComboBox
Friend WithEvents cbboxVerantwortlich As System.Windows.Forms.ComboBox
Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents lblVerantwortlich As System.Windows.Forms.Label
Friend WithEvents GrpPlanung As System.Windows.Forms.GroupBox
Friend WithEvents cbAktiv As System.Windows.Forms.CheckBox
Friend WithEvents lblAktiv As System.Windows.Forms.Label
Friend WithEvents txtMutierer As System.Windows.Forms.TextBox
Friend WithEvents txtMutiertam As System.Windows.Forms.TextBox
Friend WithEvents txtErstelltam As System.Windows.Forms.TextBox
Friend WithEvents lblMutierer As System.Windows.Forms.Label
Friend WithEvents lblErstelltam As System.Windows.Forms.Label
Friend WithEvents lblMutiertam As System.Windows.Forms.Label
Friend WithEvents dtErstmalsam As System.Windows.Forms.DateTimePicker
Friend WithEvents Label2 As System.Windows.Forms.Label
Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox
Friend WithEvents DokumenteAllgemein As ThemenDokumente.Dokumente
Friend WithEvents lblKontrollaktivität As System.Windows.Forms.Label
Friend WithEvents txtBeschreibung As System.Windows.Forms.TextBox
Friend WithEvents lblBeschreibung As System.Windows.Forms.Label
Friend WithEvents Panel1 As System.Windows.Forms.Panel
Friend WithEvents TSBtnSave As ToolStripButton
Friend WithEvents GrpStruktur As GroupBox
Friend WithEvents GrpDefinitionZuordnung As GroupBox
Friend WithEvents btnNeueZuordnung As Button
Friend WithEvents TreeStruktur As DevComponents.AdvTree.AdvTree
Friend WithEvents Node1 As DevComponents.AdvTree.Node
Friend WithEvents NodeConnector1 As DevComponents.AdvTree.NodeConnector
Friend WithEvents ElementStyle1 As DevComponents.DotNetBar.ElementStyle
Friend WithEvents ToolStripTree As ToolStrip
Friend WithEvents tslabelFilter As ToolStripLabel
Friend WithEvents tsCbxFilter As ToolStripComboBox
Friend WithEvents ToolStripSeparator1 As ToolStripSeparator
Friend WithEvents lblSuche As ToolStripLabel
Friend WithEvents tstxtSuche As ToolStripTextBox
Friend WithEvents TSBtnSuche As ToolStripButton
Friend WithEvents TSBtnFilterAufheben As ToolStripButton
Friend WithEvents TSBtnFirst As ToolStripButton
Friend WithEvents TSBtnPrevious As ToolStripButton
Friend WithEvents TSBtnNext As ToolStripButton
Friend WithEvents TSBtnLast As ToolStripButton
Friend WithEvents txtBezeichnung As TextBox
Friend WithEvents lblBezeichnung As Label
Friend WithEvents dtGueltigBis As DateTimePicker
Friend WithEvents lblGueltigBis As Label
Friend WithEvents TreeZuordnung As DevComponents.AdvTree.AdvTree
Friend WithEvents Node2 As DevComponents.AdvTree.Node
Friend WithEvents NodeConnector2 As DevComponents.AdvTree.NodeConnector
Friend WithEvents ElementStyle2 As DevComponents.DotNetBar.ElementStyle
Friend WithEvents ImageList1 As ImageList
Friend WithEvents cbboxTerminierung As ComboBox
Friend WithEvents lblTerminierung As Label
Friend WithEvents ctxMenuZurodnung As ContextMenuStrip
Friend WithEvents EintragBearbeitenToolStripMenuItem As ToolStripMenuItem
Friend WithEvents NeuerEintragHinzufügenToolStripMenuItem As ToolStripMenuItem
Friend WithEvents txtHilfsmittel As TextBox
Friend WithEvents lblHilfsmittel As Label
End Class