Initial commit

This commit is contained in:
2021-04-20 07:44:06 +02:00
commit 1cc7ed8893
1562 changed files with 496306 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,272 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>
_FunktionDetail
</name>
</assembly>
<members>
<member name="T:_FunktionDetail.My.Resources.Resources">
<summary>
Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
</summary>
</member>
<member name="P:_FunktionDetail.My.Resources.Resources.ResourceManager">
<summary>
Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
</summary>
</member>
<member name="P:_FunktionDetail.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:_FunktionDetail.DB.clsKey_tabelle">
<summary>
Purpose: Data Access class for the table 'key_tabelle'.
</summary>
</member>
<member name="M:_FunktionDetail.DB.clsKey_tabelle.#ctor">
<summary>
Purpose: Class constructor.
</summary>
</member>
<member name="M:_FunktionDetail.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:_FunktionDetail.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:_FunktionDetail.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:_FunktionDetail.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:_FunktionDetail.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:_FunktionDetail.DB.clsMitarbeiter">
<summary>
Purpose: Data Access class for the table 'mitarbeiter'.
</summary>
</member>
<member name="M:_FunktionDetail.DB.clsMitarbeiter.#ctor">
<summary>
Purpose: Class constructor.
</summary>
</member>
<member name="M:_FunktionDetail.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:_FunktionDetail.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:_FunktionDetail.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:_FunktionDetail.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:_FunktionDetail.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:_FunktionDetail.DB.clsMyFunktionsstelle.Get_Mutierer(System.Int32)">
<summary>
Mutierer auslesen
</summary>
<returns></returns>
<remarks></remarks>
</member>
<member name="M:_FunktionDetail.DB.clsMyFunktionsstelle.Delete_Thema(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:_FunktionDetail.DB.clsMyFunktionsstelle.Add_New">
<summary>
Neue Person einfügen
</summary>
<returns></returns>
<remarks></remarks>
</member>
</members>
</doc>

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,24 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>
_Generic_Event_Handler
</name>
</assembly>
<members>
<member name="P:_Generic_Event_Handler.My.Resources.Resources.ResourceManager">
<summary>
Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
</summary>
</member><member name="P:_Generic_Event_Handler.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:_Generic_Event_Handler.My.Resources.Resources">
<summary>
Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
</summary>
</member>
</members>
</doc>

Binary file not shown.

View File

@@ -0,0 +1,50 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<section name="_MyBeziehungen.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false"/>
</sectionGroup>
</configSections>
<system.diagnostics>
<sources>
<!-- Dieser Abschnitt definiert die Protokollierungskonfiguration für My.Application.Log -->
<source name="DefaultSource" switchName="DefaultSwitch">
<listeners>
<add name="FileLog"/>
<!-- Auskommentierung des nachfolgenden Abschnitts aufheben, um in das Anwendungsereignisprotokoll zu schreiben -->
<!--<add name="EventLog"/>-->
</listeners>
</source>
</sources>
<switches>
<add name="DefaultSwitch" value="Information"/>
</switches>
<sharedListeners>
<add name="FileLog" type="Microsoft.VisualBasic.Logging.FileLogTraceListener, Microsoft.VisualBasic, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" initializeData="FileLogWriter"/>
<!-- Auskommentierung des nachfolgenden Abschnitts aufheben und APPLICATION_NAME durch den Namen der Anwendung ersetzen, um in das Anwendungsereignisprotokoll zu schreiben -->
<!--<add name="EventLog" type="System.Diagnostics.EventLogTraceListener" initializeData="APPLICATION_NAME"/> -->
</sharedListeners>
</system.diagnostics>
<userSettings>
<_MyBeziehungen.My.MySettings>
<setting name="Tage" serializeAs="String">
<value>10</value>
</setting>
<setting name="Foreground_gueltig" serializeAs="String">
<value>#FF0000</value>
</setting>
<setting name="Foreground_vor_ablauf" serializeAs="String">
<value>#FF0000</value>
</setting>
<setting name="Background_vor_ablauf" serializeAs="String">
<value>#FFE5CC</value>
</setting>
<setting name="Foreground_abgelaufen" serializeAs="String">
<value>#FF0000</value>
</setting>
<setting name="Background_abgelaufen" serializeAs="String">
<value>#FFFF00</value>
</setting>
</_MyBeziehungen.My.MySettings>
</userSettings>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/></startup></configuration>

Binary file not shown.

View File

@@ -0,0 +1,642 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>
_MyBeziehungen
</name>
</assembly>
<members>
<member name="T:_MyBeziehungen.My.Resources.Resources">
<summary>
Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
</summary>
</member>
<member name="P:_MyBeziehungen.My.Resources.Resources.ResourceManager">
<summary>
Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
</summary>
</member>
<member name="P:_MyBeziehungen.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:_MyBeziehungen.DB.clsKey_tabelle">
<summary>
Purpose: Data Access class for the table 'key_tabelle'.
</summary>
</member>
<member name="M:_MyBeziehungen.DB.clsKey_tabelle.#ctor">
<summary>
Purpose: Class constructor.
</summary>
</member>
<member name="M:_MyBeziehungen.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:_MyBeziehungen.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:_MyBeziehungen.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:_MyBeziehungen.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:_MyBeziehungen.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:_MyBeziehungen.DB.clsMitarbeiter">
<summary>
Purpose: Data Access class for the table 'mitarbeiter'.
</summary>
</member>
<member name="M:_MyBeziehungen.DB.clsMitarbeiter.#ctor">
<summary>
Purpose: Class constructor.
</summary>
</member>
<member name="M:_MyBeziehungen.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:_MyBeziehungen.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:_MyBeziehungen.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:_MyBeziehungen.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:_MyBeziehungen.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="T:_MyBeziehungen.DB.clsSecurityObject">
<summary>
Purpose: Data Access class for the table 'SecurityObject'.
</summary>
</member>
<member name="M:_MyBeziehungen.DB.clsSecurityObject.#ctor">
<summary>
Purpose: Class constructor.
</summary>
</member>
<member name="M:_MyBeziehungen.DB.clsSecurityObject.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>iSecurityObjectNr</LI>
<LI>sSecurityForm. May be SqlString.Null</LI>
<LI>sSecurityObjectType. May be SqlString.Null</LI>
<LI>sSecurityObject. May be SqlString.Null</LI>
<LI>sSecurityObjectItem. May be SqlString.Null</LI>
<LI>sSecurityObjectDescriotion. May be SqlString.Null</LI>
<LI>iLevel. 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>
<LI>iMandantnr. 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:_MyBeziehungen.DB.clsSecurityObject.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>iSecurityObjectNr</LI>
<LI>sSecurityForm. May be SqlString.Null</LI>
<LI>sSecurityObjectType. May be SqlString.Null</LI>
<LI>sSecurityObject. May be SqlString.Null</LI>
<LI>sSecurityObjectItem. May be SqlString.Null</LI>
<LI>sSecurityObjectDescriotion. May be SqlString.Null</LI>
<LI>iLevel. 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>
<LI>iMandantnr. 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:_MyBeziehungen.DB.clsSecurityObject.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>iSecurityObjectNr</LI>
</UL>
Properties set after a succesful call of this method:
<UL>
<LI>iErrorCode</LI>
</UL>
</remarks>
</member>
<member name="M:_MyBeziehungen.DB.clsSecurityObject.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>iSecurityObjectNr</LI>
</UL>
Properties set after a succesful call of this method:
<UL>
<LI>iErrorCode</LI>
<LI>iSecurityObjectNr</LI>
<LI>sSecurityForm</LI>
<LI>sSecurityObjectType</LI>
<LI>sSecurityObject</LI>
<LI>sSecurityObjectItem</LI>
<LI>sSecurityObjectDescriotion</LI>
<LI>iLevel</LI>
<LI>bAktiv</LI>
<LI>daErstellt_am</LI>
<LI>daMutiert_am</LI>
<LI>iMutierer</LI>
<LI>iMandantnr</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:_MyBeziehungen.DB.clsSecurityObject.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:_MyBeziehungen.DB.clsSpalten">
<summary>
Purpose: Data Access class for the table 'spalten'.
</summary>
</member>
<member name="M:_MyBeziehungen.DB.clsSpalten.#ctor">
<summary>
Purpose: Class constructor.
</summary>
</member>
<member name="M:_MyBeziehungen.DB.clsSpalten.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>iEintragnr</LI>
<LI>sTabelle. May be SqlString.Null</LI>
<LI>sTabellenspalte. May be SqlString.Null</LI>
<LI>sSpalte. May be SqlString.Null</LI>
<LI>bReadonly</LI>
<LI>bAlsHacken</LI>
<LI>iBreite. May be SqlInt32.Null</LI>
<LI>iReihenfolge. May be SqlInt32.Null</LI>
<LI>sTiptext. May be SqlString.Null</LI>
<LI>bAktiv</LI>
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
<LI>iMutierer. May be SqlInt32.Null</LI>
<LI>iMandantnr. May be SqlInt32.Null</LI>
<LI>sNumberFormat. May be SqlString.Null</LI>
</UL>
Properties set after a succesful call of this method:
<UL>
<LI>iErrorCode</LI>
</UL>
</remarks>
</member>
<member name="M:_MyBeziehungen.DB.clsSpalten.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>iEintragnr</LI>
<LI>sTabelle. May be SqlString.Null</LI>
<LI>sTabellenspalte. May be SqlString.Null</LI>
<LI>sSpalte. May be SqlString.Null</LI>
<LI>bReadonly</LI>
<LI>bAlsHacken</LI>
<LI>iBreite. May be SqlInt32.Null</LI>
<LI>iReihenfolge. May be SqlInt32.Null</LI>
<LI>sTiptext. May be SqlString.Null</LI>
<LI>bAktiv</LI>
<LI>daErstellt_am. May be SqlDateTime.Null</LI>
<LI>daMutiert_am. May be SqlDateTime.Null</LI>
<LI>iMutierer. May be SqlInt32.Null</LI>
<LI>iMandantnr. May be SqlInt32.Null</LI>
<LI>sNumberFormat. May be SqlString.Null</LI>
</UL>
Properties set after a succesful call of this method:
<UL>
<LI>iErrorCode</LI>
</UL>
</remarks>
</member>
<member name="M:_MyBeziehungen.DB.clsSpalten.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>iEintragnr</LI>
</UL>
Properties set after a succesful call of this method:
<UL>
<LI>iErrorCode</LI>
</UL>
</remarks>
</member>
<member name="M:_MyBeziehungen.DB.clsSpalten.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>iEintragnr</LI>
</UL>
Properties set after a succesful call of this method:
<UL>
<LI>iErrorCode</LI>
<LI>iEintragnr</LI>
<LI>sTabelle</LI>
<LI>sTabellenspalte</LI>
<LI>sSpalte</LI>
<LI>bReadonly</LI>
<LI>bAlsHacken</LI>
<LI>iBreite</LI>
<LI>iReihenfolge</LI>
<LI>sTiptext</LI>
<LI>bAktiv</LI>
<LI>daErstellt_am</LI>
<LI>daMutiert_am</LI>
<LI>iMutierer</LI>
<LI>iMandantnr</LI>
<LI>sNumberFormat</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:_MyBeziehungen.DB.clsSpalten.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:_MyBeziehungen.Utils.MySecurity">
<summary>
Formular-Security-Objekte auslesen und auf DB schreiben bzw. Formular-Security zur Laufzeit setzen
</summary>
<remarks></remarks>
</member>
<member name="M:_MyBeziehungen.Utils.MySecurity.Set_Form_Security(System.Object@)">
<summary>
Formularsecurity setzen
</summary>
<param name="f">Aktuelles Formular</param>
<returns></returns>
<remarks></remarks>
</member>
<member name="M:_MyBeziehungen.Utils.MySecurity.Load_Data(System.String)">
<summary>
Daten ab Datenbank laden
</summary>
<remarks></remarks>
</member>
<member name="M:_MyBeziehungen.Utils.MySecurity.Set_Security">
<summary>
Prüft die DB-Einträge mit den Formcontrols und bei Übereinstimmung werden die Security-Einstellungen gesetzt
</summary>
<remarks></remarks>
</member>
<member name="M:_MyBeziehungen.Utils.MySecurity.Set_Preferences(System.Object@,System.Boolean,System.Boolean,System.String)">
<summary>
Security-Einstellungen setzen
</summary>
<param name="obj">Betroffenes Objeckt (Menuitem, Conrol usw.)</param>
<param name="read_only">Readonly ja/nein</param>
<param name="invisible">Sichtbar ja/nein</param>
<param name="SecurityObjectItem">Name des Unterobjektes - wird für die Spalteneinstellungen von C1TruedbGrids verwendet</param>
<remarks></remarks>
</member>
<member name="M:_MyBeziehungen.Utils.MySecurity.List_Form_Controls(System.Object@)">
<summary>
Alle Controls des Formulars zusammensuchen und auf der DB speichern
</summary>
<param name="f">Betroffenes Formular</param>
<returns></returns>
<remarks></remarks>
</member>
<member name="M:_MyBeziehungen.Utils.MySecurity.Objectanalysis(System.Object@)">
<summary>
Sämtliche Controls vom Formular auslesen
</summary>
<param name="ctl"></param>
<returns></returns>
<remarks></remarks>
</member>
<member name="F:_MyBeziehungen.Utils.MySecurity.level">
<summary>
Auslesen von MenuItems
</summary>
<param name="x"></param>
<returns></returns>
<remarks></remarks>
</member>
<member name="M:_MyBeziehungen.Utils.MySecurity.ReadContextMenu(System.Object@)">
<summary>
Auslesen von ContextMenuItems
</summary>
<param name="x"></param>
<returns></returns>
<remarks></remarks>
</member>
<member name="M:_MyBeziehungen.Utils.MySecurity.get_all_menus(System.Windows.Forms.ToolStripMenuItem@)">
<summary>
Auslesen von Menu-Subitems
</summary>
<param name="xx"></param>
<returns></returns>
<remarks></remarks>
</member>
<member name="M:_MyBeziehungen.Utils.MySecurity.Objexists(System.String,System.String,System.String,System.String)">
<summary>
Prüft, ob das Security-Objekt bereits auf der DB vorhanden ist
</summary>
<param name="securityform">Formular</param>
<param name="securityobjecttype">Objekttyp</param>
<param name="securityobject">Objektname</param>
<param name="securityobjectitem">Objektitem</param>
<returns></returns>
<remarks></remarks>
</member>
<member name="T:_MyBeziehungen.Utils.MyFormControls">
<summary>
Klasse für ein Control-Objekt
</summary>
<remarks></remarks>
</member>
<member name="M:_MyBeziehungen.Utils.MyFormControls.#ctor(System.Object,System.String,System.String,System.String,System.String,System.Int32,System.String)">
<summary>
Neue Instanz erstellen
</summary>
<param name="ctl">Control-Objekt</param>
<param name="Formname">Betroffenes Formular</param>
<param name="securityobjecttype">Objekttyp</param>
<param name="Securityobject">Objektname</param>
<param name="SecurityObjectItem">Unterobjekt (z.B. bei Menus, Spalten von C1TrueDBGrids)</param>
<remarks></remarks>
</member>
<member name="M:_MyBeziehungen.Utils.MyFormControls.Write_Object_to_DB">
<summary>
Schreibt einen Datnsatz in die Tabelle SecurityObjects
</summary>
<returns></returns>
<remarks></remarks>
</member>
<member name="M:_MyBeziehungen.Utils.MyFormControls.Objexists">
<summary>
Prüft, ob das Security-Objekt bereits auf der DB vorhanden ist
</summary>
<returns></returns>
<remarks></remarks>
</member>
<member name="M:_MyBeziehungen.Utils.Tabellenspalte.ColumnOrder(System.String,C1.Win.C1TrueDBGrid.C1TrueDBGrid@)">
<summary>
Sortierung der in der DB-Tabelle Spalaten festgelegten Reihenfolge
</summary>
<param name="Tablename"></param>
<param name="Data"></param>
<returns></returns>
<remarks></remarks>
</member>
<member name="M:_MyBeziehungen.Utils.clsSpalten.Select_All_Aktiv">
<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>
</members>
</doc>