Initial commit

This commit is contained in:
2020-10-21 10:49:38 +02:00
commit abc7a01a22
1062 changed files with 411526 additions and 0 deletions

View File

@@ -0,0 +1 @@
63bf8fac620a65c0b8c139a6de1b1a1c525b47f9

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,20 @@
E:\Software-Projekte\TKBDiverse\Themenmanagement\KommAuspraegung\bin\Debug\KommAuspraegung.dll
E:\Software-Projekte\TKBDiverse\Themenmanagement\KommAuspraegung\bin\Debug\KommAuspraegung.pdb
E:\Software-Projekte\TKBDiverse\Themenmanagement\KommAuspraegung\bin\Debug\KommAuspraegung.xml
E:\Software-Projekte\TKBDiverse\Themenmanagement\KommAuspraegung\bin\Debug\RTFEditor.dll
E:\Software-Projekte\TKBDiverse\Themenmanagement\KommAuspraegung\bin\Debug\ThemenDokumente.dll
E:\Software-Projekte\TKBDiverse\Themenmanagement\KommAuspraegung\bin\Debug\ExtendedRichTextBox.dll
E:\Software-Projekte\TKBDiverse\Themenmanagement\KommAuspraegung\bin\Debug\ThemenDokumente.pdb
E:\Software-Projekte\TKBDiverse\Themenmanagement\KommAuspraegung\bin\Debug\ThemenDokumente.xml
E:\Software-Projekte\TKBDiverse\Themenmanagement\KommAuspraegung\bin\Debug\RTFEditor.pdb
E:\Software-Projekte\TKBDiverse\Themenmanagement\KommAuspraegung\bin\Debug\RTFEditor.xml
E:\Software-Projekte\TKBDiverse\Themenmanagement\KommAuspraegung\obj\Debug\KommAuspraegung.Resources.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\KommAuspraegung\obj\Debug\KommAuspraegung.Kommunikationsauspraegung.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\KommAuspraegung\obj\Debug\KommAuspraegung.vbproj.GenerateResource.Cache
E:\Software-Projekte\TKBDiverse\Themenmanagement\KommAuspraegung\obj\Debug\KommAuspraegung.dll
E:\Software-Projekte\TKBDiverse\Themenmanagement\KommAuspraegung\obj\Debug\KommAuspraegung.xml
E:\Software-Projekte\TKBDiverse\Themenmanagement\KommAuspraegung\obj\Debug\KommAuspraegung.pdb
E:\Software-Projekte\TKBDiverse\Themenmanagement\KommAuspraegung\obj\Debug\KommAuspraegung.frmAuspraegungstexte.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\KommAuspraegung\bin\Debug\SautinSoft.HtmlToRtf.dll
E:\Software-Projekte\TKBDiverse\Themenmanagement\KommAuspraegung\obj\Debug\KommAuspraegung.vbproj.CopyComplete
E:\Software-Projekte\TKBDiverse\Themenmanagement\KommAuspraegung\obj\Debug\KommAuspraegung.vbprojAssemblyReference.cache

View File

@@ -0,0 +1,705 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>
KommAuspraegung
</name>
</assembly>
<members>
<member name="T:KommAuspraegung.My.Resources.Resources">
<summary>
Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
</summary>
</member>
<member name="P:KommAuspraegung.My.Resources.Resources.ResourceManager">
<summary>
Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
</summary>
</member>
<member name="P:KommAuspraegung.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:KommAuspraegung.DB.clsKommunikation">
<summary>
Purpose: Data Access class for the table 'Kommunikation'.
</summary>
</member>
<member name="M:KommAuspraegung.DB.clsKommunikation.#ctor">
<summary>
Purpose: Class constructor.
</summary>
</member>
<member name="M:KommAuspraegung.DB.clsKommunikation.Insert">
<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>iKommunikationNr</LI>
<LI>iThemaNr. May be SqlInt32.Null</LI>
<LI>sBezeichnung. May be SqlString.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>
</member>
<member name="M:KommAuspraegung.DB.clsKommunikation.Update">
<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>iKommunikationNr</LI>
<LI>iThemaNr. May be SqlInt32.Null</LI>
<LI>sBezeichnung. May be SqlString.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>
</member>
<member name="M:KommAuspraegung.DB.clsKommunikation.Delete">
<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>iKommunikationNr</LI>
</UL>
Properties set after a succesful call of this method:
<UL>
<LI>iErrorCode</LI>
</UL>
</remarks>
</member>
<member name="M:KommAuspraegung.DB.clsKommunikation.SelectOne">
<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>iKommunikationNr</LI>
</UL>
Properties set after a succesful call of this method:
<UL>
<LI>iErrorCode</LI>
<LI>iKommunikationNr</LI>
<LI>iThemaNr</LI>
<LI>sBezeichnung</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>
</member>
<member name="M:KommAuspraegung.DB.clsKommunikation.SelectAll">
<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>
</member>
<member name="T:KommAuspraegung.DB.clsKommunikationAuspraegung_Zielgruppe">
<summary>
Purpose: Data Access class for the table 'KommunikationAuspraegung_Zielgruppe'.
</summary>
</member>
<member name="M:KommAuspraegung.DB.clsKommunikationAuspraegung_Zielgruppe.#ctor">
<summary>
Purpose: Class constructor.
</summary>
</member>
<member name="M:KommAuspraegung.DB.clsKommunikationAuspraegung_Zielgruppe.Insert">
<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>iKommAuspraegungZielgruppeNr</LI>
<LI>iKommunikationauspraegungnr. May be SqlInt32.Null</LI>
<LI>iZielgruppenr. 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>
</member>
<member name="M:KommAuspraegung.DB.clsKommunikationAuspraegung_Zielgruppe.Update">
<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>iKommAuspraegungZielgruppeNr</LI>
<LI>iKommunikationauspraegungnr. May be SqlInt32.Null</LI>
<LI>iZielgruppenr. 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>
</member>
<member name="M:KommAuspraegung.DB.clsKommunikationAuspraegung_Zielgruppe.Delete">
<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>iKommAuspraegungZielgruppeNr</LI>
</UL>
Properties set after a succesful call of this method:
<UL>
<LI>iErrorCode</LI>
</UL>
</remarks>
</member>
<member name="M:KommAuspraegung.DB.clsKommunikationAuspraegung_Zielgruppe.SelectOne">
<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>iKommAuspraegungZielgruppeNr</LI>
</UL>
Properties set after a succesful call of this method:
<UL>
<LI>iErrorCode</LI>
<LI>iKommAuspraegungZielgruppeNr</LI>
<LI>iKommunikationauspraegungnr</LI>
<LI>iZielgruppenr</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>
</member>
<member name="M:KommAuspraegung.DB.clsKommunikationAuspraegung_Zielgruppe.SelectAll">
<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>
</member>
<member name="T:KommAuspraegung.DB.clsKommunkationAuspraegung">
<summary>
Purpose: Data Access class for the table 'KommunkationAuspraegung'.
</summary>
</member>
<member name="M:KommAuspraegung.DB.clsKommunkationAuspraegung.#ctor">
<summary>
Purpose: Class constructor.
</summary>
</member>
<member name="M:KommAuspraegung.DB.clsKommunkationAuspraegung.Insert">
<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>iKommunikationAuspraegungNr</LI>
<LI>iKommunikationNr. May be SqlInt32.Null</LI>
<LI>sBezeichnung. May be SqlString.Null</LI>
<LI>sBeschreibung. May be SqlString.Null</LI>
<LI>blobDokument. May be SqlBinary.Null</LI>
<LI>sRTFText. May be SqlString.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>
</member>
<member name="M:KommAuspraegung.DB.clsKommunkationAuspraegung.Update">
<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>iKommunikationAuspraegungNr</LI>
<LI>iKommunikationNr. May be SqlInt32.Null</LI>
<LI>sBezeichnung. May be SqlString.Null</LI>
<LI>sBeschreibung. May be SqlString.Null</LI>
<LI>blobDokument. May be SqlBinary.Null</LI>
<LI>sRTFText. May be SqlString.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>
</member>
<member name="M:KommAuspraegung.DB.clsKommunkationAuspraegung.Delete">
<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>iKommunikationAuspraegungNr</LI>
</UL>
Properties set after a succesful call of this method:
<UL>
<LI>iErrorCode</LI>
</UL>
</remarks>
</member>
<member name="M:KommAuspraegung.DB.clsKommunkationAuspraegung.SelectOne">
<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>iKommunikationAuspraegungNr</LI>
</UL>
Properties set after a succesful call of this method:
<UL>
<LI>iErrorCode</LI>
<LI>iKommunikationAuspraegungNr</LI>
<LI>iKommunikationNr</LI>
<LI>sBezeichnung</LI>
<LI>sBeschreibung</LI>
<LI>blobDokument</LI>
<LI>sRTFText</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>
</member>
<member name="M:KommAuspraegung.DB.clsKommunkationAuspraegung.SelectAll">
<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>
</member>
<member name="T:KommAuspraegung.DB.clsZielgruppe">
<summary>
Purpose: Data Access class for the table 'Zielgruppe'.
</summary>
</member>
<member name="M:KommAuspraegung.DB.clsZielgruppe.#ctor">
<summary>
Purpose: Class constructor.
</summary>
</member>
<member name="M:KommAuspraegung.DB.clsZielgruppe.Insert">
<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>iZielgruppeNr</LI>
<LI>sBezeichnung. May be SqlString.Null</LI>
<LI>sBeschreibung. May be SqlString.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>
</member>
<member name="M:KommAuspraegung.DB.clsZielgruppe.Update">
<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>iZielgruppeNr</LI>
<LI>sBezeichnung. May be SqlString.Null</LI>
<LI>sBeschreibung. May be SqlString.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>
</member>
<member name="M:KommAuspraegung.DB.clsZielgruppe.Delete">
<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>iZielgruppeNr</LI>
</UL>
Properties set after a succesful call of this method:
<UL>
<LI>iErrorCode</LI>
</UL>
</remarks>
</member>
<member name="M:KommAuspraegung.DB.clsZielgruppe.SelectOne">
<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>iZielgruppeNr</LI>
</UL>
Properties set after a succesful call of this method:
<UL>
<LI>iErrorCode</LI>
<LI>iZielgruppeNr</LI>
<LI>sBezeichnung</LI>
<LI>sBeschreibung</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>
</member>
<member name="M:KommAuspraegung.DB.clsZielgruppe.SelectAll">
<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>
</member>
<member name="T:KommAuspraegung.DB.clsKey_tabelle">
<summary>
Purpose: Data Access class for the table 'key_tabelle'.
</summary>
</member>
<member name="M:KommAuspraegung.DB.clsKey_tabelle.#ctor">
<summary>
Purpose: Class constructor.
</summary>
</member>
<member name="M:KommAuspraegung.DB.clsKey_tabelle.Insert">
<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>sBeschreibung</LI>
<LI>iKey_wert</LI>
<LI>iMandantnr. 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>iKeynr</LI>
<LI>iErrorCode</LI>
</UL>
</remarks>
</member>
<member name="M:KommAuspraegung.DB.clsKey_tabelle.Update">
<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>iKeynr</LI>
<LI>sBeschreibung</LI>
<LI>iKey_wert</LI>
<LI>iMandantnr. 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>
</member>
<member name="M:KommAuspraegung.DB.clsKey_tabelle.Delete">
<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>iKeynr</LI>
</UL>
Properties set after a succesful call of this method:
<UL>
<LI>iErrorCode</LI>
</UL>
</remarks>
</member>
<member name="M:KommAuspraegung.DB.clsKey_tabelle.SelectOne">
<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>iKeynr</LI>
</UL>
Properties set after a succesful call of this method:
<UL>
<LI>iErrorCode</LI>
<LI>iKeynr</LI>
<LI>sBeschreibung</LI>
<LI>iKey_wert</LI>
<LI>iMandantnr</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>
</member>
<member name="M:KommAuspraegung.DB.clsKey_tabelle.SelectAll">
<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>
</member>
<member name="T:KommAuspraegung.DB.clsMitarbeiter">
<summary>
Purpose: Data Access class for the table 'mitarbeiter'.
</summary>
</member>
<member name="M:KommAuspraegung.DB.clsMitarbeiter.#ctor">
<summary>
Purpose: Class constructor.
</summary>
</member>
<member name="M:KommAuspraegung.DB.clsMitarbeiter.Insert">
<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>iMitarbeiternr</LI>
<LI>sVorname. May be SqlString.Null</LI>
<LI>sName. May be SqlString.Null</LI>
<LI>sTgnummer. May be SqlString.Null</LI>
<LI>sEmail. May be SqlString.Null</LI>
<LI>iMandantnr. 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>
</member>
<member name="M:KommAuspraegung.DB.clsMitarbeiter.Update">
<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>iMitarbeiternr</LI>
<LI>sVorname. May be SqlString.Null</LI>
<LI>sName. May be SqlString.Null</LI>
<LI>sTgnummer. May be SqlString.Null</LI>
<LI>sEmail. May be SqlString.Null</LI>
<LI>iMandantnr. 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>
</member>
<member name="M:KommAuspraegung.DB.clsMitarbeiter.Delete">
<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>iMitarbeiternr</LI>
</UL>
Properties set after a succesful call of this method:
<UL>
<LI>iErrorCode</LI>
</UL>
</remarks>
</member>
<member name="M:KommAuspraegung.DB.clsMitarbeiter.SelectOne">
<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>iMitarbeiternr</LI>
</UL>
Properties set after a succesful call of this method:
<UL>
<LI>iErrorCode</LI>
<LI>iMitarbeiternr</LI>
<LI>sVorname</LI>
<LI>sName</LI>
<LI>sTgnummer</LI>
<LI>sEmail</LI>
<LI>iMandantnr</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>
</member>
<member name="M:KommAuspraegung.DB.clsMitarbeiter.SelectAll">
<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>
</member>
<member name="M:KommAuspraegung.DB.KommunikationAuspraegung.Get_Mutierer(System.Int32)">
<summary>
Mutierer auslesen
</summary>
<returns></returns>
<remarks></remarks>
</member>
<member name="M:KommAuspraegung.DB.KommunikationAuspraegung.Delete_Kommunikationsauspraegung(System.Int32)">
<summary>
Löschen eines Datensatzes erstellen.
</summary>
<param name="Basenr">Ursprungs-Person: Ist dieser Wert nicht 0, werden die Daten mit BaseNr zuerst gelesen</param>
<returns></returns>
<remarks></remarks>
</member>
<member name="M:KommAuspraegung.DB.KommunikationAuspraegung.Add_New(System.Int32,System.String)">
<summary>
Neue Person einfügen
</summary>
<returns></returns>
<remarks></remarks>
</member>
</members>
</doc>

View File

@@ -0,0 +1 @@
66c31e89337c94d1ee9ceb9c443b1b63c87b56d9

View File

@@ -0,0 +1,4 @@
E:\Software-Projekte\TKBDiverse\Themenmanagement\KommAuspraegung\obj\Release\KommAuspraegung.frmAuspraegungstexte.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\KommAuspraegung\obj\Release\KommAuspraegung.Resources.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\KommAuspraegung\obj\Release\KommAuspraegung.Kommunikationsauspraegung.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\KommAuspraegung\obj\Release\KommAuspraegung.vbproj.GenerateResource.Cache

View File

View File

@@ -0,0 +1,70 @@
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\Themenmanagement.exe.config
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.exe
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.xml
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.pdb
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.vbprojResolveAssemblyReference.cache
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.frmDatenbankauswahl.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.frmAbout.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.frmLogin.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.frmMsgBox.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.frmSplash.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.frmSuche.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.frmKernbotschaft.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.frmKernbotschaften.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.frmPendenz.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.frmPendenzübersicht.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.frmDomainEditor.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.frmDomainEditorExtTables.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.frmFormSelector.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.frmSysadminMenu.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.frmSysadminTableSelector.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.FrmToolTipEditor.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.frmVerbindungEditor.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.frmMain.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.frmDetail.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.Resources.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.frmTreeselect.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.frmThemenübersicht.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.vbproj.GenerateResource.Cache
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.exe.licenses
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\Themenmanagement.exe
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\Themenmanagement.pdb
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\Themenmanagement.xml
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\FlexCel.dll
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\KommAuspraegung.dll
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\RTFEditor.dll
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\ThemaPerson.dll
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\ThemenDokumente.dll
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\XLSLib.dll
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\_FRReporting.dll
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\FastReport.dll
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\FastReport.Bars.dll
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\KommAuspraegung.pdb
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\KommAuspraegung.xml
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\ThemaPerson.pdb
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\ThemaPerson.xml
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\ThemenDokumente.pdb
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\ThemenDokumente.xml
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\RTFEditor.pdb
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\RTFEditor.xml
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\_FRReporting.pdb
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\_FRReporting.xml
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\C1.Win.C1FlexGrid.4.xml
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\CG.Controls.Grid.dll
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\NPOI.HSSF.dll
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\NPOI.dll
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\NPOI.DDF.dll
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\NPOI.Util.dll
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\NPOI.POIFS.dll
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\NPOI.HPSF.dll
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\ICSharpCode.SharpZipLib.dll
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.frmKB_Presentation.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\FastReport.Editor.dll
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.frm_KBParam.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\ThemeColorPicker.dll
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\bin\Debug\ThemeColorPicker.pdb
E:\Software-Projekte\TKBDiverse\Themenmanagement\Themenmanagement\obj\x86\Debug\Themenmanagement.AdobeColorPicker.resources
E:\Software-Projekte\TKBDiverse\Themenmanagement\ThemenDokumente\obj\x86\Debug\Themenmanagement.exe
E:\Software-Projekte\TKBDiverse\Themenmanagement\ThemenDokumente\obj\x86\Debug\Themenmanagement.xml
E:\Software-Projekte\TKBDiverse\Themenmanagement\ThemenDokumente\obj\x86\Debug\Themenmanagement.pdb
E:\Software-Projekte\TKBDiverse\Themenmanagement\KommAuspraegung\bin\Debug\Themenmanagement.exe.config