Initial commit

This commit is contained in:
2020-10-21 10:43:18 +02:00
commit 56bd02798f
5848 changed files with 2659025 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
Imports PluginContracts
Public Class Class1
Implements PluginContracts.IPlugin
Public ReadOnly Property Name() As String Implements IPlugin.Name
Get
Return "EDOKA_DokTyp-Aufhebung"
End Get
End Property
Public Function Show(CurrentUser As String, Connectionstring As String, Parentform As Object) As Object Implements IPlugin.Show
Dim f As New Form
f.MdiParent = Parentform
f.Show()
End Function
End Class

View File

@@ -0,0 +1,34 @@
Module Crypto
Public Function EncryptText(ByVal strText As String, ByVal strPwd As String)
Dim i As Integer, c As Integer
Dim strBuff As String
strPwd = UCase$(strPwd)
If Len(strPwd) Then
For i = 1 To Len(strText)
c = Asc(Mid$(strText, i, 1))
c = c + Asc(Mid$(strPwd, (i Mod Len(strPwd)) + 1, 1))
strBuff = strBuff & Chr(c And &HFF)
Next i
Else
strBuff = strText
End If
EncryptText = strBuff
End Function
Public Function DecryptText(ByVal strText As String, ByVal strPwd As String)
Dim i As Integer, c As Integer
Dim strBuff As String
strPwd = UCase$(strPwd)
If Len(strPwd) Then
For i = 1 To Len(strText)
c = Asc(Mid$(strText, i, 1))
c = c - Asc(Mid$(strPwd, (i Mod Len(strPwd)) + 1, 1))
strBuff = strBuff & Chr(c And &HFF)
Next i
Else
strBuff = strText
End If
DecryptText = strBuff
End Function
End Module

View File

@@ -0,0 +1,166 @@
Imports System.IO
Imports System.Data.Sql
Imports System.Data.SqlClient
Imports System.Security.Principal
Public Class DB
Public dsDaten As New DataSet
Public dsdaten1 As New DataSet
Public dadaten1 As New SqlDataAdapter
Public dadaten As SqlDataAdapter
Dim sql As String
Public Sub Get_Funktionsgruppe()
Try
dsDaten.Clear()
sql = " SELECT funktionsgruppenr, bezeichnung from funktionsgruppe"
dadaten = New SqlDataAdapter(sql, Globals.sConnectionstring)
dadaten.Fill(dsDaten, "Funktionsgruppe")
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
Sub Get_Dokumenttyp_Funktionsgruppe(dokumenttypnr As Integer)
dsdaten1.Clear()
sql = " SELECT * from dokumentaufhebung where aktiv=1 and dokumenttypnr=" + dokumenttypnr.ToString
dadaten1 = New SqlDataAdapter(sql, Globals.sConnectionstring)
dadaten1.Fill(dsdaten1, "DokumenttypFunktionsgruppe")
End Sub
Sub Update_Daten()
'Try
' Dim cb As New SqlCommandBuilder(dadatendocm)
' dadatendocm.Update(dsdatendocm, dsdatendocm.Tables(0).TableName)
' MsgBox("Änderungen wurden gespeichert")
'Catch ex As Exception
' MsgBox("Felher: " + ex.Message)
'End Try
End Sub
End Class
Public Class DB_Connection
''' <summary>
''' Liest sämtlcihe CFG-Dateien mit dem Namen "Vertragsverwaltung...". Sind meherere Dateien vorhanden,
''' wird ein Auswahldialog zur Datenbank-Selektion angezeigt.
''' Standardmässig wird Vertragsverwaltung.cfg als CFG-Datei benutzt.
'''
''' Die CFG-Datei ist verschlüsselt und wird über die Crypto-Funktionen entschlüsselt.
''' </summary>
''' <remarks></remarks>
Shared Sub New()
Dim path As String = ""
Dim fc As Integer = 0
Dim ofile As System.IO.File
Dim oread As System.IO.StreamReader
'25062018
If Globals.ConnectionFilename.Length = 0 And Globals.Connection_Overwritten = False Then
If fc < 2 Then Globals.ConnectionFilename = "edokaconn.cfg"
Globals.ConnectionFilename = ApplicationPath() + "\" + Globals.ConnectionFilename
End If
oread = ofile.OpenText(Globals.ConnectionFilename)
sConnectionstring = oread.ReadLine
sConnectionstring = Crypto.DecryptText(sConnectionstring, "HutterundMueller")
sConnectionstring = Left(sConnectionstring, Len(sConnectionstring) - 1)
Globals.sConnectionstring = sConnectionstring
oread.Close()
'20180625
Globals.conn.sConnectionString = Globals.sConnectionstring
If Globals.Connection_Overwritten = False Then Check_DBConn_Overwrite()
Dim connection As New SqlConnection()
Dim da As New SqlDataAdapter("Select beschreibung from pluginparameter where pluginparamnr=1", connection)
Dim CB As SqlCommandBuilder = New SqlCommandBuilder(da)
Dim ds As New DataSet()
Try
connection.ConnectionString = Globals.sConnectionstring
connection.Open()
da.Fill(ds, "params")
path = ds.Tables(0).Rows(0).Item(0)
Catch ex As Exception
path = ""
CB = Nothing
End Try
ds = Nothing
da = Nothing
connection.Close()
connection = Nothing
Globals.ConnectionFilename = "edokaconn.cfg"
oread = ofile.OpenText(path + "\" + Globals.ConnectionFilename)
sConnectionstring = oread.ReadLine
sConnectionstring = Crypto.DecryptText(sConnectionstring, "HutterundMueller")
sConnectionstring = Left(sConnectionstring, Len(sConnectionstring) - 1)
Globals.sConnectionstring = sConnectionstring
oread.Close()
Globals.conn.sConnectionString = Globals.sConnectionstring
End Sub
Shared Sub Check_DBConn_Overwrite()
Dim ConnectionFile As String
ConnectionFile = Check_Connectionchange(Get_Username)
If ConnectionFile <> "" Then
Globals.ConnectionFilename = ConnectionFile
Dim ofile As System.IO.File
Dim oread As System.IO.StreamReader
oread = ofile.OpenText(Globals.ConnectionFilename)
sConnectionstring = oread.ReadLine
sConnectionstring = Crypto.DecryptText(sConnectionstring, "HutterundMueller")
sConnectionstring = Left(sConnectionstring, Len(sConnectionstring) - 1)
Globals.sConnectionstring = sConnectionstring
Globals.conn.sConnectionString = Globals.sConnectionstring
oread.Close()
Globals.Connection_Overwritten = True
End If
End Sub
Shared Function Check_Connectionchange(ByVal tgnummer As String) As String
Dim scmCmdToExecute As SqlCommand = New SqlCommand()
Dim i As Integer
Dim connopen As Boolean = False
scmCmdToExecute.CommandText = "dbo.[sp_check_Connectionchange]"
scmCmdToExecute.CommandType = CommandType.StoredProcedure
scmCmdToExecute.Connection = conn.scoDBConnection
Try
scmCmdToExecute.Parameters.Add(New SqlParameter("@tgnummer", SqlDbType.VarChar, 255, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, tgnummer))
scmCmdToExecute.Parameters.Add(New SqlParameter("@Resultat", SqlDbType.VarChar, 1024, ParameterDirection.Output, True, 10, 0, "", DataRowVersion.Proposed, 0))
Try
scmCmdToExecute.Connection.Open()
Catch ex As Exception
'MsgBox(ex.Message)
End Try
scmCmdToExecute.ExecuteNonQuery()
Return scmCmdToExecute.Parameters("@Resultat").Value
Catch ex As Exception
MsgBox(ex.Message)
Finally
scmCmdToExecute.Connection.Close()
scmCmdToExecute.Dispose()
End Try
End Function
Shared Function Get_Username() As String
Dim ouser As New WindowsPrincipal(WindowsIdentity.GetCurrent)
With ouser.Identity.Name
Return (.Substring(.IndexOf("\") + 1))
End With
End Function
End Class

View File

@@ -0,0 +1,289 @@
' ///////////////////////////////////////////////////////////////////////////
' // Description: Connection Provider class for Database connection sharing
' // Generated by LLBLGen v1.2.1045.38210 Final on: Dienstag, 26. November 2002, 22:32:48
' // This class implements IDisposable.
' ///////////////////////////////////////////////////////////////////////////
Imports System
Imports System.Configuration
Imports System.Data
Imports System.Data.SqlClient
Imports System.Collections
Namespace edokadb
' /// <summary>
' /// Purpose: provides a SqlConnection object which can be shared among data-access tier objects
' /// to provide a way to do ADO.NET transaction coding without the hassling with SqlConnection objects
' /// on a high level.
' /// </summary>
Public Class clsConnectionProvider
Implements IDisposable
#Region " Class Member Declarations "
Private m_scoDBConnection As SqlConnection
Private m_bIsTransactionPending, m_bIsDisposed As Boolean
Private m_stCurrentTransaction As SqlTransaction
Private m_alSavePoints As ArrayList
#End Region
Public Sub New()
' // Init the class
InitClass()
End Sub
' /// <summary>
' /// Purpose: Implements the IDispose' method Dispose.
' /// </summary>
Overloads Public Sub Dispose() Implements IDisposable.Dispose
Dispose(True)
GC.SuppressFinalize(Me)
End Sub
' /// <summary>
' /// Purpose: Implements the Dispose functionality.
' /// </summary>
Overridable Overloads Protected Sub Dispose(ByVal bIsDisposing As Boolean)
' // Check to see if Dispose has already been called.
If Not m_bIsDisposed Then
If bIsDisposing Then
' // Dispose managed resources.
If Not (m_stCurrentTransaction Is Nothing) Then
m_stCurrentTransaction.Dispose()
m_stCurrentTransaction = Nothing
End If
If Not (m_scoDBConnection Is Nothing) Then
' // closing the connection will abort (rollback) any pending transactions
m_scoDBConnection.Close()
m_scoDBConnection.Dispose()
m_scoDBConnection = Nothing
End If
End If
End If
m_bIsDisposed = True
End Sub
' /// <summary>
' /// Purpose: Initializes class members.
' /// </summary>
Private Sub InitClass()
' // Create all the objects and initialize other members.
m_scoDBConnection = new SqlConnection()
m_bIsDisposed = False
m_stCurrentTransaction = Nothing
m_bIsTransactionPending = False
m_alSavePoints = new ArrayList()
End Sub
' /// <summary>
' /// Purpose: Opens the connection object.
' /// </summary>
' /// <returns>True, if succeeded, otherwise an Exception exception is thrown.</returns>
Public Function OpenConnection() As Boolean
Try
If (m_scoDBConnection.State And ConnectionState.Open) > 0 Then
' // It's already open.
Throw New Exception("OpenConnection::Connection is already open.")
End If
m_scoDBConnection.Open()
m_bIsTransactionPending = False
m_alSavePoints.Clear()
Return True
Catch ex As Exception
' // bubble exception
Throw ex
End Try
End Function
' /// <summary>
' /// Purpose: Starts a new ADO.NET transaction using the open connection object of this class.
' /// </summary>
' /// <param name="sTransactionName">Name of the transaction to start</param>
' /// <returns>True, if transaction is started correctly, otherwise an Exception exception is thrown</returns>
Public Function BeginTransaction(sTransactionName As String) As Boolean
Try
If m_bIsTransactionPending Then
' // no nested transactions allowed.
Throw New Exception("BeginTransaction::Already transaction pending. Nesting not allowed")
End If
If (m_scoDBConnection.State And ConnectionState.Open) = 0 Then
' // no open connection
Throw New Exception("BeginTransaction::Connection is not open.")
End If
' // begin the transaction and store the transaction object.
m_stCurrentTransaction = m_scoDBConnection.BeginTransaction(IsolationLevel.ReadCommitted, sTransactionName)
m_bIsTransactionPending = True
Return True
Catch ex As Exception
' // bubble exception
Throw ex
End Try
End Function
' /// <summary>
' /// Purpose: Commits a pending transaction on the open connection object of this class.
' /// </summary>
' /// <returns>True, if commit was succesful, or an Exception exception is thrown</returns>
Public Function CommitTransaction() As Boolean
Try
If Not m_bIsTransactionPending Then
' // no transaction pending
Throw New Exception("CommitTransaction::No transaction pending.")
End If
If (m_scoDBConnection.State And ConnectionState.Open) = 0 Then
' // no open connection
Throw New Exception("CommitTransaction::Connection is not open.")
End if
' // commit the transaction
m_stCurrentTransaction.Commit()
m_bIsTransactionPending = False
m_stCurrentTransaction.Dispose()
m_stCurrentTransaction = Nothing
m_alSavePoints.Clear()
Return True
Catch ex As Exception
' // bubble exception
Throw ex
End Try
End Function
' /// <summary>
' /// Purpose: Rolls back a pending transaction on the open connection object of this class,
' /// or rolls back to the savepoint with the given name. Savepoints are created with SaveTransaction().
' /// </summary>
' /// <param name="sTransactionToRollback">Name of transaction to roll back. Can be name of savepoint</param>
' /// <returns>True, if rollback was succesful, or an Exception exception is thrown</returns>
Public Function RollbackTransaction(sTransactionToRollback As String) As Boolean
Try
If Not m_bIsTransactionPending Then
' // no transaction pending
Throw New Exception("RollbackTransaction::No transaction pending.")
End If
If (m_scoDBConnection.State And ConnectionState.Open) = 0 Then
' // no open connection
Throw New Exception("RollbackTransaction::Connection is not open.")
End If
' // rollback the transaction
m_stCurrentTransaction.Rollback(sTransactionToRollback)
' // if this wasn't a savepoint, we've rolled back the complete transaction, so we
' // can clean it up.
If Not m_alSavePoints.Contains(sTransactionToRollback) Then
' // it's not a savepoint
m_bIsTransactionPending = False
m_stCurrentTransaction.Dispose()
m_stCurrentTransaction = Nothing
m_alSavePoints.Clear()
End If
Return True
Catch ex As Exception
' // bubble exception
Throw ex
End Try
End Function
' /// <summary>
' /// Purpose: Saves a pending transaction on the open connection object of this class to a 'savepoint'
' /// with the given name.
' /// When a rollback is issued, the caller can rollback to this savepoint or roll back the complete transaction.
' /// </summary>
' /// <param name="sSavePointName">Name of the savepoint to store the current transaction under.</param>
' /// <returns>True, if save was succesful, or an Exception exception is thrown</returns>
Public Function SaveTransaction(sSavePointName As String) As Boolean
Try
If Not m_bIsTransactionPending Then
' // no transaction pending
Throw New Exception("SaveTransaction::No transaction pending.")
End If
If (m_scoDBConnection.State And ConnectionState.Open) = 0 Then
' // no open connection
Throw New Exception("SaveTransaction::Connection is not open.")
End If
' // save the transaction
m_stCurrentTransaction.Save(sSavePointName)
' // Store the savepoint in the list.
m_alSavePoints.Add(sSavePointName)
Return True
Catch ex As Exception
' // bubble exception
Throw ex
End Try
End Function
' /// <summary>
' /// Purpose: Closes the open connection. Depending on bCommitPendingTransactions, a pending
' /// transaction is commited, or aborted.
' /// </summary>
' /// <param name="bCommitPendingTransaction">Flag for what to do when a transaction is still pending. True
' /// will commit the current transaction, False will abort (rollback) the complete current transaction.</param>
' /// <returns>True, if close was succesful, False if connection was already closed, or an Exception exception is thrown when
' /// an error occurs</returns>
Public Function CloseConnection(bCommitPendingTransaction As Boolean) As Boolean
Try
If (m_scoDBConnection.State And ConnectionState.Open) = 0 Then
' // No open connection
Return False
End If
If m_bIsTransactionPending Then
If bCommitPendingTransaction Then
' // Commit the pending transaction
m_stCurrentTransaction.Commit()
Else
' // Rollback the pending transaction
m_stCurrentTransaction.Rollback()
End If
m_bIsTransactionPending = False
m_stCurrentTransaction.Dispose()
m_stCurrentTransaction = Nothing
m_alSavePoints.Clear()
End If
' // close the connection
m_scoDBConnection.Close()
Return True
Catch ex As Exception
' // bubble exception
Throw ex
End Try
End Function
#Region " Class Property Declarations "
Public ReadOnly Property stCurrentTransaction() As SqlTransaction
Get
Return m_stCurrentTransaction
End Get
End Property
Public ReadOnly Property bIsTransactionPending() As Boolean
Get
Return m_bIsTransactionPending
End Get
End Property
Public ReadOnly Property scoDBConnection() As SqlConnection
Get
Return m_scoDBConnection
End Get
End Property
Public WriteOnly Property sConnectionString() As String
Set (ByVal Value As String)
m_scoDBConnection.ConnectionString = Value
End Set
End Property
#End Region
End Class
End Namespace

View File

@@ -0,0 +1,202 @@
' //////////////////////////////////////////////////////////////////////////////////////////
' // Description: Base class for Database Interaction.
' // Generated by LLBLGen v1.2.1045.38210 Final on: Dienstag, 26. November 2002, 22:32:48
' // Because this class implements IDisposable, derived classes shouldn't do so.
' //////////////////////////////////////////////////////////////////////////////////////////
Imports System
Imports System.Configuration
Imports System.Data
Imports System.Data.SqlClient
Imports System.Data.SqlTypes
Namespace edokadb
' /// <summary>
' /// Purpose: Error Enums used by this LLBL library.
' /// </summary>
Public Enum LLBLError
AllOk
' // Add more here (check the comma's!)
End Enum
' /// <summary>
' /// Purpose: General interface of the API generated. Contains only common methods of all classes.
' /// </summary>
Public Interface ICommonDBAccess
Function Insert() As Boolean
Function Update() As Boolean
Function Delete() As Boolean
Function SelectOne() As DataTable
Function SelectAll() As DataTable
End Interface
' /// <summary>
' /// Purpose: Abstract base class for Database Interaction classes.
' /// </summary>
Public MustInherit Class clsDBInteractionBase
Implements IDisposable
Implements ICommonDBAccess
#Region " Class Member Declarations "
Protected m_scoMainConnection As SqlConnection
Protected m_iErrorCode As SqlInt32
Protected m_bMainConnectionIsCreatedLocal As Boolean
Protected m_cpMainConnectionProvider As clsConnectionProvider
Private m_sConnectionString As String
Private m_bIsDisposed As Boolean
#End Region
' /// <summary>
' /// Purpose: Class constructor.
' /// </summary>
Public Sub New()
' // Initialize the class' members.
InitClass()
End Sub
' /// <summary>
' /// Purpose: Initializes class members.
' /// </summary>
Private Sub InitClass()
' // create all the objects and initialize other members.
m_scoMainConnection = new SqlConnection()
m_bMainConnectionIsCreatedLocal = True
m_cpMainConnectionProvider = Nothing
m_iErrorCode = New SqlInt32(LLBLError.AllOk)
m_bIsDisposed = False
End Sub
' /// <summary>
' /// Purpose: Implements the IDispose' method Dispose.
' /// </summary>
Overloads Public Sub Dispose() Implements IDisposable.Dispose
Dispose(True)
GC.SuppressFinalize(Me)
End Sub
' /// <summary>
' /// Purpose: Implements the Dispose functionality.
' /// </summary>
Overridable Overloads Protected Sub Dispose(ByVal bIsDisposing As Boolean)
' // Check to see if Dispose has already been called.
If Not m_bIsDisposed Then
If bIsDisposing Then
' // Dispose managed resources.
If m_bMainConnectionIsCreatedLocal Then
' // Object is created in this class, so destroy it here.
m_scoMainConnection.Close()
m_scoMainConnection.Dispose()
m_bMainConnectionIsCreatedLocal = True
End If
m_cpMainConnectionProvider = Nothing
m_scoMainConnection = Nothing
End If
End If
m_bIsDisposed = True
End Sub
' /// <summary>
' /// Purpose: Implements the ICommonDBAccess.Insert() method.
' /// </summary>
Public Overridable Function Insert() As Boolean Implements ICommonDBAccess.Insert
' // No implementation, throw exception
Throw New NotImplementedException()
End Function
' /// <summary>
' /// Purpose: Implements the ICommonDBAccess.Delete() method.
' /// </summary>
Public Overridable Function Delete() As Boolean Implements ICommonDBAccess.Delete
' // No implementation, throw exception
Throw New NotImplementedException()
End Function
' /// <summary>
' /// Purpose: Implements the ICommonDBAccess.Update() method.
' /// </summary>
Public Overridable Function Update() As Boolean Implements ICommonDBAccess.Update
' // No implementation, throw exception
Throw New NotImplementedException()
End Function
' /// <summary>
' /// Purpose: Implements the ICommonDBAccess.SelectOne() method.
' /// </summary>
Public Overridable Function SelectOne() As DataTable Implements ICommonDBAccess.SelectOne
' // No implementation, throw exception
Throw New NotImplementedException()
End Function
' /// <summary>
' /// Purpose: Implements the ICommonDBAccess.SelectAll() method.
' /// </summary>
Public Overridable Function SelectAll() As DataTable Implements ICommonDBAccess.SelectAll
' // No implementation, throw exception
Throw New NotImplementedException()
End Function
#Region " Class Property Declarations "
Public WriteOnly Property cpMainConnectionProvider() As clsConnectionProvider
Set(ByVal Value As clsConnectionProvider)
If Value Is Nothing Then
' // Invalid value
Throw New ArgumentNullException("cpMainConnectionProvider", "Nothing passed as value to this property which is not allowed.")
End If
' // A connection provider object is passed to this class.
' // Retrieve the SqlConnection object, if present and create a
' // reference to it. If there is already a MainConnection object
' // referenced by the membervar, destroy that one or simply
' // remove the reference, based on the flag.
If Not (m_scoMainConnection Is Nothing) Then
' // First get rid of current connection object. Caller is responsible
If m_bMainConnectionIsCreatedLocal Then
' // Is local created object, close it and dispose it.
m_scoMainConnection.Close()
m_scoMainConnection.Dispose()
End If
' // Remove reference.
m_scoMainConnection = Nothing
End If
m_cpMainConnectionProvider = CType(Value, clsConnectionProvider)
m_scoMainConnection = m_cpMainConnectionProvider.scoDBConnection
m_bMainConnectionIsCreatedLocal = False
End Set
End Property
Public ReadOnly Property iErrorCode() As SqlInt32
Get
Return m_iErrorCode
End Get
End Property
Public Property sConnectionString() As String
Get
Return m_sConnectionString
End Get
Set (ByVal Value As String)
m_sConnectionString = Value
m_scoMainConnection.ConnectionString = m_sConnectionString
End Set
End Property
#End Region
End Class
End Namespace

View File

@@ -0,0 +1,590 @@
' ///////////////////////////////////////////////////////////////////////////
' // Description: Data Access class for the table 'Dokumentart'
' // Generated by LLBLGen v1.2.1045.38210 Final on: Donnerstag, 26. Dezember 2002, 13:00:24
' // Because the Base Class already implements IDispose, this class doesn't.
' ///////////////////////////////////////////////////////////////////////////
Imports System
Imports System.Data
Imports System.Data.SqlTypes
Imports System.Data.SqlClient
Namespace edokadb
' /// <summary>
' /// Purpose: Data Access class for the table 'Dokumentart'.
' /// </summary>
Public Class clsDokumentart
Inherits clsDBInteractionBase
#Region " Class Member Declarations "
Private m_bAktiv As SqlBoolean
Private m_daMutiert_am, m_daErstellt_am As SqlDateTime
Private m_iMandantnr, m_iSprache, m_iImageindexopen, m_iMutierer, m_iDokumentartnr, m_iParentid, m_iImageindex, m_iSort As SqlInt32
Private m_sBezeichnung, m_sBeschreibung As SqlString
#End Region
' /// <summary>
' /// Purpose: Class constructor.
' /// </summary>
Public Sub New()
' // Nothing for now.
End Sub
' /// <summary>
' /// Purpose: Insert method. This method will insert one new row into the database.
' /// </summary>
' /// <returns>True if succeeded, otherwise an Exception is thrown. </returns>
' /// <remarks>
' /// Properties needed for this method:
' /// <UL>
' /// <LI>iDokumentartnr</LI>
' /// <LI>sBezeichnung. May be SqlString.Null</LI>
' /// <LI>iParentid. May be SqlInt32.Null</LI>
' /// <LI>iSort. May be SqlInt32.Null</LI>
' /// <LI>iImageindex. May be SqlInt32.Null</LI>
' /// <LI>iImageindexopen. May be SqlInt32.Null</LI>
' /// <LI>sBeschreibung. May be SqlString.Null</LI>
' /// <LI>iMandantnr. May be SqlInt32.Null</LI>
' /// <LI>iSprache. May be SqlInt32.Null</LI>
' /// <LI>bAktiv. May be SqlBoolean.Null</LI>
' /// <LI>daErstellt_am. May be SqlDateTime.Null</LI>
' /// <LI>daMutiert_am. May be SqlDateTime.Null</LI>
' /// <LI>iMutierer. May be SqlInt32.Null</LI>
' /// </UL>
' /// Properties set after a succesful call of this method:
' /// <UL>
' /// <LI>iErrorCode</LI>
' /// </UL>
' /// </remarks>
Overrides Public Function Insert() As Boolean
Dim scmCmdToExecute As SqlCommand = New SqlCommand()
scmCmdToExecute.CommandText = "dbo.[pr_Dokumentart_Insert]"
scmCmdToExecute.CommandType = CommandType.StoredProcedure
' // Use base class' connection object
scmCmdToExecute.Connection = m_scoMainConnection
Try
scmCmdToExecute.Parameters.Add(New SqlParameter("@idokumentartnr", SqlDbType.Int, 4, ParameterDirection.Input, False, 10, 0, "", DataRowVersion.Proposed, m_iDokumentartnr))
scmCmdToExecute.Parameters.Add(New SqlParameter("@sbezeichnung", SqlDbType.VarChar, 50, ParameterDirection.Input, True, 0, 0, "", DataRowVersion.Proposed, m_sBezeichnung))
scmCmdToExecute.Parameters.Add(New SqlParameter("@iparentid", SqlDbType.Int, 4, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, m_iParentid))
scmCmdToExecute.Parameters.Add(New SqlParameter("@isort", SqlDbType.Int, 4, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, m_iSort))
scmCmdToExecute.Parameters.Add(New SqlParameter("@iimageindex", SqlDbType.Int, 4, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, m_iImageindex))
scmCmdToExecute.Parameters.Add(New SqlParameter("@iimageindexopen", SqlDbType.Int, 4, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, m_iImageindexopen))
scmCmdToExecute.Parameters.Add(New SqlParameter("@sbeschreibung", SqlDbType.VarChar, 50, ParameterDirection.Input, True, 0, 0, "", DataRowVersion.Proposed, m_sBeschreibung))
scmCmdToExecute.Parameters.Add(New SqlParameter("@imandantnr", SqlDbType.Int, 4, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, m_iMandantnr))
scmCmdToExecute.Parameters.Add(New SqlParameter("@isprache", SqlDbType.Int, 4, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, m_iSprache))
scmCmdToExecute.Parameters.Add(New SqlParameter("@baktiv", SqlDbType.Bit, 1, ParameterDirection.Input, True, 1, 0, "", DataRowVersion.Proposed, m_bAktiv))
scmCmdToExecute.Parameters.Add(New SqlParameter("@daerstellt_am", SqlDbType.DateTime, 8, ParameterDirection.Input, True, 23, 3, "", DataRowVersion.Proposed, m_daErstellt_am))
scmCmdToExecute.Parameters.Add(New SqlParameter("@damutiert_am", SqlDbType.DateTime, 8, ParameterDirection.Input, True, 23, 3, "", 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.
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_Dokumentart_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("clsDokumentart::Insert::Error occured." + ex.Message, ex)
Finally
If m_bMainConnectionIsCreatedLocal Then
' // Close connection.
m_scoMainConnection.Close()
End If
scmCmdToExecute.Dispose()
End Try
End Function
' /// <summary>
' /// Purpose: Update method. This method will Update one existing row in the database.
' /// </summary>
' /// <returns>True if succeeded, otherwise an Exception is thrown. </returns>
' /// <remarks>
' /// Properties needed for this method:
' /// <UL>
' /// <LI>iDokumentartnr</LI>
' /// <LI>sBezeichnung. May be SqlString.Null</LI>
' /// <LI>iParentid. May be SqlInt32.Null</LI>
' /// <LI>iSort. May be SqlInt32.Null</LI>
' /// <LI>iImageindex. May be SqlInt32.Null</LI>
' /// <LI>iImageindexopen. May be SqlInt32.Null</LI>
' /// <LI>sBeschreibung. May be SqlString.Null</LI>
' /// <LI>iMandantnr. May be SqlInt32.Null</LI>
' /// <LI>iSprache. May be SqlInt32.Null</LI>
' /// <LI>bAktiv. May be SqlBoolean.Null</LI>
' /// <LI>daErstellt_am. May be SqlDateTime.Null</LI>
' /// <LI>daMutiert_am. May be SqlDateTime.Null</LI>
' /// <LI>iMutierer. May be SqlInt32.Null</LI>
' /// </UL>
' /// Properties set after a succesful call of this method:
' /// <UL>
' /// <LI>iErrorCode</LI>
' /// </UL>
' /// </remarks>
Overrides Public Function Update() As Boolean
Dim scmCmdToExecute As SqlCommand = New SqlCommand()
scmCmdToExecute.CommandText = "dbo.[pr_Dokumentart_Update]"
scmCmdToExecute.CommandType = CommandType.StoredProcedure
' // Use base class' connection object
scmCmdToExecute.Connection = m_scoMainConnection
Try
scmCmdToExecute.Parameters.Add(New SqlParameter("@idokumentartnr", SqlDbType.Int, 4, ParameterDirection.Input, False, 10, 0, "", DataRowVersion.Proposed, m_iDokumentartnr))
scmCmdToExecute.Parameters.Add(New SqlParameter("@sbezeichnung", SqlDbType.VarChar, 50, ParameterDirection.Input, True, 0, 0, "", DataRowVersion.Proposed, m_sBezeichnung))
scmCmdToExecute.Parameters.Add(New SqlParameter("@iparentid", SqlDbType.Int, 4, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, m_iParentid))
scmCmdToExecute.Parameters.Add(New SqlParameter("@isort", SqlDbType.Int, 4, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, m_iSort))
scmCmdToExecute.Parameters.Add(New SqlParameter("@iimageindex", SqlDbType.Int, 4, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, m_iImageindex))
scmCmdToExecute.Parameters.Add(New SqlParameter("@iimageindexopen", SqlDbType.Int, 4, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, m_iImageindexopen))
scmCmdToExecute.Parameters.Add(New SqlParameter("@sbeschreibung", SqlDbType.VarChar, 50, ParameterDirection.Input, True, 0, 0, "", DataRowVersion.Proposed, m_sBeschreibung))
scmCmdToExecute.Parameters.Add(New SqlParameter("@imandantnr", SqlDbType.Int, 4, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, m_iMandantnr))
scmCmdToExecute.Parameters.Add(New SqlParameter("@isprache", SqlDbType.Int, 4, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, m_iSprache))
scmCmdToExecute.Parameters.Add(New SqlParameter("@baktiv", SqlDbType.Bit, 1, ParameterDirection.Input, True, 1, 0, "", DataRowVersion.Proposed, m_bAktiv))
scmCmdToExecute.Parameters.Add(New SqlParameter("@daerstellt_am", SqlDbType.DateTime, 8, ParameterDirection.Input, True, 23, 3, "", DataRowVersion.Proposed, m_daErstellt_am))
scmCmdToExecute.Parameters.Add(New SqlParameter("@damutiert_am", SqlDbType.DateTime, 8, ParameterDirection.Input, True, 23, 3, "", 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.
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_Dokumentart_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("clsDokumentart::Update::Error occured.", ex)
Finally
If m_bMainConnectionIsCreatedLocal Then
' // Close connection.
m_scoMainConnection.Close()
End If
scmCmdToExecute.Dispose()
End Try
End Function
' /// <summary>
' /// Purpose: Delete method. This method will Delete one existing row in the database, based on the Primary Key.
' /// </summary>
' /// <returns>True if succeeded, otherwise an Exception is thrown. </returns>
' /// <remarks>
' /// Properties needed for this method:
' /// <UL>
' /// <LI>iDokumentartnr</LI>
' /// </UL>
' /// Properties set after a succesful call of this method:
' /// <UL>
' /// <LI>iErrorCode</LI>
' /// </UL>
' /// </remarks>
Public Overrides Function Delete() As Boolean
Dim scmCmdToExecute As SqlCommand = New SqlCommand()
scmCmdToExecute.CommandText = "dbo.[pr_Dokumentart_Delete]"
scmCmdToExecute.CommandType = CommandType.StoredProcedure
' // Use base class' connection object
scmCmdToExecute.Connection = m_scoMainConnection
Try
scmCmdToExecute.Parameters.Add(New SqlParameter("@idokumentartnr", SqlDbType.Int, 4, ParameterDirection.Input, False, 10, 0, "", DataRowVersion.Proposed, m_iDokumentartnr))
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.
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_Dokumentart_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("clsDokumentart::Delete::Error occured.", ex)
Finally
If m_bMainConnectionIsCreatedLocal Then
' // Close connection.
m_scoMainConnection.Close()
End If
scmCmdToExecute.Dispose()
End Try
End Function
' /// <summary>
' /// Purpose: Select method. This method will Select one existing row from the database, based on the Primary Key.
' /// </summary>
' /// <returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
' /// <remarks>
' /// Properties needed for this method:
' /// <UL>
' /// <LI>iDokumentartnr</LI>
' /// </UL>
' /// Properties set after a succesful call of this method:
' /// <UL>
' /// <LI>iErrorCode</LI>
' /// <LI>iDokumentartnr</LI>
' /// <LI>sBezeichnung</LI>
' /// <LI>iParentid</LI>
' /// <LI>iSort</LI>
' /// <LI>iImageindex</LI>
' /// <LI>iImageindexopen</LI>
' /// <LI>sBeschreibung</LI>
' /// <LI>iMandantnr</LI>
' /// <LI>iSprache</LI>
' /// <LI>bAktiv</LI>
' /// <LI>daErstellt_am</LI>
' /// <LI>daMutiert_am</LI>
' /// <LI>iMutierer</LI>
' /// </UL>
' /// Will fill all properties corresponding with a field in the table with the value of the row selected.
' /// </remarks>
Overrides Public Function SelectOne() As DataTable
Dim scmCmdToExecute As SqlCommand = New SqlCommand()
scmCmdToExecute.CommandText = "dbo.[pr_Dokumentart_SelectOne]"
scmCmdToExecute.CommandType = CommandType.StoredProcedure
Dim dtToReturn As DataTable = new DataTable("Dokumentart")
Dim sdaAdapter As SqlDataAdapter = new SqlDataAdapter(scmCmdToExecute)
' // Use base class' connection object
scmCmdToExecute.Connection = m_scoMainConnection
Try
scmCmdToExecute.Parameters.Add(new SqlParameter("@idokumentartnr", SqlDbType.Int, 4, ParameterDirection.Input, False, 10, 0, "", DataRowVersion.Proposed, m_iDokumentartnr))
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_Dokumentart_SelectOne' reported the ErrorCode: " & m_iErrorCode.ToString())
End If
If dtToReturn.Rows.Count > 0 Then
m_iDokumentartnr = New SqlInt32(CType(dtToReturn.Rows(0)("dokumentartnr"), 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)("parentid") Is System.DBNull.Value Then
m_iParentid = SqlInt32.Null
Else
m_iParentid = New SqlInt32(CType(dtToReturn.Rows(0)("parentid"), Integer))
End If
If dtToReturn.Rows(0)("sort") Is System.DBNull.Value Then
m_iSort = SqlInt32.Null
Else
m_iSort = New SqlInt32(CType(dtToReturn.Rows(0)("sort"), Integer))
End If
If dtToReturn.Rows(0)("imageindex") Is System.DBNull.Value Then
m_iImageindex = SqlInt32.Null
Else
m_iImageindex = New SqlInt32(CType(dtToReturn.Rows(0)("imageindex"), Integer))
End If
If dtToReturn.Rows(0)("imageindexopen") Is System.DBNull.Value Then
m_iImageindexopen = SqlInt32.Null
Else
m_iImageindexopen = New SqlInt32(CType(dtToReturn.Rows(0)("imageindexopen"), Integer))
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)("mandantnr") Is System.DBNull.Value Then
m_iMandantnr = SqlInt32.Null
Else
m_iMandantnr = New SqlInt32(CType(dtToReturn.Rows(0)("mandantnr"), Integer))
End If
If dtToReturn.Rows(0)("sprache") Is System.DBNull.Value Then
m_iSprache = SqlInt32.Null
Else
m_iSprache = New SqlInt32(CType(dtToReturn.Rows(0)("sprache"), Integer))
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("clsDokumentart::SelectOne::Error occured.", ex)
Finally
If m_bMainConnectionIsCreatedLocal Then
' // Close connection.
m_scoMainConnection.Close()
End If
scmCmdToExecute.Dispose()
sdaAdapter.Dispose()
End Try
End Function
' /// <summary>
' /// Purpose: SelectAll method. This method will Select all rows from the table.
' /// </summary>
' /// <returns>DataTable object if succeeded, otherwise an Exception is thrown. </returns>
' /// <remarks>
' /// Properties set after a succesful call of this method:
' /// <UL>
' /// <LI>iErrorCode</LI>
' /// </UL>
' /// </remarks>
Public Overrides Function SelectAll() As DataTable
Dim scmCmdToExecute As SqlCommand = New SqlCommand()
scmCmdToExecute.CommandText = "dbo.[pr_Dokumentart_SelectAll]"
scmCmdToExecute.CommandType = CommandType.StoredProcedure
Dim dtToReturn As DataTable = New DataTable("Dokumentart")
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_Dokumentart_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("clsDokumentart::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 [iDokumentartnr]() As SqlInt32
Get
Return m_iDokumentartnr
End Get
Set(ByVal Value As SqlInt32)
Dim iDokumentartnrTmp As SqlInt32 = Value
If iDokumentartnrTmp.IsNull Then
Throw New ArgumentOutOfRangeException("iDokumentartnr", "iDokumentartnr can't be NULL")
End If
m_iDokumentartnr = 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 [iParentid]() As SqlInt32
Get
Return m_iParentid
End Get
Set(ByVal Value As SqlInt32)
m_iParentid = Value
End Set
End Property
Public Property [iSort]() As SqlInt32
Get
Return m_iSort
End Get
Set(ByVal Value As SqlInt32)
m_iSort = Value
End Set
End Property
Public Property [iImageindex]() As SqlInt32
Get
Return m_iImageindex
End Get
Set(ByVal Value As SqlInt32)
m_iImageindex = Value
End Set
End Property
Public Property [iImageindexopen]() As SqlInt32
Get
Return m_iImageindexopen
End Get
Set(ByVal Value As SqlInt32)
m_iImageindexopen = 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 [iMandantnr]() As SqlInt32
Get
Return m_iMandantnr
End Get
Set(ByVal Value As SqlInt32)
m_iMandantnr = Value
End Set
End Property
Public Property [iSprache]() As SqlInt32
Get
Return m_iSprache
End Get
Set(ByVal Value As SqlInt32)
m_iSprache = 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

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,242 @@
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class Form
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(Form))
Me.MenuStrip1 = New System.Windows.Forms.MenuStrip()
Me.SchliessenToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.TreeDokVorlagen = New System.Windows.Forms.TreeView()
Me.ImageList3 = New System.Windows.Forms.ImageList(Me.components)
Me.GroupBox1 = New System.Windows.Forms.GroupBox()
Me.GroupBox2 = New System.Windows.Forms.GroupBox()
Me.C1DokumenttypFunktionen = New C1.Win.C1TrueDBGrid.C1TrueDBGrid()
Me.pnlTrenner = New System.Windows.Forms.Panel()
Me.btnsuche = New System.Windows.Forms.Button()
Me.txtSuchbegriff = New System.Windows.Forms.TextBox()
Me.lblSuche = New System.Windows.Forms.Label()
Me.MenuStrip1.SuspendLayout()
Me.GroupBox1.SuspendLayout()
Me.GroupBox2.SuspendLayout()
CType(Me.C1DokumenttypFunktionen, System.ComponentModel.ISupportInitialize).BeginInit()
Me.pnlTrenner.SuspendLayout()
Me.SuspendLayout()
'
'MenuStrip1
'
Me.MenuStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.SchliessenToolStripMenuItem})
Me.MenuStrip1.Location = New System.Drawing.Point(0, 0)
Me.MenuStrip1.Name = "MenuStrip1"
Me.MenuStrip1.Size = New System.Drawing.Size(991, 24)
Me.MenuStrip1.TabIndex = 1
Me.MenuStrip1.Text = "MenuStrip1"
'
'SchliessenToolStripMenuItem
'
Me.SchliessenToolStripMenuItem.Name = "SchliessenToolStripMenuItem"
Me.SchliessenToolStripMenuItem.Size = New System.Drawing.Size(73, 20)
Me.SchliessenToolStripMenuItem.Text = "Schliessen"
'
'TreeDokVorlagen
'
Me.TreeDokVorlagen.Dock = System.Windows.Forms.DockStyle.Fill
Me.TreeDokVorlagen.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.TreeDokVorlagen.ImageIndex = 0
Me.TreeDokVorlagen.ImageList = Me.ImageList3
Me.TreeDokVorlagen.Location = New System.Drawing.Point(3, 40)
Me.TreeDokVorlagen.Name = "TreeDokVorlagen"
Me.TreeDokVorlagen.SelectedImageIndex = 0
Me.TreeDokVorlagen.Size = New System.Drawing.Size(334, 574)
Me.TreeDokVorlagen.TabIndex = 2
Me.TreeDokVorlagen.TabStop = False
'
'ImageList3
'
Me.ImageList3.ImageStream = CType(resources.GetObject("ImageList3.ImageStream"), System.Windows.Forms.ImageListStreamer)
Me.ImageList3.TransparentColor = System.Drawing.Color.Transparent
Me.ImageList3.Images.SetKeyName(0, "")
Me.ImageList3.Images.SetKeyName(1, "")
Me.ImageList3.Images.SetKeyName(2, "")
Me.ImageList3.Images.SetKeyName(3, "")
Me.ImageList3.Images.SetKeyName(4, "")
Me.ImageList3.Images.SetKeyName(5, "")
Me.ImageList3.Images.SetKeyName(6, "")
Me.ImageList3.Images.SetKeyName(7, "")
Me.ImageList3.Images.SetKeyName(8, "")
Me.ImageList3.Images.SetKeyName(9, "")
Me.ImageList3.Images.SetKeyName(10, "")
Me.ImageList3.Images.SetKeyName(11, "")
Me.ImageList3.Images.SetKeyName(12, "")
Me.ImageList3.Images.SetKeyName(13, "")
Me.ImageList3.Images.SetKeyName(14, "")
Me.ImageList3.Images.SetKeyName(15, "")
Me.ImageList3.Images.SetKeyName(16, "")
Me.ImageList3.Images.SetKeyName(17, "")
Me.ImageList3.Images.SetKeyName(18, "")
Me.ImageList3.Images.SetKeyName(19, "")
Me.ImageList3.Images.SetKeyName(20, "")
Me.ImageList3.Images.SetKeyName(21, "")
Me.ImageList3.Images.SetKeyName(22, "")
Me.ImageList3.Images.SetKeyName(23, "")
Me.ImageList3.Images.SetKeyName(24, "")
Me.ImageList3.Images.SetKeyName(25, "")
Me.ImageList3.Images.SetKeyName(26, "")
Me.ImageList3.Images.SetKeyName(27, "")
Me.ImageList3.Images.SetKeyName(28, "")
Me.ImageList3.Images.SetKeyName(29, "")
Me.ImageList3.Images.SetKeyName(30, "")
Me.ImageList3.Images.SetKeyName(31, "")
Me.ImageList3.Images.SetKeyName(32, "")
Me.ImageList3.Images.SetKeyName(33, "")
Me.ImageList3.Images.SetKeyName(34, "")
Me.ImageList3.Images.SetKeyName(35, "")
Me.ImageList3.Images.SetKeyName(36, "")
Me.ImageList3.Images.SetKeyName(37, "")
Me.ImageList3.Images.SetKeyName(38, "")
Me.ImageList3.Images.SetKeyName(39, "")
Me.ImageList3.Images.SetKeyName(40, "")
Me.ImageList3.Images.SetKeyName(41, "")
Me.ImageList3.Images.SetKeyName(42, "")
Me.ImageList3.Images.SetKeyName(43, "")
Me.ImageList3.Images.SetKeyName(44, "")
Me.ImageList3.Images.SetKeyName(45, "")
Me.ImageList3.Images.SetKeyName(46, "")
Me.ImageList3.Images.SetKeyName(47, "")
Me.ImageList3.Images.SetKeyName(48, "")
Me.ImageList3.Images.SetKeyName(49, "")
Me.ImageList3.Images.SetKeyName(50, "")
Me.ImageList3.Images.SetKeyName(51, "")
'
'GroupBox1
'
Me.GroupBox1.Controls.Add(Me.TreeDokVorlagen)
Me.GroupBox1.Controls.Add(Me.pnlTrenner)
Me.GroupBox1.Dock = System.Windows.Forms.DockStyle.Left
Me.GroupBox1.Location = New System.Drawing.Point(0, 24)
Me.GroupBox1.Name = "GroupBox1"
Me.GroupBox1.Size = New System.Drawing.Size(340, 617)
Me.GroupBox1.TabIndex = 3
Me.GroupBox1.TabStop = False
Me.GroupBox1.Text = "Dokumenttypen"
'
'GroupBox2
'
Me.GroupBox2.Controls.Add(Me.C1DokumenttypFunktionen)
Me.GroupBox2.Dock = System.Windows.Forms.DockStyle.Top
Me.GroupBox2.Location = New System.Drawing.Point(340, 24)
Me.GroupBox2.Name = "GroupBox2"
Me.GroupBox2.Size = New System.Drawing.Size(651, 217)
Me.GroupBox2.TabIndex = 4
Me.GroupBox2.TabStop = False
Me.GroupBox2.Text = "GroupBox2"
'
'C1DokumenttypFunktionen
'
Me.C1DokumenttypFunktionen.AlternatingRows = True
Me.C1DokumenttypFunktionen.Dock = System.Windows.Forms.DockStyle.Fill
Me.C1DokumenttypFunktionen.FetchRowStyles = True
Me.C1DokumenttypFunktionen.FilterBar = True
Me.C1DokumenttypFunktionen.GroupByCaption = "Drag a column header here to group by that column"
Me.C1DokumenttypFunktionen.Images.Add(CType(resources.GetObject("C1DokumenttypFunktionen.Images"), System.Drawing.Image))
Me.C1DokumenttypFunktionen.Location = New System.Drawing.Point(3, 16)
Me.C1DokumenttypFunktionen.Name = "C1DokumenttypFunktionen"
Me.C1DokumenttypFunktionen.PreviewInfo.Location = New System.Drawing.Point(0, 0)
Me.C1DokumenttypFunktionen.PreviewInfo.Size = New System.Drawing.Size(0, 0)
Me.C1DokumenttypFunktionen.PreviewInfo.ZoomFactor = 75.0R
Me.C1DokumenttypFunktionen.PrintInfo.PageSettings = CType(resources.GetObject("C1Dokumenttypen.PrintInfo.PageSettings"), System.Drawing.Printing.PageSettings)
Me.C1DokumenttypFunktionen.RecordSelectorWidth = 16
Me.C1DokumenttypFunktionen.Size = New System.Drawing.Size(645, 198)
Me.C1DokumenttypFunktionen.TabAction = C1.Win.C1TrueDBGrid.TabActionEnum.ColumnNavigation
Me.C1DokumenttypFunktionen.TabIndex = 15
Me.C1DokumenttypFunktionen.Text = "C1Dokumenttypen"
Me.C1DokumenttypFunktionen.PropBag = resources.GetString("C1DokumenttypFunktionen.PropBag")
'
'pnlTrenner
'
Me.pnlTrenner.Controls.Add(Me.btnsuche)
Me.pnlTrenner.Controls.Add(Me.txtSuchbegriff)
Me.pnlTrenner.Controls.Add(Me.lblSuche)
Me.pnlTrenner.Dock = System.Windows.Forms.DockStyle.Top
Me.pnlTrenner.Location = New System.Drawing.Point(3, 16)
Me.pnlTrenner.Name = "pnlTrenner"
Me.pnlTrenner.Size = New System.Drawing.Size(334, 24)
Me.pnlTrenner.TabIndex = 3
'
'btnsuche
'
Me.btnsuche.Image = CType(resources.GetObject("btnsuche.Image"), System.Drawing.Image)
Me.btnsuche.Location = New System.Drawing.Point(308, 0)
Me.btnsuche.Name = "btnsuche"
Me.btnsuche.Size = New System.Drawing.Size(21, 21)
Me.btnsuche.TabIndex = 5
'
'txtSuchbegriff
'
Me.txtSuchbegriff.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.txtSuchbegriff.Location = New System.Drawing.Point(56, 0)
Me.txtSuchbegriff.Name = "txtSuchbegriff"
Me.txtSuchbegriff.Size = New System.Drawing.Size(246, 20)
Me.txtSuchbegriff.TabIndex = 4
'
'lblSuche
'
Me.lblSuche.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.lblSuche.Location = New System.Drawing.Point(8, 2)
Me.lblSuche.Name = "lblSuche"
Me.lblSuche.Size = New System.Drawing.Size(96, 23)
Me.lblSuche.TabIndex = 0
Me.lblSuche.Text = "Suchen"
'
'Form
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(991, 641)
Me.Controls.Add(Me.GroupBox2)
Me.Controls.Add(Me.GroupBox1)
Me.Controls.Add(Me.MenuStrip1)
Me.Name = "Form"
Me.Text = "Form"
Me.MenuStrip1.ResumeLayout(False)
Me.MenuStrip1.PerformLayout()
Me.GroupBox1.ResumeLayout(False)
Me.GroupBox2.ResumeLayout(False)
CType(Me.C1DokumenttypFunktionen, System.ComponentModel.ISupportInitialize).EndInit()
Me.pnlTrenner.ResumeLayout(False)
Me.pnlTrenner.PerformLayout()
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents MenuStrip1 As System.Windows.Forms.MenuStrip
Friend WithEvents SchliessenToolStripMenuItem As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents TreeDokVorlagen As System.Windows.Forms.TreeView
Friend WithEvents ImageList3 As System.Windows.Forms.ImageList
Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox
Friend WithEvents GroupBox2 As System.Windows.Forms.GroupBox
Friend WithEvents C1DokumenttypFunktionen As C1.Win.C1TrueDBGrid.C1TrueDBGrid
Friend WithEvents pnlTrenner As System.Windows.Forms.Panel
Friend WithEvents btnsuche As System.Windows.Forms.Button
Friend WithEvents txtSuchbegriff As System.Windows.Forms.TextBox
Friend WithEvents lblSuche As System.Windows.Forms.Label
End Class

View File

@@ -0,0 +1,411 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="MenuStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<metadata name="ImageList3.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>808, 17</value>
</metadata>
<data name="ImageList3.ImageStream" mimetype="application/x-microsoft.net.object.binary.base64">
<value>
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj0yLjAuMC4w
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAADA
NQAAAk1TRnQBSQFMAgEBNAEAATwBAAEUAQABEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
AwABQAMAAeADAAEBAQABCAYAATgYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
AWYDAAGZAwABzAIAATMDAAIzAgABMwFmAgABMwGZAgABMwHMAgABMwH/AgABZgMAAWYBMwIAAmYCAAFm
AZkCAAFmAcwCAAFmAf8CAAGZAwABmQEzAgABmQFmAgACmQIAAZkBzAIAAZkB/wIAAcwDAAHMATMCAAHM
AWYCAAHMAZkCAALMAgABzAH/AgAB/wFmAgAB/wGZAgAB/wHMAQABMwH/AgAB/wEAATMBAAEzAQABZgEA
ATMBAAGZAQABMwEAAcwBAAEzAQAB/wEAAf8BMwIAAzMBAAIzAWYBAAIzAZkBAAIzAcwBAAIzAf8BAAEz
AWYCAAEzAWYBMwEAATMCZgEAATMBZgGZAQABMwFmAcwBAAEzAWYB/wEAATMBmQIAATMBmQEzAQABMwGZ
AWYBAAEzApkBAAEzAZkBzAEAATMBmQH/AQABMwHMAgABMwHMATMBAAEzAcwBZgEAATMBzAGZAQABMwLM
AQABMwHMAf8BAAEzAf8BMwEAATMB/wFmAQABMwH/AZkBAAEzAf8BzAEAATMC/wEAAWYDAAFmAQABMwEA
AWYBAAFmAQABZgEAAZkBAAFmAQABzAEAAWYBAAH/AQABZgEzAgABZgIzAQABZgEzAWYBAAFmATMBmQEA
AWYBMwHMAQABZgEzAf8BAAJmAgACZgEzAQADZgEAAmYBmQEAAmYBzAEAAWYBmQIAAWYBmQEzAQABZgGZ
AWYBAAFmApkBAAFmAZkBzAEAAWYBmQH/AQABZgHMAgABZgHMATMBAAFmAcwBmQEAAWYCzAEAAWYBzAH/
AQABZgH/AgABZgH/ATMBAAFmAf8BmQEAAWYB/wHMAQABzAEAAf8BAAH/AQABzAEAApkCAAGZATMBmQEA
AZkBAAGZAQABmQEAAcwBAAGZAwABmQIzAQABmQEAAWYBAAGZATMBzAEAAZkBAAH/AQABmQFmAgABmQFm
ATMBAAGZATMBZgEAAZkBZgGZAQABmQFmAcwBAAGZATMB/wEAApkBMwEAApkBZgEAA5kBAAKZAcwBAAKZ
Af8BAAGZAcwCAAGZAcwBMwEAAWYBzAFmAQABmQHMAZkBAAGZAswBAAGZAcwB/wEAAZkB/wIAAZkB/wEz
AQABmQHMAWYBAAGZAf8BmQEAAZkB/wHMAQABmQL/AQABzAMAAZkBAAEzAQABzAEAAWYBAAHMAQABmQEA
AcwBAAHMAQABmQEzAgABzAIzAQABzAEzAWYBAAHMATMBmQEAAcwBMwHMAQABzAEzAf8BAAHMAWYCAAHM
AWYBMwEAAZkCZgEAAcwBZgGZAQABzAFmAcwBAAGZAWYB/wEAAcwBmQIAAcwBmQEzAQABzAGZAWYBAAHM
ApkBAAHMAZkBzAEAAcwBmQH/AQACzAIAAswBMwEAAswBZgEAAswBmQEAA8wBAALMAf8BAAHMAf8CAAHM
Af8BMwEAAZkB/wFmAQABzAH/AZkBAAHMAf8BzAEAAcwC/wEAAcwBAAEzAQAB/wEAAWYBAAH/AQABmQEA
AcwBMwIAAf8CMwEAAf8BMwFmAQAB/wEzAZkBAAH/ATMBzAEAAf8BMwH/AQAB/wFmAgAB/wFmATMBAAHM
AmYBAAH/AWYBmQEAAf8BZgHMAQABzAFmAf8BAAH/AZkCAAH/AZkBMwEAAf8BmQFmAQAB/wKZAQAB/wGZ
AcwBAAH/AZkB/wEAAf8BzAIAAf8BzAEzAQAB/wHMAWYBAAH/AcwBmQEAAf8CzAEAAf8BzAH/AQAC/wEz
AQABzAH/AWYBAAL/AZkBAAL/AcwBAAJmAf8BAAFmAf8BZgEAAWYC/wEAAf8CZgEAAf8BZgH/AQAC/wFm
AQABIQEAAaUBAANfAQADdwEAA4YBAAOWAQADywEAA7IBAAPXAQAD3QEAA+MBAAPqAQAD8QEAA/gBAAHw
AfsB/wEAAaQCoAEAA4ADAAH/AgAB/wMAAv8BAAH/AwAB/wEAAf8BAAL/AgAD//8A/wD/AP8AVgAO+zIA
AfsMAAH7CQACIAEAAiABAAIgCAACIAEAAiABAAIgBAAB7wG8Ae8BvATvBQAB+wIACfsBAAH7CQACIAEA
AiABAAIgCAACIAEAAiABAAIgBAAB/wS8Ae8BvAHvBQAB+wMAAvsEAAL7AQAB+yUAAv8B7wG8Ae8BvALv
BQAB+wQAAvsGAAH7AgAB/AEAAfwBAAH8AQAB/AEAAfwGAAoCCgAB/wG8Af8EvAHvBQAB+wEAAvsBAAL7
AgAC+wIAAfsBAAH8CP8HAAECCP8BAgoAAv8BvAH/Ae8BvAHvAbwFAAH7AQAC+wIABfsCAAH7AgAB/wEA
AfwB/wH8AQAC/wH8BgABAgH/CAIKAAH/AbwB/wG8Af8CvAHvBQAB+wEAAvsCAAL7AQAC+wIAAfsBAAH8
Af8B/AEAAQcBAAH8AQcB/wcAAQIB/wMCAQcEAgoAAv8BvAH/CQAB+wIAAvsBAAL7BQAB+wIAAf8BAAH8
AQAB/AEAAfwB/wH8BgABAgL/AQIBBwMCAf8BAgoAAf8BvAH/AbwBAAG8Au8FAAH7AwAC+wEAAvsBAAL7
AQAB+wEAAfwB/wH8Af8B/AEAAf8BAAEHBwABAgH/AQIBBwMCAv8BAgoABP8BAAH/AbwB7wUAAfsEAAf7
AQAB+wIAAfwBAAH/AQAB/AH/AfwBAAH8BgABAgH/AQcFAgH/AQIKAAT/AQAB/wG8BgAB+wwAAfsBAAH8
AQAB/AEAAfwBAAH8AQAB/AcAAQIB/wICAv8CAgH/AQIXAAH7DAAB+wIACP8B/AYAAQII/wECFwAO+wEA
AfwBAAH8AQAB/AEAAfwBAAH8BwAKAloAAQcCAAEHAQABBwEAAQcCAAEHNQABBwIAAQcBAAEHAQABBwIA
AQcKAAPsKAABBwIAAQcBAAEHAQABBwIAAQcIAAEHBP8BBwoAB+8DAAH8AQAB/AEAAfwBAAH8AQAB/AcA
AfwBAAH8AQAB/AEAAfwBAAH8CwAB7AEAAf8BAAP/AewBBwkAAf8FAAHvAgAB/Aj/BwAB/Aj/DQABBwf/
AewIAAL/AbwB/wG8Af8B7wMAAf8BAAH8Af8B/AEAAv8B/AcAAf8BAAH8Af8B/AEAAv8B/AwAAf8BAAL/
AgAC/wHsAgAF7wEAAf8FAAHvAgAB/AH/AfwBAAEHAQAB/AEHAf8BAATWAgAB/AH/AfwBAAEHAQAB/AEH
Af8BAATWCAAB/wEAAv8DAAH/AQcCAAH/BQAC/wG8Af8BvAH/Ae8DAAH/AQAB/AEAAfwBAAH8Af8B/AP/
AdYDAAH/AQAB/AEAAfwBAAH8Af8B/AP/AdYIAAEHA/8BAAP/AewCAAH/AbwB/wG8Af8BAAH/AgABvAUA
AfwB/wH8Af8B/AEAAf8BAAEHAQAB1gL/AdYCAAH8Af8B/AH/AfwBAAH/AQABBwEAAdYC/wHWBwAC7AH/
AQAB/wEAAf8B7AH/AQAB7AEAAf8FAAL/AbwB/wEAAf8EAAH8AQAB/wEAAfwB/wH8AQAB/AHWAQcB/wHW
AwAB/AEAAf8BAAH8Af8B/AEAAfwB1gEHAf8B1gUAAiACAAHsBf8B7AMAAf8BvAH/AbwB/wEABP8FAAH8
AQAB/AEAAfwBAAH8AQAB/AEAAtYB/wHWAgAB/AEAAfwBAAH8AQAB/AEAAfwBAALWAf8B1gQAAUECIAQA
AewBBwHsBQAB/wIAAf8MAAj/AfwB/wHWAQcB1gMACP8B/AH/AdYBBwHWAwAB4wJBBCAB7AMAAewEAAH/
AbwB/wG8AQAB/wkAAfwBAAH8AQAB/AEAAfwBAAH8AQAB/wPWAgAB/AEAAfwBAAH8AQAB/AEAAfwBAAH/
A9YCAAPjA0EFIAYABP8PAArWBgAK1gMABOMCQQMgGgAB1gj/AdYGAAHWCP8B1gQAA+MfAArWBgAK1gUA
AuM/AAEHAgABBwEAAQcBAAEHAgABBzUAAQcCAAEHAQABBwEAAQcCAAEHNQABBwIAAQcBAAEHAQABBwIA
AQcRAAoCBgAKAgYACgIHAAH8AQAB/AEAAfwBAAH8AQAB/AYAAQII/wECBgABAgj/AQIGAAECCP8BAgYA
AfwI/wcAAQIB/wgCBgABAgH/CAIGAAECAf8IAgcAAf8BAAH8Af8B/AEAAv8B/AYAAQIB/wMCAQcEAgYA
AQIB/wMCAQcEAgSYAgABAgH/AwIBBwQCBJgCAAH8Af8B/AEAAQcBAAH8AQcB/wcAAQIC/wECAQcDAgH/
AQIGAAECAv8BAgEHAwIB/wECA/8BmAIAAQIC/wECAQcDAgH/AQID/wGYAwAB/wEAAfwBAAH8AQAB/AH/
AfwGAAECAf8BAgEHAwIC/wECBgABAgH/AQIBBwMCAv8BAgSYAgABAgH/AQIBBwMCAv8BAgSYAgAB/AH/
AfwB/wH8AQAB/wEAAQcHAAECAf8BBwUCAf8BAgYAAQIB/wEHBQIB/wECBJgCAAECAf8BBwUCAf8BAgSY
AwAB/AEAAf8BAAH8Af8B/AEAAfwGAAECAf8CAgL/AgIB/wECBgABAgH/AgIC/wICAf8BAgKYAf8BmAIA
AQIB/wICAv8CAgH/AQICmAH/AZgCAAH8AQAB/AEAAfwBAAH8AQAB/AcAAQII/wECBgABAgj/AQIBmAL/
AZgCAAECCP8BAgGYAv8BmAMACP8B/AYACgIGAAoCApgB/wGYAgAKAgKYAf8BmAIAAfwBAAH8AQAB/AEA
AfwBAAH8GwABmAH/ApgC/wKYAf8BmAYAAZgB/wKYAv8CmAH/AZgmAAGYCP8BmAYAAZgI/wGYJgAKmAYA
CpgmAAEHAgABBwEAAQcBAAEHAgABBxEAAewDAAEHAgABBwEAAQcBAAEHAgABBxUAAQcCAAEHAQABBwEA
AQcCAAEHEQAB7AQHAgABBwEAAQcBAAEHAgABBxUAAQcCAAEHAQABBwEAAQcCAAEHBAAB7AEHAfsCBwEA
A+wEAAHsA/8BBwIAAQcBAAEHAQABBwIAAQcCAAH8AQAB/AEAAfwBAAH8AQAB/AcAAfwBAAH8AQAB/AEA
AfwBAAH8CQAB7AP/AfsB/wEAAfsBBwLsAgAB7AH/BAcB/wMHAf8BBwQAAfwI/wcAAfwI/wsAAewB+wP/
AfsBAAH/AfsBBwHsAQAB7Ar/AQcFAAH/AQAB/AH/AfwBAAL/AfwHAAH/AQAB/AH/AfwBAAL/AfwKAAHs
Av8B+wL/AQAB/wIAAewBAAHsAf8EBwH/AwcB/wEHBAAB/AH/AfwBAAEHAQAB/AEHAf8BAATWAgAB/AH/
AfwBAAEHAQAB/AEHAf8BAATWBwAB7AP/AfsB7AEAAf8B+wEHAQAB7Ar/AQcFAAH/AQAB/AEAAfwBAAH8
Af8B/AP/AdYDAAH/AQAB/AEAAfwBAAH8Af8B/AP/AdYJAAH7A/8B+wL/AQcBAAHsAf8IBwH/AQcEAAH8
Af8B/AH/AfwBAAH/AQABBwEAAdYC/wHWAgAB/AH/AfwB/wH8AQAB/wEAAQcBAAHWAv8B1gcAAgEBAAH/
AfsD/wH7AQcBAAHsCv8BBwUAAfwBAAH/AQAB/AH/AfwBAAH8AdYBBwH/AdYDAAH8AQAB/wEAAfwB/wH8
AQAB/AHWAQcB/wHWAwACAQMAAQEBAAP/AfsC/wEHAQAB7AH/AgcB/wUHAf8BBwQAAfwBAAH8AQAB/AEA
AfwBAAH8AQAC1gH/AdYCAAH8AQAB/AEAAfwBAAH8AQAB/AEAAtYB/wHWAwAB+QEBAQAB+QEAAQEDAAP/
AfsBBwEAAewK/wEHBQAI/wH8Af8B1gEHAdYDAAj/AfwB/wHWAQcB1gMAAvkCAAL5AQAD/wH7Av8BBwEA
AewB/wIHAf8FBwH/AQcEAAH8AQAB/AEAAfwBAAH8AQAB/AEAAf8D1gIAAfwBAAH8AQAB/AEAAfwBAAH8
AQAB/wPWCQAC/wH7A/8B+wEHAQAB7Aj/CwAK1gYACtYHAAHsAf8B+wP/AfsC/wEHAQAB7AH/BgcB/wHs
Af8JAAHWCP8B1gYAAdYI/wHWBwAK7AEAAewI/wHsCgAK1gYACtYSAArsTgAByAEAAd0BAAHICwABLQEA
AcIBAAEtCwABJQEAAZoBAAElGgAByAXdAcgJAAEtBcIBLQkAASUFmgElGAACyAHdAcgBAAHIAd0JAAIt
AcIBLQEAAS0BwgkAAiUBmgElAQABJQGaBAAB/AEAAfwBAAH8AQAB/AEAAfwMAAHIAt0BAAHsAQAC3QHI
BwABLQLCAQAB7AEAAsIBLQcAASUCmgEAAewBAAKaASUBAAH8CP8NAALIAd0ByAEAAcgB3QkAAi0BwgEt
AQABLQHCCQACJQGaASUBAAElAZoEAAH/AQAB/AH/AfwBAAL/AfwNAAHIBd0ByAkAAS0FwgEtCQABJQWa
ASUCAAH8Af8B/AEAAQcBAAH8AQcB/w4AAsgBAAHdAQAByAoAAi0BAAHCAQABLQoAAiUBAAGaAQABJQQA
Af8BAAH8AQAB/AEAAfwB/wH8CAAByAEAAd0BAAHIAgAEyAUAAS0BAAHCAQABLQIABC0FAAElAQABmgEA
ASUCAAQlAwAB/AH/AfwB/wH8AQAB/wEAAQcIAAHIBd0ByAkAAS0FwgEtCQABJQWaASUJAAH8AQAB/wEA
AfwB/wH8AQAB/AYAAsgB3QHIAQAByAHdCQACLQHCAS0BAAEtAcIJAAIlAZoBJQEAASUBmgkAAfwBAAH8
AQAB/AEAAfwBAAH8BwAByALdAQAB7AEAAt0ByAcAAS0CwgEAAewBAALCAS0HAAElApoBAAHsAQACmgEl
CAAI/wH8BgACyAHdAcgBAAHIAd0JAAItAcIBLQEAAS0BwgkAAiUBmgElAQABJQGaCQAB/AEAAfwBAAH8
AQAB/AEAAfwIAAHIBd0ByAkAAS0FwgEtCQABJQWaASUZAALIAQAB3QEAAcgKAAItAQABwgEAAS0KAAIl
AQABmgEAASUcAATIDAAELQwABCUsAAEtAVUBLQ0AAS0BVQEtIQAB7Af/BAABLQFVAS0NAAEtAVUBLRIA
ASoBAAGaAQABKgoAAewH/wQAAS0BVQEtDQABLQFVAS0RAAEqBZoBKgkAAewH/wQAAy0CAAf/BAADLQIA
B/8HAAIqAZoBKgEAASoBmgwABv8EAAHsBQAG/wQAAewFAAb/BwABKgKaAQAB7AEAApoBKgMABrUBAAb/
AgAC7AXhAgAF/wIAAuwC6AHvAf8B7wIABf8HAAIqAZoBKgEAASoBmgUABLUDAAb/AgAB7AHhAf8F4QEA
Bf8CAAHsA+gB7wH/Ae8B/wEABf8IAAEqBZoBKgQAA7UBAAK1AQAG/wEAAewB4QH/B+EBAAT/AQAB7AHo
Af8C6AHvAf8B7wL/AQAE/wgAAioBAAGaAQABKgUABrUBAAT/AewCAAHsAf8B4QH/BuEBAAT/AQAB7AH/
A+gB7wH/Ae8C/wEABP8DAAEqAQABmgEAASoCAAQqBQAFtQMAA/8B7AH/AQAB7AHhAf8H4QEABP8BAAHs
AegC/wHoAe8B/wHvAv8BAAT/AgABKgWaASoKAAe1AQAF7AEAAewD/wHhAf8E4QEAAv8B7AIAAewB/wHo
Av8B7wH/Ae8C/wEAAv8B7AIAAioBmgEqAQABKgGaCwAHtQEAAf8B7AUAAewD/wHhAf8B4QH/AQAD/wHs
Af8CAAHsAf8B6AH/Ae8B/wHvAf8BAAP/AewB/wEAASoCmgEAAewBAAKaASoJAAS1AQACtQEAAf8B7AH/
BAAC7AH/AeEB/wHhAf8CAAXsAgAC7AH/AegB7wH/Ae8CAAXsAQACKgGaASoBAAEqAZoLAAS1AQABtQEA
BOwGAAPsAgAD/wHsBwAD7AIAA/8B7AUAASoFmgEqCgAGtQ0AAewF/wHsAf8IAAHsBf8B7AH/BAACKgEA
AZoBAAEqHgAI7AgACOwGAAQqPAABLQFVAS0NAAHsBQcB7AkAAewFBwHsCQAB7AUHAewJAAEtAVUBLQ0A
Aa8FtgGvAewIAAEtBVoBLQHsCAABJQVNASUB7AgAAS0BVQEtDQABrwW2Aq8B7AcAAS0FWgItAewHAAEl
BU0CJQHsBwADLQ0AAa8FtgOvAewGAAEtBVoDLQHsBgABJQVNAyUB7AYAAewPAAGvBbYBAAOvAewFAAEt
BVoBAAMtAewFAAElBU0BAAMlAewDAALsBOEBbQIABLUEAALsBf8CAAOvBAAC7AX/AgADLQQAAuwF/wIA
AyUDAAHsBeEBbQG8AQACtQUAA+wF/wEAAQcBAAKvAwAD7AX/AQABBwEAAi0DAAPsBf8BAAEHAQACJQIA
AewB4QH/BOEBbQK8AgACtQMAAuwBBwXsAgcB/wEAAa8DAALsAQcF7AIHAf8BAAEtAwAC7AEHBewCBwH/
AQABJQIAAewB/wXhAW0CvAEAA7UDAAHsAQcB7AMHAuwBBwP/BAAB7AEHAewDBwLsAQcD/wQAAewBBwHs
AwcC7AEHA/8DAAHsAeED/wLhAW0CvAEAArUEAAHsAf8BBwHsAwcBAAXsAwAB7AH/AQcB7AMHAQAF7AMA
AewB/wEHAewDBwEABewCAAHsAf8B4QL/AuEBbQK8AQAEtQMAAewB/wEHAewBBwEAAewE/wEHBAAB7AH/
AQcB7AEHAQAB7AT/AQcEAAHsAf8BBwHsAQcBAAHsBP8BBwMAAewB/wHhAf8C4QFtAbwBAAW1BAAB7AH/
AQcCAAHsBP8BBwUAAewB/wEHAgAB7AT/AQcFAAHsAf8BBwIAAewE/wEHAwAC7AH/AeEB/wHhAW0CAAK1
AQACtQUAAewB/wMABewGAAHsAf8DAAXsBgAB7AH/AwAF7AUAA+wCAAS1AQABtQcAAewPAAHsDwAB7BIA
BrVMAAESAZQEkzEAARMB6gQSAeoBbgEAARIBlASTEwAB7AUHAewJAAHsBQcB7AcAAeoBtwOUAbcBkwFu
AQABEgGUBJMTAAExBVkBMQHsCAAB5gXWAeYB7AYAARIBlAKTAbcBDgMAARIBlASTAQAG1wEABvQFAAEx
BVkCMQHsBwAB5gXWAuYB7AUAARIBlAGTAZQBEgEAARIBvQEAAeoBtwGUA5MBAATXBQAE9AUAATEFWQMx
AewGAAHmBdYD5gHsBAABEgGUAZMBtwEAARICtwEAARACEgFuApMBAAPXAQAC1wEAAvQBAAP0BQABMQVZ
AQADMQHsBQAB5gXWAQAD5gHsAwABEgGUApMCtwGUAbcBEwESAW0BAAESAbcBkwEABtcBAAb0BAAC7AX/
AgADMQQAAuwF/wIAA+YDAAESAZQCkwG3ARMBEgETAr0BbQEAAREBjgGUAQAF1wMABfQDAAPsBf8BAAEH
AQACMQMAA+wF/wEAAQcBAALmAwABEgGUAZMBtwEOBAABEQQAAZMBAAXXAQAH9AMAAuwBBwXsAgcB/wEA
ATEDAALsAQcF7AIHAf8BAAHmAwAB6wGTAZQBRAEAARAB/wHxAgABEAH/AfEDAAXXAQAH9AMAAewBBwHs
AwcC7AEHA/8EAAHsAQcB7AMHAuwBBwP/BAAB7AHzAZMBEgEAAf8BAAH/AgAB/wEUAf8B9wIAA9cBAAHX
AQAC9AEABPQDAAHsAf8BBwHsAwcBAAXsAwAB7AH/AQcB7AMHAQAF7AMAAewB/wG3AUQBAAHxAf8B8QIA
AewC/wMAA9cBAALXAvQBAAT0BAAB7AH/AQcB7AEHAQAB7AT/AQcEAAHsAf8BBwHsAQcBAAHsBP8BBwMA
AewC/wG3ARAJAAGTAQAG1wf0BQAB7AH/AQcCAAHsBP8BBwUAAewB/wEHAgAB7AT/AQcDAAEUAuwB7QFu
AwABjgG3ARIBAAERAQcB/xQAAewB/wMABewGAAHsAf8DAAXsCQABvAHzAb0BGgG9BP8VAAHsDwAB7AoA
Af8B8gEAAf8BFQFDCv9aAAHqBbYKAAHqBbYGAAHsATAKAAL5AgAB+QoAARQBbQTqAW0B6wEAAeoFtgEA
ARQBbQTqAW0B6wEAAeoFtgUAAewBMAF6DAACvAsAAW0B3QO2Ad0BtQHrAQAB6gW2AQABbQHdA7YB3QG1
AesBAAHqBbYEAALsAXoBAAL5CQACvAIAAW0JAAHqA7YB3QEPAwAB6gW2AQAB6gO2Ad0BDwMAAeoFtgEA
AewCMAHsAXoBAAK8CwADvAEAAf8BAAHsBgAB6gO2ARIBAAHqAd4BAAFtAd0EtgEAAeoDtgESAQAB6gHe
AQABbQHdBLYBAAEwA3oBAAK8AgABbQYAAuwEvAEAAv8HAAHqArYB1wEAARIC3QEAARACEgGNArYBAAHq
ArYB1wEAARIC3QEAARACEgGNArYB7AF6AQACegIAA7wBAAFWAQABVgMAAuwBAAS8AwABUAEAAVADAAHq
A7YB1wHdAbYB3QISAW0BAAHqAdcBtgEAAeoDtgHXAd0BtgHdAhIBbQEAAeoB1wG2AQADegEwAQAEvAEA
AlYEAALsAQACvAIAA/8BAAG8BAAB6gO2Ad0BEgHqARIC3gFtAQABEQH3AbYBAAHqA7YB3QESAeoBEgLe
AW0BAAERAfcBtgIAAewCAAHsAQAEvAYAA+wBAAK8AQAD/wEAAbwEAAHqArYB3QEPBAABQwQAAbUBAAHq
ArYB3QEPBAABQwQAAbUEAALsAQACvAIAA/8EAAXsAQAE/wEAAbwDAAHrArYBEgEAARAB/wHxAgABEAH/
AfEDAAHrArYBEgEAARAB/wHxAgABEAH/AfEGAAPsAQACvAEAA/8KAAL/AgACvAMAAewB8wG2AeoBAAH/
AQAB/wIAAf8BFAH/AfcCAAHsAfMBtgHqAQAB/wEAAf8CAAH/ARQB/wH3BgAF7AEABP8GAAO8AQAC/wEA
A7wCAAHsAf8B3QESAQAB8QH/AfECAAHsAv8DAAHsAf8B3QESAQAB8QH/AfECAAHsAv8NAAL/CQAFvAEA
AbwEAAHsAv8B1wEQCQABtgEAAewC/wHXARAJAAG2CAADvAEAAv8NAAHsArwDAAEUA+wBrgMAAbUB3QHq
AQABEQEHAf8BAAEUA+wBrgMAAbUB3QHqAQABEQEHAf8JAAW8CwAF7AkAAbwB9AHyAfEB3gT/BwABvAH0
AfIB8QHeBP8gAAH/AfIBAAH/ARUBQwv/AfIBAAH/ARUBQwr/FAABBwIAAQcBAAEHAQABBwIAAQc1AAEH
AgABBwEAAQcBAAEHAgABBxgAAv8bAAEHAgABBwEAAQcBAAEHAgABBxYAAv8CAAL/BQAKAgYACgIMAAHs
DAAB8wH/AgAC/wIAAv8DAAECCP8BAgYAAQII/wECDAAB7AMDBgAB7AL/AgAC/wIAAv8CAAH/AgABAgH/
CAIGAAECAf8IAgwAAewB/wHsAQMJAAHzAf8CAAL/AgAC/wMAAQIB/wMCAQcEAgSYAgABAgH/AwIBBwQC
BJgIAAHsAfsB7AEDBgAB7AL/AgAC/wIAAv8CAAH/AgABAgL/AQIBBwMCAf8BAgP/AZgCAAECAv8BAgEH
AwIB/wECA/8BmAgAAewB/wHsAQMJAAHzAf8CAAL/AgAC/wMAAQIB/wECAQcDAgL/AQIEmAIAAQIB/wEC
AQcDAgL/AQIEmAcAAewB/wH7AewBAwYAAewC/wIAAv8CAAL/AgAB/wIAAQIB/wEHBQIB/wECBJgCAAEC
Af8BBwUCAf8BAgSYBgAB7AH7Af8DBwEDCAAB8wH/AgAC/wIAAv8DAAECAf8CAgL/AgIB/wECApgB/wGY
AgABAgH/AgIC/wICAf8BAgKYAf8BmAUAAewC/wEHAfsCBwEDAewEAAHsAv8CAAb/AgAB/wIAAQII/wEC
AZgC/wGYAgABAgj/AQIBmAL/AZgEAAHsAf8C+wH/BAcBAwHsBgAK/wMACgICmAH/AZgCAAoCApgB/wGY
AgAC7AH7Af8C+wP/AQcB/wIHAQMCAAHsDP8HAAGYAf8CmAL/ApgB/wGYBgABmAH/ApgC/wKYAf8BmAIA
DuwDAALsCP8JAAGYCP8BmAYAAZgI/wGYFQAC7AT/CwAKmAYACpgXAALsHQAB7AQABewOAAFQJQAC7AIH
AfkB+wH+BV4OAAJQFQAB+QQABfkEAAHsAwcE7AVeDQAEUBQAAvkDAAL5BwAB+gH7Af8BBwEAAfkB+wH+
BF4B7AMABVAEAAZQCgIIAAT5BAACGgQAAewC+gH7AQcBAAH5Av4BBwLsBQACUAYABlABAAECCP8BAgcA
BvkDAAEaBQAB7AEHAfkB+wH6AwAFBwYAAhoEAAJQAQACUAIAAQIB/wgCBgAG+QQABBoCAAHsAwcB+QMA
AewBBwkAARoFAAFQAgABUAMAAQIB/wMCAQcEAgYAAvkBAAL5BgADGgIAAewDBwH5AwAB7AReAewFAAQa
AgABUAYAAQIC/wECAQcDAgH/AQIGAAH5AgAB+QYABRoBAAHsAgcB+QH7AQAD7AVeBgADGgIAAVAGAAEC
Af8BAgEHAwIC/wECBgAB+QkAAxoEAAEHAfkB+wH6BOwFXgUABRoIAAECAf8BBwUCAf8BAgYAAfkLAAIa
AwAB7AH7AfoB/gEAAwcB7AH/AQcHAAMaCgABAgH/AgIC/wICAf8BAgcAAfkQAAbsAgcB7AL/AQcHAAIa
CQABAgj/AQIYAAHsBF4B7AIAAewD/wEHEQAKAhgAAewEXgHsAwAB/wLsAf8zAAbsBwAB7DMAA+xaAAHs
PwAB7AsHCwAHtgkAB+QJAAd1AgAB7Ar/AQcLAAHzBQABtgkAAcIFAAHkCQABGwUAAXUCAAHsAf8EBwH/
AwcB/wEHCwAC8wO8AfMBtgkAAsIBngHCAZ4BwgHkCQACGwG9Af8BvQH/AXUCAAHsCv8BBwUABbYBAAHz
BQABtgMABeQBAAHCBQAB5AMABXUBAAEbBQABdQIAAewB/wQHAf8DBwH/AQcFAAHzBQAC8wG8AfMBvAHz
AbYDAAHCBQACwgGeAcIBngHCAeQDAAEbBQACGwG9Af8BvQH/AXUCAAHsCv8BBwUAAfMDvAHzAQAB8wIA
AfMGAAHCAZ4BwgGeAcIBAAHCAgABngYAARsBvQH/Ab0B/wEAARsCAAG9BQAB7AH/CAcB/wEHBQAB8wUA
AvMBvAHzAQAB8wQAAcIFAALCAZ4BwgEAAcIEAAEbBQACGwG9ARsBAAH/AwAB7Ar/AQcFAAHzAbwB8wG8
AfMBAATzBgABwgGeAcIBngHCAQAEwgYAARsBvQH/Ab0B/wEABBsFAAHsAf8CBwH/BQcB/wEHBQAB8wIA
AfMMAAHCAgABwgwAARsCAAH/CwAB7Ar/AQcFAAHzAbwC8wEAAfMKAAHCAZ4CwgEAAcIKAAEbAb0BGwH0
AQAB/wkAAewB/wIHAf8FBwH/AQcFAATzDAAEwgwABBsLAAHsCP83AAHsAf8GBwH/AewB/zUAAewI/wHs
NgAK7A0AATAB7AcAAewDAAEHAgABBwEAAQcBAAEHAgABBycAATAB+wLsBgAB7AQHAgABBwEAAQcBAAEH
AgABByYAATAD+wLsBQAB7AP/AQcCAAEHAQABBwEAAQcCAAEHCAAHWQkAB9YGAAEwBfsC7AQAAewB/wQH
Af8DBwH/AQcLAAHDBQABWQkAARkFAAHWBQABMAL7AgAD+wLsAwAB7Ar/AQcLAALDAZoBwwGaAcMBWQkA
AhkB3QEZAd0BGQHWBAABMAP7AgAE+wLsAgAB7AH/BAcB/wMHAf8BBwUABVkBAAHDBQABWQMABdYBAAEZ
BQAB1gMAATAL+wLsAQAB7Ar/AQcFAAHDBQACwwGaAcMBmgHDAVkDAAEZBQACGQHdARkB3QEZAdYCAAEw
BfsC6gb7A+wB/wgHAf8BBwUAAcMBmgHDAZoBwwEAAcMCAAHDBgABGQHdARkB3QEZAQABGQIAAd0FAAEw
BfsCAAb7AewBAAHsCv8BBwUAAcMFAALDAZoBwwEAAcMEAAEZBQACGQHdARkBAAEZBAABMAT7AgAF+wHs
AgAB7AH/AgcB/wUHAf8BBwUAAcMBmgHDAZoBwwEABMMGAAEZAd0BGQHdARkBAAQZBwABMAP7AgAE+wHs
AwAB7Ar/AQcFAAHDAgABwwwAARkCAAEZDgABMAL7AgAD+wHsBAAB7AH/AgcB/wUHAf8BBwUAAcMBmgLD
AQABwwoAARkB3QIZAQABGQ0AATAB+wIAAvsB7AUAAewI/wgABMMMAAQZEAABMAP7AewGAAHsAf8GBwH/
AewB/ysAATAB+wHsBwAB7Aj/AewtAAEwCAAK7CYAAUIBTQE+BwABPgMAASgDAAFAAwAB4AMAAQEBAAEB
BgABBxYAA/+FAAT/AX8B/gIABP8BYAEGAgAB/wEkAf8BJAFgAQYCAAH/ASQB/wEkAWABBgIABP8BYAEG
AwABPwEAAT8BYAEGAwABPwEAAT8BYAEGAwABPwEAAT8BYAEGAwABPwEAAT8BYAEGAwABPwEAAT8BYAEG
AwABPwEAAT8BYAEGAwABPwEAAT8BYAEOAwABPwEAAT8BYAEeAwABPwEAAT8BfwH+AwABPwEAAT8EAAb/
AfABAAH/AYcE/wHwAQAB/gEDAfwBAQL/AfABAAH8AQEB/AEBAQABPwEAAT8B+AEAAfwBAQEAAT8BAAE/
AfgCAAEBAQABPwEAAT8B+AIAAQEBAAEDAQABAwH4AgABAQEAAQMBAAEDAfgCAAEBAQABAwEAAQMB+AIA
AQMBAAEDAQABAwHkAQEBAAEHAQABAwEAAQMBxgIAAQ8BAAEDAQABAwGAAQUBAAH/AQABAwEAAQMBAAEf
AQEB/wHwAQMB8AEDAYABIwEDAf8B8AEDAfABAwHHA/8B8AEDAfABAwHnAfEG/wHwAQAG/wHwAQAG/wHw
AQAC/wEAAT8BAAE/AQABPwEAAT8BAAE/AQABPwEAAT8BAAE/AQABPwEAAT8BAAE/AQABPwEAAT8BAAED
AQABAwEAAT8BAAE/AQABAwEAAQMBAAE/AQABPwEAAQMBAAEDAQABPwEAAT8BAAEDAQABAwEAAT8BAAE/
AQABAwEAAQMBAAE/AQABPwEAAQMBAAEDAQABPwEAAT8BAAEDAQABAwEAAT8C/wHwAQMB8AEDBP8B8AED
AfABAwT/AfABAwHwAQME/wHwAQAC/wIAAv8B8AEAAfABDwIAAv8B8AEAAeABAwMAAT8BAAE/AeABAQEA
AQcBAAE/AQABPwHwAgABBwEAAT8BAAE/AfACAAEHAQABAwEAAQMB+AIAAQcBAAEDAQABAwH4AgABBwEA
AQMBAAEDAZACAAEHAQABAwEAAQMDAAEHAQABAwEAAQMDAAEHAQABAwEAAQMDAAEHAQABAwEAAQMBmAIA
AQcB8AEDAfABAwH4AgABDwHwAQMB8AEDAfgCAAEfAfABAwHwAQMC/wEAAT8B/wGHAf8BhwH/AYcC/wH+
AQEB/gEBAf4BAQL/Af4BAAH+AQAB/gEAAv8B/AEAAfwBAAH8AgABPwH8AQAB/AEAAfwCAAE/AfwBAAH8
AQAB/AIAAT8B/gEBAf4BAQH+AQEBAAE/AeABAQHgAQEB4AEBAQABPwGAAQcBgAEHAYABBwEAAT8BgAE/
AYABPwGAAT8BAAE/AQABPwEAAT8BAAE/AQABPwEAAT8BAAE/AQABPwEAAT8BAAE/AQABPwEAAT8BAAE/
AYABfwGAAX8BgAF/Av8BgAF/AYABfwGAAX8C/wHhAf8B4QH/AeED/wH+AQAB4QH/AeEC/wGHAf4BAAHh
Af8B4QH/Af4BAQH+AQAB4AEAAeABAAH+AQAB/gEAAeABAAHgAQAB/AEAAYABAAHgAQAB4AEAAfwBAAGA
AQABgAEAAYABAAH8AQABgAEAAYABAAGAAQAB/gEBAYAFAAHgAQEBgAUAAYABBwGABQABgAE/AYABAQUA
AT8BgAEDAYABAAGAAgABPwGAAQMBgAEBAYABAQEAAT8BgAEHAeABAwHgAQMBgAF/AYABfwH4AQMB+AED
AYABfwGAAX8B+AEHAfgBBwHhAf8B4AE/AeABPwHgAT8B4QH/AeABHwHgAR8B4AEfAeEB/wHgAQ8B4AEP
AeABDwHhAf8B4AEHAeABBwHgAQcB4QH/AeABAwHgAQMB4AEDAeABAQHgAQEB4AEBAeABAQGAAQEBwAEB
AcABAQHAAQEBgAEBAYABAQGAAQEBgAEBAQABAQGAAQEBgAEBAYABAQEAAQEBgAEBAYABAQGAAQEBAAEB
AYABAQGAAQEBgAEBAgABgAEBAYABAQGAAQEBgAEAAcABAQHAAQEBwAEBAYABAAHhAQEB4QEBAeEBAQHg
AQEB8QGDAfEBgwHxAYMB/gEBAfkB/wH5Af8B+QH/Af4BAQIAAf8BvwHgAT8B4AE/AgAB/wF/AeABHwHg
AR8DAAEBAeABDwHgAQ8DAAEBAeABBwHgAQcDAAEBAeABAwHgAQMDAAEBAeABAQHgAQEDAAEBAcABAQHA
AQEDAAEBAYABAQGAAQEDAAEBAYABAQGAAQEDAAEBAYABAQGAAQEDAAEBAYABAQGAAQEDAAEBAYABAQGA
AQEDAAEBAcABAQHAAQEDAAEBAeEBAQHhAQECAAH+Af8B8QGDAfEBgwIAAf8BfwH5Af8B+QH/AfwD/wQA
AfgBfwGAAf8EAAHwAX8BwQH/BAABgAEfAcABfwUAAT8BgAEPBQABDwEAAR8FAAEBAQABAQUAAQMBAAED
BAABgAEDAQABAwQAAeABAQGAAQEEAAHgAQEBwAEBBAAB8AEAAfAFAAH4AQEB+AEBBAAB/gEBAfwBAQQA
Af8BAQH/AQEEAAH/AYEB/wGDBAAC/wHwAQAC/wH+AX8C/wHwAQAC/wH4AR8C/wHwAQAC/wHgAQcBAAE/
AQABPwH8AR8BgAEBAQABPwEAAT8B/AEfAQABAwEAAT8BAAE/AfwBHwGAAQEBAAEDAQABAwH8AR8BAAED
AQABAwEAAQMB/AEfAYABAQEAAQMBAAEDAfgBDwEAAQMBAAEDAQABAwHwAQcBgAEBAQABAwEAAQMB4AED
AQABAwEAAQMBAAEDAcABAQGAAQEBAAEDAQABAwMAAQMB8AEDAfABAwIAAYABBwHwAQMB8AEDAv8B4AEf
AfABAwHwAQMC/wH4AX8C/wHwAYEB/wH3BP8BwAEBAf8B8wL/Ae4BAwGAAQEB/wHhAv8B5gEHAYABAwEB
AcABAAE/AcMBBwEAAQ8BAwGBAQABPwGBAYMBAAEHAYMBkwEAAT8BAwEBAQMBAQHBAbcBAAE/ASYBAQED
AQEBgAG/AQABPwFuAgABAQEAAb8BAAE/AX4BAQGAAQEBAAF/AQABPwF+AQEBgAEHAQAB/wEAAT8BvgEC
AcABAwEAAf8BAAE/Af8BAAHAAgEBfwEAAT8B/wGDAcAB4AGAAX8E/wHAAf4BwQX/AeML/wEAAQcB/AEB
AfwBAQH8AQEBAAEHAfwBAQH8AQEB/AEBAQABBwH8AQEB/AEBAfwBAQEAAQcBAAEBAQABAQEAAQEBAAEH
AQABAQEAAQEBAAEBAQABBwEAAQEBAAEBAQABAQEAAQcBAAEBAQABAQEAAQEBAAEHAQABAwEAAQMBAAED
AQABBwEAAQcBAAEHAQABBwEAAQcBAAEPAQABDwEAAQ8BAAEHAQAB/wEAAf8BAAH/AQABBwEBAf8BAQH/
AQEB/wEAAQcBAwH/AQMB/wEDAf8BAAEPBv8BAAEfBv8BAAE/Af4BfwIABP8B/AE/AgAB/AEBAfwBAQH4
AR8CAAH8AQEB/AEBAfABDwEAAQcB/AEBAfwBAQHgAQcBAAEHAQABAQEAAQEBwAEDAQABBwEAAQEBAAEB
AYABAQEAAQcBAAEBAQABAQMAAQcBAAEBAQABAQEAAQEBAAEHAQABAwEAAQMBgAEDAQABBwEAAQcBAAEH
AcABBwEAAQcBAAEPAQABDwHgAQ8BAAEHAQAB/wEAAf8B8AEfAQABBwEBAf8BAQH/AfgBPwEAAQ8BAwH/
AQMB/wH8AX8BAAEfBP8B/gH/AQABPwT/Cw==
</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="btnsuche.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6
JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAXElEQVQ4T82PAQrAMAgDfbpP82eOShVX
TdkYjB4cLRoC0nHoooPmBWXmLojmhRzKQTS/oSJijv/U2e2MvHhjYO3LncUmExxQAHS63TCw9vFOETD3
vWAR8TT3G0QX/nCpA8c1czAAAAAASUVORK5CYII=
</value>
</data>
<data name="C1DokumenttypFunktionen.Images" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAA0SURBVChTdYkBCgAgDAL9/6eLIsd0eSCKhw/r9aCLtC88
vAdHMEIXKUIUhMK76EfagglgA6CqHOQpL6GyAAAAAElFTkSuQmCC
</value>
</data>
<data name="C1Dokumenttypen.PrintInfo.PageSettings" mimetype="application/x-microsoft.net.object.binary.base64">
<value>
AAEAAAD/////AQAAAAAAAAAMAgAAAFFTeXN0ZW0uRHJhd2luZywgVmVyc2lvbj0yLjAuMC4wLCBDdWx0
dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWIwM2Y1ZjdmMTFkNTBhM2EFAQAAACRTeXN0ZW0uRHJh
d2luZy5QcmludGluZy5QYWdlU2V0dGluZ3MHAAAAD3ByaW50ZXJTZXR0aW5ncwVjb2xvcglwYXBlclNp
emULcGFwZXJTb3VyY2URcHJpbnRlclJlc29sdXRpb24JbGFuZHNjYXBlB21hcmdpbnMEBAQEBAQEJ1N5
c3RlbS5EcmF3aW5nLlByaW50aW5nLlByaW50ZXJTZXR0aW5ncwIAAAAgU3lzdGVtLkRyYXdpbmcuUHJp
bnRpbmcuVHJpU3RhdGUCAAAAIVN5c3RlbS5EcmF3aW5nLlByaW50aW5nLlBhcGVyU2l6ZQIAAAAjU3lz
dGVtLkRyYXdpbmcuUHJpbnRpbmcuUGFwZXJTb3VyY2UCAAAAKVN5c3RlbS5EcmF3aW5nLlByaW50aW5n
LlByaW50ZXJSZXNvbHV0aW9uAgAAACBTeXN0ZW0uRHJhd2luZy5QcmludGluZy5UcmlTdGF0ZQIAAAAf
U3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcuTWFyZ2lucwIAAAACAAAACQMAAAAF/P///yBTeXN0ZW0uRHJh
d2luZy5QcmludGluZy5UcmlTdGF0ZQEAAAAFdmFsdWUAAgIAAAAACgoKAfv////8////AAkGAAAABQMA
AAAnU3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcuUHJpbnRlclNldHRpbmdzEgAAAAtwcmludGVyTmFtZQpk
cml2ZXJOYW1lCm91dHB1dFBvcnQLcHJpbnRUb0ZpbGUUcHJpbnREaWFsb2dEaXNwbGF5ZWQKZXh0cmFi
eXRlcwlleHRyYWluZm8GY29waWVzBmR1cGxleAdjb2xsYXRlE2RlZmF1bHRQYWdlU2V0dGluZ3MIZnJv
bVBhZ2UGdG9QYWdlB21heFBhZ2UHbWluUGFnZQpwcmludFJhbmdlDGRldm1vZGVieXRlcw1jYWNoZWRE
ZXZtb2RlAQEBAAAABwAEBAQAAAAABAAHAQEHAgceU3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcuRHVwbGV4
AgAAACBTeXN0ZW0uRHJhd2luZy5QcmludGluZy5UcmlTdGF0ZQIAAAAkU3lzdGVtLkRyYXdpbmcuUHJp
bnRpbmcuUGFnZVNldHRpbmdzAgAAAAgICAgiU3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcuUHJpbnRSYW5n
ZQIAAAAHAgIAAAAKBgcAAAAACQcAAAAAAAAACv//Bfj///8eU3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcu
RHVwbGV4AQAAAAd2YWx1ZV9fAAgCAAAA/////wH3/////P///wAJCgAAAAAAAAAAAAAADycAAAAAAAAF
9f///yJTeXN0ZW0uRHJhd2luZy5QcmludGluZy5QcmludFJhbmdlAQAAAAd2YWx1ZV9fAAgCAAAAAAAA
AAAACgUGAAAAH1N5c3RlbS5EcmF3aW5nLlByaW50aW5nLk1hcmdpbnMIAAAABGxlZnQFcmlnaHQDdG9w
BmJvdHRvbQpkb3VibGVMZWZ0C2RvdWJsZVJpZ2h0CWRvdWJsZVRvcAxkb3VibGVCb3R0b20AAAAAAAAA
AAgICAgGBgYGAgAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAABZQAAAAAAAAFlAAAAAAAAAWUAAAAAAAABZ
QAEKAAAAAQAAAAkDAAAAAfP////8////AAoKCgHy/////P///wAJDwAAAAEPAAAABgAAAGQAAABkAAAA
ZAAAAGQAAAAAAAAAAABZQAAAAAAAAFlAAAAAAAAAWUAAAAAAAABZQAs=
</value>
</data>
<data name="C1DokumenttypFunktionen.PropBag" xml:space="preserve">
<value>&lt;?xml version="1.0"?&gt;&lt;Blob&gt;&lt;Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"&gt;&lt;Data&gt;HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}Style2{}EvenRow{BackColor:White;}Normal{}RecordSelector{AlignImage:Center;}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}OddRow{BackColor:224, 224, 224;}Style3{}Footer{}Style14{}Heading{Wrap:True;Border:Flat,ControlDark,0, 1, 0, 1;AlignVert:Center;BackColor:Control;ForeColor:ControlText;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Border:None,,0, 0, 0, 0;AlignVert:Center;BackColor:ControlDark;}Style1{}Caption{Wrap:True;Trimming:Character;AlignHorz:Center;}Style6{}FilterBar{ForeColor:Black;BackColor:255, 255, 192;}&lt;/Data&gt;&lt;/Styles&gt;&lt;Splits&gt;&lt;C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FetchRowStyles="True" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"&gt;&lt;CaptionStyle parent="Style2" me="Style10" /&gt;&lt;EditorStyle parent="Editor" me="Style5" /&gt;&lt;EvenRowStyle parent="EvenRow" me="Style8" /&gt;&lt;FilterBarStyle parent="FilterBar" me="Style13" /&gt;&lt;FilterWatermarkStyle parent="FilterWatermark" me="Style14" /&gt;&lt;FooterStyle parent="Footer" me="Style3" /&gt;&lt;GroupStyle parent="Group" me="Style12" /&gt;&lt;HeadingStyle parent="Heading" me="Style2" /&gt;&lt;HighLightRowStyle parent="HighlightRow" me="Style7" /&gt;&lt;InactiveStyle parent="Inactive" me="Style4" /&gt;&lt;OddRowStyle parent="OddRow" me="Style9" /&gt;&lt;RecordSelectorStyle parent="RecordSelector" me="Style11" /&gt;&lt;SelectedStyle parent="Selected" me="Style6" /&gt;&lt;Style parent="Normal" me="Style1" /&gt;&lt;ClientRect&gt;0, 0, 643, 196&lt;/ClientRect&gt;&lt;BorderSide&gt;0&lt;/BorderSide&gt;&lt;/C1.Win.C1TrueDBGrid.MergeView&gt;&lt;/Splits&gt;&lt;NamedStyles&gt;&lt;Style parent="" me="Normal" /&gt;&lt;Style parent="Normal" me="Heading" /&gt;&lt;Style parent="Heading" me="Footer" /&gt;&lt;Style parent="Heading" me="Caption" /&gt;&lt;Style parent="Heading" me="Inactive" /&gt;&lt;Style parent="Normal" me="Selected" /&gt;&lt;Style parent="Normal" me="Editor" /&gt;&lt;Style parent="Normal" me="HighlightRow" /&gt;&lt;Style parent="Normal" me="EvenRow" /&gt;&lt;Style parent="Normal" me="OddRow" /&gt;&lt;Style parent="Heading" me="RecordSelector" /&gt;&lt;Style parent="Normal" me="FilterBar" /&gt;&lt;Style parent="FilterBar" me="FilterWatermark" /&gt;&lt;Style parent="Caption" me="Group" /&gt;&lt;/NamedStyles&gt;&lt;vertSplits&gt;1&lt;/vertSplits&gt;&lt;horzSplits&gt;1&lt;/horzSplits&gt;&lt;Layout&gt;None&lt;/Layout&gt;&lt;DefaultRecSelWidth&gt;17&lt;/DefaultRecSelWidth&gt;&lt;ClientArea&gt;0, 0, 643, 196&lt;/ClientArea&gt;&lt;PrintPageHeaderStyle parent="" me="Style15" /&gt;&lt;PrintPageFooterStyle parent="" me="Style16" /&gt;&lt;/Blob&gt;</value>
</data>
</root>

View File

@@ -0,0 +1,77 @@
Imports System.Windows.Forms
Public Class Form
Dim d As New edokadb.clsMyDokumentart
Dim dbconn As New DB_Connection
Dim db As New DB
Private Sub Form_Load(sender As Object, e As EventArgs) Handles MyBase.Load
d.Load_Neue_Dokumente_Vollstaendig(Me.TreeDokVorlagen, "", False, 0)
Dim tn As New TreeNode
Try
tn = FindNode(Me.TreeDokVorlagen.Nodes, 0, "Einzeldokumente")
TreeDokVorlagen.Nodes.Remove(tn)
Catch ex As Exception
End Try
Me.TreeDokVorlagen.ExpandAll()
Me.TreeDokVorlagen.SelectedNode = Me.TreeDokVorlagen.Nodes(0)
Me.TreeDokVorlagen.SelectedNode.EnsureVisible()
End Sub
Public Function FindNode(ByVal _nodeCollection As TreeNodeCollection, ByVal SearchVal As Integer, ByVal SearchString As String) As TreeNode
Dim tmpNode As TreeNode
For Each _child As TreeNode In _nodeCollection
If _child.Text = SearchString Then
Return _child
End If
' If InStr(UCase(_child.Text), UCase(SearchString)) > 0 Then
' Return _child
' End If
tmpNode = FindNode(_child.Nodes, SearchVal, SearchString)
If Not tmpNode Is Nothing Then
Return tmpNode
End If
Next
Return Nothing
End Function
Private Function TagValue(ByVal tag As String) As String
Dim Keyvalue As String
Keyvalue = tag
Return Keyvalue.Substring(3, Len(Keyvalue) - 3)
End Function
Private Sub TreeDokVorlagen_AfterSelect(sender As Object, e As TreeViewEventArgs) Handles TreeDokVorlagen.AfterSelect
Me.C1DokumenttypFunktionen.DataSource = Nothing
db.Get_Dokumenttyp_Funktionsgruppe(TagValue(Me.TreeDokVorlagen.SelectedNode.Tag))
Me.C1DokumenttypFunktionen.DataSource = db.dsdaten1.Tables(0)
Me.C1DokumenttypFunktionen.DataMember = db.dsdaten1.Tables(0).TableName
End Sub
Private Sub btnsuche_Click(sender As Object, e As EventArgs) Handles btnsuche.Click
dokumentvorlage_suchen()
End Sub
Private Sub txtSuchbegriff_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtSuchbegriff.KeyDown
If e.KeyCode = Keys.KeyCode.Return Then
dokumentvorlage_suchen()
End If
End Sub
Private Sub dokumentvorlage_suchen()
Me.TreeDokVorlagen.BeginUpdate()
Dim d As New edokadb.clsMyDokumentart()
d.Load_Neue_Dokumente_Vollstaendig(Me.TreeDokVorlagen, Me.txtSuchbegriff.Text, False, 0)
d.Dispose()
Me.TreeDokVorlagen.ExpandAll()
'Me.txtSuchbegriff.Text = ""
Me.TreeDokVorlagen.EndUpdate()
Try
Me.TreeDokVorlagen.SelectedNode = Me.TreeDokVorlagen.Nodes(0)
Catch
End Try
End Sub
End Class

View File

@@ -0,0 +1,19 @@
Imports System.IO
Imports System.Reflection
Module Globals
Public Connection_Overwritten As Boolean = False
Public ConnectionFilename As String = ""
Public sConnectionstring As String = ""
Public Mitarbeiternr As Integer
Public Vorlagendata_vollstaendig As New DataTable
Public Vorlagendata As New DataTable()
Public conn As New edokadb.clsConnectionProvider()
Public hasmessage As Integer
Public Function ApplicationPath() As String
Return Path.GetDirectoryName([Assembly].GetEntryAssembly().Location) + "\"
End Function
End Module

View File

@@ -0,0 +1,13 @@
'------------------------------------------------------------------------------
' <auto-generated>
' Dieser Code wurde von einem Tool generiert.
' Laufzeitversion:4.0.30319.42000
'
' Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
' der Code erneut generiert wird.
' </auto-generated>
'------------------------------------------------------------------------------
Option Strict On
Option Explicit On

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<MyApplicationData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<MySubMain>false</MySubMain>
<SingleInstance>false</SingleInstance>
<ShutdownMode>0</ShutdownMode>
<EnableVisualStyles>true</EnableVisualStyles>
<AuthenticationMode>0</AuthenticationMode>
<ApplicationType>1</ApplicationType>
<SaveMySettingsOnExit>true</SaveMySettingsOnExit>
</MyApplicationData>

View File

@@ -0,0 +1,35 @@
Imports System
Imports System.Reflection
Imports System.Runtime.InteropServices
' Allgemeine Informationen über eine Assembly werden über die folgenden
' Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
' die mit einer Assembly verknüpft sind.
' Die Werte der Assemblyattribute überprüfen
<Assembly: AssemblyTitle("Plugin_Aufhebung")>
<Assembly: AssemblyDescription("")>
<Assembly: AssemblyCompany("")>
<Assembly: AssemblyProduct("Plugin_Aufhebung")>
<Assembly: AssemblyCopyright("Copyright © 2015")>
<Assembly: AssemblyTrademark("")>
<Assembly: ComVisible(False)>
'Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird
<Assembly: Guid("2e624677-f093-47d3-b208-ffd40dc48a7c")>
' Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten:
'
' Hauptversion
' Nebenversion
' Buildnummer
' Revision
'
' Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
' übernehmen, indem Sie "*" eingeben:
' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("1.0.0.0")>
<Assembly: AssemblyFileVersion("1.0.0.0")>

View File

@@ -0,0 +1,63 @@
'------------------------------------------------------------------------------
' <auto-generated>
' Dieser Code wurde von einem Tool generiert.
' Laufzeitversion:4.0.30319.42000
'
' Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
' der Code erneut generiert wird.
' </auto-generated>
'------------------------------------------------------------------------------
Option Strict On
Option Explicit On
Imports System
Namespace My.Resources
'Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert
'-Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert.
'Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen
'mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu.
'''<summary>
''' Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
'''</summary>
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0"), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _
Friend Module Resources
Private resourceMan As Global.System.Resources.ResourceManager
Private resourceCulture As Global.System.Globalization.CultureInfo
'''<summary>
''' Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
'''</summary>
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager
Get
If Object.ReferenceEquals(resourceMan, Nothing) Then
Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("Plugin_Aufhebung.Resources", GetType(Resources).Assembly)
resourceMan = temp
End If
Return resourceMan
End Get
End Property
'''<summary>
''' Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
''' Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
'''</summary>
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Friend Property Culture() As Global.System.Globalization.CultureInfo
Get
Return resourceCulture
End Get
Set
resourceCulture = value
End Set
End Property
End Module
End Namespace

View File

@@ -0,0 +1,117 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

View File

@@ -0,0 +1,73 @@
'------------------------------------------------------------------------------
' <auto-generated>
' Dieser Code wurde von einem Tool generiert.
' Laufzeitversion:4.0.30319.42000
'
' Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
' der Code erneut generiert wird.
' </auto-generated>
'------------------------------------------------------------------------------
Option Strict On
Option Explicit On
Namespace My
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "14.0.0.0"), _
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Partial Friend NotInheritable Class MySettings
Inherits Global.System.Configuration.ApplicationSettingsBase
Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings()),MySettings)
#Region "Funktion zum automatischen Speichern von My.Settings"
#If _MyType = "WindowsForms" Then
Private Shared addedHandler As Boolean
Private Shared addedHandlerLockObject As New Object
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs)
If My.Application.SaveMySettingsOnExit Then
My.Settings.Save()
End If
End Sub
#End If
#End Region
Public Shared ReadOnly Property [Default]() As MySettings
Get
#If _MyType = "WindowsForms" Then
If Not addedHandler Then
SyncLock addedHandlerLockObject
If Not addedHandler Then
AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings
addedHandler = True
End If
End SyncLock
End If
#End If
Return defaultInstance
End Get
End Property
End Class
End Namespace
Namespace My
<Global.Microsoft.VisualBasic.HideModuleNameAttribute(), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute()> _
Friend Module MySettingsProperty
<Global.System.ComponentModel.Design.HelpKeywordAttribute("My.Settings")> _
Friend ReadOnly Property Settings() As Global.Plugin_Aufhebung.My.MySettings
Get
Return Global.Plugin_Aufhebung.My.MySettings.Default
End Get
End Property
End Module
End Namespace

View File

@@ -0,0 +1,7 @@
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" UseMySettingsClassName="true">
<Profiles>
<Profile Name="(Default)" />
</Profiles>
<Settings />
</SettingsFile>

View File

@@ -0,0 +1 @@
C1.Win.C1TrueDBGrid.C1TrueDBGrid, C1.Win.C1TrueDBGrid.2, Version=2.0.20153.110, Culture=neutral, PublicKeyToken=75ae3fb0e2b1e0da

View File

@@ -0,0 +1,159 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{5ECF705D-AC6F-4EC6-8C48-08298EC6FFB0}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>Plugin_Aufhebung</RootNamespace>
<AssemblyName>Plugin_Aufhebung</AssemblyName>
<FileAlignment>512</FileAlignment>
<MyType>Windows</MyType>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<DefineDebug>true</DefineDebug>
<DefineTrace>true</DefineTrace>
<OutputPath>..\Bin\</OutputPath>
<DocumentationFile>Plugin_Aufhebung.xml</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<DefineDebug>false</DefineDebug>
<DefineTrace>true</DefineTrace>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DocumentationFile>Plugin_Aufhebung.xml</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<OptionExplicit>On</OptionExplicit>
</PropertyGroup>
<PropertyGroup>
<OptionCompare>Binary</OptionCompare>
</PropertyGroup>
<PropertyGroup>
<OptionStrict>Off</OptionStrict>
</PropertyGroup>
<PropertyGroup>
<OptionInfer>On</OptionInfer>
</PropertyGroup>
<ItemGroup>
<Reference Include="C1.Data.2, Version=2.0.20141.273, Culture=neutral, PublicKeyToken=900b028620cd3a1b, processorArchitecture=MSIL" />
<Reference Include="C1.Win.C1Command.2, Version=2.0.20141.19617, Culture=neutral, PublicKeyToken=e808566f358766d8, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\Bin\C1.Win.C1Command.2.dll</HintPath>
</Reference>
<Reference Include="C1.Win.C1TrueDBGrid.2, Version=2.0.20141.61347, Culture=neutral, PublicKeyToken=75ae3fb0e2b1e0da, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\Bin\C1.Win.C1TrueDBGrid.2.dll</HintPath>
</Reference>
<Reference Include="PluginContracts, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\Bin\PluginContracts.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Runtime.Remoting" />
<Reference Include="System.Web" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
</ItemGroup>
<ItemGroup>
<Import Include="Microsoft.VisualBasic" />
<Import Include="System" />
<Import Include="System.Collections" />
<Import Include="System.Collections.Generic" />
<Import Include="System.Data" />
<Import Include="System.Diagnostics" />
<Import Include="System.Linq" />
<Import Include="System.Xml.Linq" />
</ItemGroup>
<ItemGroup>
<Compile Include="Class1.vb" />
<Compile Include="DB\clsConnectionProvider.vb" />
<Compile Include="DB\clsDBInteractionBase.vb" />
<Compile Include="DB\clsDokumentart.vb" />
<Compile Include="DB\clsMyDokumentart.vb" />
<Compile Include="DB\Crypto.vb" />
<Compile Include="DB\DB.vb" />
<Compile Include="Form.Designer.vb">
<DependentUpon>Form.vb</DependentUpon>
</Compile>
<Compile Include="Form.vb">
<SubType>Form</SubType>
</Compile>
<Compile Include="Globals.vb" />
<Compile Include="My Project\AssemblyInfo.vb" />
<Compile Include="My Project\Application.Designer.vb">
<AutoGen>True</AutoGen>
<DependentUpon>Application.myapp</DependentUpon>
</Compile>
<Compile Include="My Project\Resources.Designer.vb">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="My Project\Settings.Designer.vb">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Form.resx">
<DependentUpon>Form.vb</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="My Project\licenses.licx" />
<EmbeddedResource Include="My Project\Resources.resx">
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
<CustomToolNamespace>My.Resources</CustomToolNamespace>
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Include="My Project\Application.myapp">
<Generator>MyApplicationCodeGenerator</Generator>
<LastGenOutput>Application.Designer.vb</LastGenOutput>
</None>
<None Include="My Project\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<CustomToolNamespace>My</CustomToolNamespace>
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<WCFMetadata Include="Service References\" />
</ItemGroup>
<ItemGroup>
<COMReference Include="VBIDE">
<Guid>{0002E157-0000-0000-C000-000000000046}</Guid>
<VersionMajor>5</VersionMajor>
<VersionMinor>3</VersionMinor>
<Lcid>0</Lcid>
<WrapperTool>primary</WrapperTool>
<Isolated>False</Isolated>
<EmbedInteropTypes>True</EmbedInteropTypes>
</COMReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

View File

@@ -0,0 +1,24 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>
EDOKA_PluginLib
</name>
</assembly>
<members>
<member name="P:EDOKA_PluginLib.My.Resources.Resources.ResourceManager">
<summary>
Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
</summary>
</member><member name="P:EDOKA_PluginLib.My.Resources.Resources.Culture">
<summary>
Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
</summary>
</member><member name="T:EDOKA_PluginLib.My.Resources.Resources">
<summary>
Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
</summary>
</member>
</members>
</doc>

View File

@@ -0,0 +1,24 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>
Plugin_Aufhebung
</name>
</assembly>
<members>
<member name="P:Plugin_Aufhebung.My.Resources.Resources.ResourceManager">
<summary>
Returns the cached ResourceManager instance used by this class.
</summary>
</member><member name="P:Plugin_Aufhebung.My.Resources.Resources.Culture">
<summary>
Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.
</summary>
</member><member name="T:Plugin_Aufhebung.My.Resources.Resources">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
</members>
</doc>

View File

@@ -0,0 +1 @@
d27c63805ed0e7d216ce9ff640553943a6212989

View File

@@ -0,0 +1,21 @@
E:\Software-Projekte\EDOKA\tools\EDOKA_Toolset\Plugin_Aufhebung\bin\Debug\Plugin_Aufhebung.dll
E:\Software-Projekte\EDOKA\tools\EDOKA_Toolset\Plugin_Aufhebung\bin\Debug\Plugin_Aufhebung.pdb
E:\Software-Projekte\EDOKA\tools\EDOKA_Toolset\Plugin_Aufhebung\bin\Debug\Plugin_Aufhebung.xml
E:\Software-Projekte\EDOKA\tools\EDOKA_Toolset\Plugin_Aufhebung\bin\Debug\C1.Win.C1Command.2.dll
E:\Software-Projekte\EDOKA\tools\EDOKA_Toolset\Plugin_Aufhebung\bin\Debug\C1.Win.C1TrueDBGrid.2.dll
E:\Software-Projekte\EDOKA\tools\EDOKA_Toolset\Plugin_Aufhebung\bin\Debug\EDOKA_PluginLib.dll
E:\Software-Projekte\EDOKA\tools\EDOKA_Toolset\Plugin_Aufhebung\bin\Debug\EDOKA_PluginLib.pdb
E:\Software-Projekte\EDOKA\tools\EDOKA_Toolset\Plugin_Aufhebung\bin\Debug\EDOKA_PluginLib.xml
E:\Software-Projekte\EDOKA\tools\EDOKA_Toolset\Plugin_Aufhebung\obj\Debug\Plugin_Aufhebung.vbproj.ResolveComReference.cache
E:\Software-Projekte\EDOKA\tools\EDOKA_Toolset\Plugin_Aufhebung\obj\Debug\Plugin_Aufhebung.Form.resources
E:\Software-Projekte\EDOKA\tools\EDOKA_Toolset\Plugin_Aufhebung\obj\Debug\Plugin_Aufhebung.Resources.resources
E:\Software-Projekte\EDOKA\tools\EDOKA_Toolset\Plugin_Aufhebung\obj\Debug\Plugin_Aufhebung.vbproj.GenerateResource.Cache
E:\Software-Projekte\EDOKA\tools\EDOKA_Toolset\Plugin_Aufhebung\obj\Debug\Plugin_Aufhebung.dll.licenses
E:\Software-Projekte\EDOKA\tools\EDOKA_Toolset\Bin\Plugin_Aufhebung.dll
E:\Software-Projekte\EDOKA\tools\EDOKA_Toolset\Bin\Plugin_Aufhebung.pdb
E:\Software-Projekte\EDOKA\tools\EDOKA_Toolset\Bin\Plugin_Aufhebung.xml
E:\Software-Projekte\EDOKA\tools\EDOKA_Toolset\Plugin_Aufhebung\obj\Debug\Plugin_Aufhebung.dll
E:\Software-Projekte\EDOKA\tools\EDOKA_Toolset\Plugin_Aufhebung\obj\Debug\Plugin_Aufhebung.xml
E:\Software-Projekte\EDOKA\tools\EDOKA_Toolset\Plugin_Aufhebung\obj\Debug\Plugin_Aufhebung.pdb
E:\Software-Projekte\EDOKA\tools\EDOKA_Toolset\Plugin_Aufhebung\obj\Debug\Plugin_Aufhebung.vbproj.CopyComplete
E:\Software-Projekte\EDOKA\tools\EDOKA_Toolset\Plugin_Aufhebung\obj\Debug\Plugin_Aufhebung.vbprojAssemblyReference.cache

View File

@@ -0,0 +1,36 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>
Plugin_Aufhebung
</name>
</assembly>
<members>
<member name="T:Plugin_Aufhebung.My.Resources.Resources">
<summary>
Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
</summary>
</member>
<member name="P:Plugin_Aufhebung.My.Resources.Resources.ResourceManager">
<summary>
Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
</summary>
</member>
<member name="P:Plugin_Aufhebung.My.Resources.Resources.Culture">
<summary>
Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
</summary>
</member>
<member name="M:Plugin_Aufhebung.DB_Connection.#cctor">
<summary>
Liest sämtlcihe CFG-Dateien mit dem Namen "Vertragsverwaltung...". Sind meherere Dateien vorhanden,
wird ein Auswahldialog zur Datenbank-Selektion angezeigt.
Standardmässig wird Vertragsverwaltung.cfg als CFG-Datei benutzt.
Die CFG-Datei ist verschlüsselt und wird über die Crypto-Funktionen entschlüsselt.
</summary>
<remarks></remarks>
</member>
</members>
</doc>