Imports EDOKALib Public Class frmAdminMitarbeiterEdit Inherits System.Windows.Forms.Form #Region "Members" Dim _mitarbeiter As BusinessFacade.Mitarbeiter Dim _tmpTeamNr As Integer Dim _dsMaTeams As DataSet Dim _dsMaFunktionsgruppen As DataSet Dim _dataChanged As Boolean = False Dim _currentGridName As String = "" #End Region #Region "Constructor" '''Ertellt eine Formularinstanz um einen neuen Mitarbeiter zu erfassen ''' Public Sub New() ' Dieser Aufruf ist für den Windows Form-Designer erforderlich. InitializeComponent() lblMitarbeiterNr.Text = "" lblBearbeitet.Text = "" lblErstellt.Text = "" cmdCreateStandardProfil.Enabled = False End Sub '''Erstellt eine Formularinstanz um einen bestehenden Mitarbeiter zu bearbeiten '''Der zu bearbeitende Mitarbeiter ''' Public Sub New(ByVal mitarbeiterNr As Integer) Me.New() Try If mitarbeiterNr > 0 Then _mitarbeiter = New BusinessFacade.Mitarbeiter(mitarbeiterNr) LoadDetail() cmdCreateStandardProfil.Enabled = True End If Catch ex As Exception MessageBox.Show(BusinessFacade.Meldungstext.GetInhaltById(303), Common.Consts.FEHLER, MessageBoxButtons.OK, MessageBoxIcon.Error) TKBLib.Errorhandling.TraceHelper.Msg("EDOKAApp.frmAdminMitarbeiterEdit.New: ", ex.Message & " StackTrance: " & ex.StackTrace, TraceLevel.Error) End Try End Sub #End Region #Region " Vom Windows Form Designer generierter Code " ' Die Form überschreibt den Löschvorgang der Basisklasse, um Komponenten zu bereinigen. Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean) If disposing Then If Not (components Is Nothing) Then components.Dispose() End If End If MyBase.Dispose(disposing) End Sub ' Für Windows Form-Designer erforderlich Private components As System.ComponentModel.IContainer 'HINWEIS: Die folgende Prozedur ist für den Windows Form-Designer erforderlich 'Sie kann mit dem Windows Form-Designer modifiziert werden. 'Verwenden Sie nicht den Code-Editor zur Bearbeitung. Friend WithEvents tcMenu As System.Windows.Forms.TabControl Friend WithEvents tabAllgemein As System.Windows.Forms.TabPage Friend WithEvents tabErweitert As System.Windows.Forms.TabPage Friend WithEvents tabTeams As System.Windows.Forms.TabPage Friend WithEvents tabFunktionen As System.Windows.Forms.TabPage Friend WithEvents Label1 As System.Windows.Forms.Label Friend WithEvents Label2 As System.Windows.Forms.Label Friend WithEvents Label3 As System.Windows.Forms.Label Friend WithEvents Label4 As System.Windows.Forms.Label Friend WithEvents Label5 As System.Windows.Forms.Label Friend WithEvents lblMitarbeiterNr As System.Windows.Forms.Label Friend WithEvents Label6 As System.Windows.Forms.Label Friend WithEvents Label7 As System.Windows.Forms.Label Friend WithEvents txtVorname As System.Windows.Forms.TextBox Friend WithEvents txtNachname As System.Windows.Forms.TextBox Friend WithEvents txtKurzzeichen As System.Windows.Forms.TextBox Friend WithEvents Label8 As System.Windows.Forms.Label Friend WithEvents txtAnrede As System.Windows.Forms.TextBox Friend WithEvents Label9 As System.Windows.Forms.Label Friend WithEvents txtTGNummer As System.Windows.Forms.TextBox Friend WithEvents Label10 As System.Windows.Forms.Label Friend WithEvents txteMail As System.Windows.Forms.TextBox Friend WithEvents Label11 As System.Windows.Forms.Label Friend WithEvents txtFax As System.Windows.Forms.TextBox Friend WithEvents Label12 As System.Windows.Forms.Label Friend WithEvents txtTelefon As System.Windows.Forms.TextBox Friend WithEvents Label13 As System.Windows.Forms.Label Friend WithEvents txtUnterschriftText As System.Windows.Forms.TextBox Friend WithEvents Label14 As System.Windows.Forms.Label Friend WithEvents chkIsActive As System.Windows.Forms.CheckBox Friend WithEvents Label15 As System.Windows.Forms.Label Friend WithEvents lblErstellt As System.Windows.Forms.Label Friend WithEvents lblBearbeitet As System.Windows.Forms.Label Friend WithEvents Label16 As System.Windows.Forms.Label Friend WithEvents Label17 As System.Windows.Forms.Label Friend WithEvents txtFunktion As System.Windows.Forms.TextBox Friend WithEvents Label18 As System.Windows.Forms.Label Friend WithEvents Label19 As System.Windows.Forms.Label Friend WithEvents Label20 As System.Windows.Forms.Label Friend WithEvents Label22 As System.Windows.Forms.Label Friend WithEvents Label29 As System.Windows.Forms.Label Friend WithEvents Label30 As System.Windows.Forms.Label Friend WithEvents Label31 As System.Windows.Forms.Label Friend WithEvents Label34 As System.Windows.Forms.Label Friend WithEvents txtPartnerNr As System.Windows.Forms.TextBox Friend WithEvents txtMail1 As System.Windows.Forms.TextBox Friend WithEvents txtRang As System.Windows.Forms.TextBox Friend WithEvents Label21 As System.Windows.Forms.Label Friend WithEvents chkShowToolTip As System.Windows.Forms.CheckBox Friend WithEvents chkMailEmpfang As System.Windows.Forms.CheckBox Friend WithEvents chkEdokaMessage As System.Windows.Forms.CheckBox Friend WithEvents chkMailDokumentRueckgang As System.Windows.Forms.CheckBox Friend WithEvents chkEdokaMail As System.Windows.Forms.CheckBox Friend WithEvents chkJournalisierung As System.Windows.Forms.CheckBox Friend WithEvents chkGebMeldung As System.Windows.Forms.CheckBox Friend WithEvents chkMailDirektVersenden As System.Windows.Forms.CheckBox Friend WithEvents cboMandant As System.Windows.Forms.ComboBox Friend WithEvents cboSprache As System.Windows.Forms.ComboBox Friend WithEvents cboFuerMandant As System.Windows.Forms.ComboBox Friend WithEvents Label23 As System.Windows.Forms.Label Friend WithEvents grdMATeams As C1.Win.C1TrueDBGrid.C1TrueDBGrid Friend WithEvents Label24 As System.Windows.Forms.Label Friend WithEvents grdAlleTeams As C1.Win.C1TrueDBGrid.C1TrueDBGrid Friend WithEvents cmdTeamConnect As System.Windows.Forms.Button Friend WithEvents Label25 As System.Windows.Forms.Label Friend WithEvents Label26 As System.Windows.Forms.Label Friend WithEvents Label27 As System.Windows.Forms.Label Friend WithEvents lblTeamName As System.Windows.Forms.Label Friend WithEvents cmdSaveTeamMitarbeiter As System.Windows.Forms.Button Friend WithEvents txtAnteil As System.Windows.Forms.TextBox Friend WithEvents grdMAFunktionsgruppen As C1.Win.C1TrueDBGrid.C1TrueDBGrid Friend WithEvents grdAlleFunktionsgruppen As C1.Win.C1TrueDBGrid.C1TrueDBGrid Friend WithEvents cmdZuordnenFunktionsgruppen As System.Windows.Forms.Button Friend WithEvents cboKlassifizierung As System.Windows.Forms.ComboBox Friend WithEvents ImageList1 As System.Windows.Forms.ImageList Friend WithEvents tbMenu As System.Windows.Forms.ToolBar Friend WithEvents cmdClose As System.Windows.Forms.ToolBarButton Friend WithEvents cmdSave As System.Windows.Forms.ToolBarButton Friend WithEvents cmdCreateStandardProfil As System.Windows.Forms.Button Friend WithEvents ctxAktivSetzen As System.Windows.Forms.ContextMenu Friend WithEvents mnuAktivieren As System.Windows.Forms.MenuItem Friend WithEvents mnuDeaktivieren As System.Windows.Forms.MenuItem Private Sub InitializeComponent() Me.components = New System.ComponentModel.Container() Dim resources As System.Resources.ResourceManager = New System.Resources.ResourceManager(GetType(frmAdminMitarbeiterEdit)) Dim GridLines1 As C1.Win.C1TrueDBGrid.Util.GridLines = New C1.Win.C1TrueDBGrid.Util.GridLines() Dim GridLines2 As C1.Win.C1TrueDBGrid.Util.GridLines = New C1.Win.C1TrueDBGrid.Util.GridLines() Dim GridLines3 As C1.Win.C1TrueDBGrid.Util.GridLines = New C1.Win.C1TrueDBGrid.Util.GridLines() Dim GridLines4 As C1.Win.C1TrueDBGrid.Util.GridLines = New C1.Win.C1TrueDBGrid.Util.GridLines() Me.tcMenu = New System.Windows.Forms.TabControl() Me.tabAllgemein = New System.Windows.Forms.TabPage() Me.txtFunktion = New System.Windows.Forms.TextBox() Me.Label18 = New System.Windows.Forms.Label() Me.Label16 = New System.Windows.Forms.Label() Me.Label17 = New System.Windows.Forms.Label() Me.lblBearbeitet = New System.Windows.Forms.Label() Me.lblErstellt = New System.Windows.Forms.Label() Me.Label15 = New System.Windows.Forms.Label() Me.chkIsActive = New System.Windows.Forms.CheckBox() Me.txtUnterschriftText = New System.Windows.Forms.TextBox() Me.Label14 = New System.Windows.Forms.Label() Me.txtTelefon = New System.Windows.Forms.TextBox() Me.Label13 = New System.Windows.Forms.Label() Me.txtFax = New System.Windows.Forms.TextBox() Me.Label12 = New System.Windows.Forms.Label() Me.txteMail = New System.Windows.Forms.TextBox() Me.Label11 = New System.Windows.Forms.Label() Me.txtTGNummer = New System.Windows.Forms.TextBox() Me.Label10 = New System.Windows.Forms.Label() Me.txtAnrede = New System.Windows.Forms.TextBox() Me.Label9 = New System.Windows.Forms.Label() Me.txtKurzzeichen = New System.Windows.Forms.TextBox() Me.Label8 = New System.Windows.Forms.Label() Me.txtNachname = New System.Windows.Forms.TextBox() Me.txtVorname = New System.Windows.Forms.TextBox() Me.Label7 = New System.Windows.Forms.Label() Me.Label6 = New System.Windows.Forms.Label() Me.lblMitarbeiterNr = New System.Windows.Forms.Label() Me.Label5 = New System.Windows.Forms.Label() Me.Label1 = New System.Windows.Forms.Label() Me.tabErweitert = New System.Windows.Forms.TabPage() Me.cmdCreateStandardProfil = New System.Windows.Forms.Button() Me.cboKlassifizierung = New System.Windows.Forms.ComboBox() Me.cboFuerMandant = New System.Windows.Forms.ComboBox() Me.cboSprache = New System.Windows.Forms.ComboBox() Me.cboMandant = New System.Windows.Forms.ComboBox() Me.chkGebMeldung = New System.Windows.Forms.CheckBox() Me.chkMailDirektVersenden = New System.Windows.Forms.CheckBox() Me.chkJournalisierung = New System.Windows.Forms.CheckBox() Me.chkEdokaMail = New System.Windows.Forms.CheckBox() Me.chkMailDokumentRueckgang = New System.Windows.Forms.CheckBox() Me.chkEdokaMessage = New System.Windows.Forms.CheckBox() Me.chkMailEmpfang = New System.Windows.Forms.CheckBox() Me.chkShowToolTip = New System.Windows.Forms.CheckBox() Me.Label21 = New System.Windows.Forms.Label() Me.txtMail1 = New System.Windows.Forms.TextBox() Me.Label31 = New System.Windows.Forms.Label() Me.txtRang = New System.Windows.Forms.TextBox() Me.Label34 = New System.Windows.Forms.Label() Me.Label29 = New System.Windows.Forms.Label() Me.Label30 = New System.Windows.Forms.Label() Me.txtPartnerNr = New System.Windows.Forms.TextBox() Me.Label22 = New System.Windows.Forms.Label() Me.Label20 = New System.Windows.Forms.Label() Me.Label19 = New System.Windows.Forms.Label() Me.Label2 = New System.Windows.Forms.Label() Me.tabTeams = New System.Windows.Forms.TabPage() Me.grdMATeams = New C1.Win.C1TrueDBGrid.C1TrueDBGrid() Me.ctxAktivSetzen = New System.Windows.Forms.ContextMenu() Me.mnuAktivieren = New System.Windows.Forms.MenuItem() Me.mnuDeaktivieren = New System.Windows.Forms.MenuItem() Me.txtAnteil = New System.Windows.Forms.TextBox() Me.cmdSaveTeamMitarbeiter = New System.Windows.Forms.Button() Me.lblTeamName = New System.Windows.Forms.Label() Me.Label27 = New System.Windows.Forms.Label() Me.Label26 = New System.Windows.Forms.Label() Me.Label25 = New System.Windows.Forms.Label() Me.cmdTeamConnect = New System.Windows.Forms.Button() Me.grdAlleTeams = New C1.Win.C1TrueDBGrid.C1TrueDBGrid() Me.Label24 = New System.Windows.Forms.Label() Me.Label3 = New System.Windows.Forms.Label() Me.tabFunktionen = New System.Windows.Forms.TabPage() Me.grdAlleFunktionsgruppen = New C1.Win.C1TrueDBGrid.C1TrueDBGrid() Me.grdMAFunktionsgruppen = New C1.Win.C1TrueDBGrid.C1TrueDBGrid() Me.Label23 = New System.Windows.Forms.Label() Me.cmdZuordnenFunktionsgruppen = New System.Windows.Forms.Button() Me.Label4 = New System.Windows.Forms.Label() Me.ImageList1 = New System.Windows.Forms.ImageList(Me.components) Me.tbMenu = New System.Windows.Forms.ToolBar() Me.cmdClose = New System.Windows.Forms.ToolBarButton() Me.cmdSave = New System.Windows.Forms.ToolBarButton() Me.tcMenu.SuspendLayout() Me.tabAllgemein.SuspendLayout() Me.tabErweitert.SuspendLayout() Me.tabTeams.SuspendLayout() CType(Me.grdMATeams, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.grdAlleTeams, System.ComponentModel.ISupportInitialize).BeginInit() Me.tabFunktionen.SuspendLayout() CType(Me.grdAlleFunktionsgruppen, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.grdMAFunktionsgruppen, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'tcMenu ' Me.tcMenu.Anchor = (((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ Or System.Windows.Forms.AnchorStyles.Left) _ Or System.Windows.Forms.AnchorStyles.Right) Me.tcMenu.Controls.AddRange(New System.Windows.Forms.Control() {Me.tabAllgemein, Me.tabErweitert, Me.tabTeams, Me.tabFunktionen}) Me.tcMenu.Location = New System.Drawing.Point(8, 40) Me.tcMenu.Name = "tcMenu" Me.tcMenu.SelectedIndex = 0 Me.tcMenu.Size = New System.Drawing.Size(674, 496) Me.tcMenu.TabIndex = 0 ' 'tabAllgemein ' Me.tabAllgemein.Controls.AddRange(New System.Windows.Forms.Control() {Me.txtFunktion, Me.Label18, Me.Label16, Me.Label17, Me.lblBearbeitet, Me.lblErstellt, Me.Label15, Me.chkIsActive, Me.txtUnterschriftText, Me.Label14, Me.txtTelefon, Me.Label13, Me.txtFax, Me.Label12, Me.txteMail, Me.Label11, Me.txtTGNummer, Me.Label10, Me.txtAnrede, Me.Label9, Me.txtKurzzeichen, Me.Label8, Me.txtNachname, Me.txtVorname, Me.Label7, Me.Label6, Me.lblMitarbeiterNr, Me.Label5, Me.Label1}) Me.tabAllgemein.Location = New System.Drawing.Point(4, 22) Me.tabAllgemein.Name = "tabAllgemein" Me.tabAllgemein.Size = New System.Drawing.Size(666, 470) Me.tabAllgemein.TabIndex = 0 Me.tabAllgemein.Tag = "tabAllgemein" Me.tabAllgemein.Text = "Allgemein" ' 'txtFunktion ' Me.txtFunktion.Location = New System.Drawing.Point(128, 176) Me.txtFunktion.MaxLength = 50 Me.txtFunktion.Name = "txtFunktion" Me.txtFunktion.Size = New System.Drawing.Size(200, 20) Me.txtFunktion.TabIndex = 14 Me.txtFunktion.Text = "" ' 'Label18 ' Me.Label18.Location = New System.Drawing.Point(24, 176) Me.Label18.Name = "Label18" Me.Label18.Size = New System.Drawing.Size(100, 16) Me.Label18.TabIndex = 13 Me.Label18.Text = "Funktion:" ' 'Label16 ' Me.Label16.Location = New System.Drawing.Point(24, 400) Me.Label16.Name = "Label16" Me.Label16.Size = New System.Drawing.Size(88, 16) Me.Label16.TabIndex = 27 Me.Label16.Text = "Bearbeitet:" ' 'Label17 ' Me.Label17.Location = New System.Drawing.Point(24, 384) Me.Label17.Name = "Label17" Me.Label17.Size = New System.Drawing.Size(88, 16) Me.Label17.TabIndex = 25 Me.Label17.Text = "Erstellt:" ' 'lblBearbeitet ' Me.lblBearbeitet.Location = New System.Drawing.Point(128, 400) Me.lblBearbeitet.Name = "lblBearbeitet" Me.lblBearbeitet.Size = New System.Drawing.Size(376, 16) Me.lblBearbeitet.TabIndex = 28 Me.lblBearbeitet.Text = "lblBearbeitet" ' 'lblErstellt ' Me.lblErstellt.Location = New System.Drawing.Point(128, 384) Me.lblErstellt.Name = "lblErstellt" Me.lblErstellt.Size = New System.Drawing.Size(376, 16) Me.lblErstellt.TabIndex = 26 Me.lblErstellt.Text = "lblErstellt" ' 'Label15 ' Me.Label15.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Label15.Location = New System.Drawing.Point(8, 352) Me.Label15.Name = "Label15" Me.Label15.Size = New System.Drawing.Size(328, 23) Me.Label15.TabIndex = 24 Me.Label15.Text = "Änderungen" ' 'chkIsActive ' Me.chkIsActive.Location = New System.Drawing.Point(32, 312) Me.chkIsActive.Name = "chkIsActive" Me.chkIsActive.Size = New System.Drawing.Size(304, 24) Me.chkIsActive.TabIndex = 23 Me.chkIsActive.Text = "Aktiver Benutzer" ' 'txtUnterschriftText ' Me.txtUnterschriftText.Location = New System.Drawing.Point(128, 288) Me.txtUnterschriftText.MaxLength = 50 Me.txtUnterschriftText.Name = "txtUnterschriftText" Me.txtUnterschriftText.Size = New System.Drawing.Size(200, 20) Me.txtUnterschriftText.TabIndex = 22 Me.txtUnterschriftText.Text = "" ' 'Label14 ' Me.Label14.Location = New System.Drawing.Point(24, 288) Me.Label14.Name = "Label14" Me.Label14.Size = New System.Drawing.Size(100, 16) Me.Label14.TabIndex = 21 Me.Label14.Text = "Unterschrift:" ' 'txtTelefon ' Me.txtTelefon.Location = New System.Drawing.Point(128, 248) Me.txtTelefon.MaxLength = 50 Me.txtTelefon.Name = "txtTelefon" Me.txtTelefon.Size = New System.Drawing.Size(200, 20) Me.txtTelefon.TabIndex = 20 Me.txtTelefon.Text = "" ' 'Label13 ' Me.Label13.Location = New System.Drawing.Point(24, 248) Me.Label13.Name = "Label13" Me.Label13.Size = New System.Drawing.Size(100, 16) Me.Label13.TabIndex = 19 Me.Label13.Text = "Telefon:" ' 'txtFax ' Me.txtFax.Location = New System.Drawing.Point(128, 224) Me.txtFax.MaxLength = 50 Me.txtFax.Name = "txtFax" Me.txtFax.Size = New System.Drawing.Size(200, 20) Me.txtFax.TabIndex = 18 Me.txtFax.Text = "" ' 'Label12 ' Me.Label12.Location = New System.Drawing.Point(24, 224) Me.Label12.Name = "Label12" Me.Label12.Size = New System.Drawing.Size(100, 16) Me.Label12.TabIndex = 17 Me.Label12.Text = "Fax:" ' 'txteMail ' Me.txteMail.Location = New System.Drawing.Point(128, 200) Me.txteMail.MaxLength = 50 Me.txteMail.Name = "txteMail" Me.txteMail.Size = New System.Drawing.Size(200, 20) Me.txteMail.TabIndex = 16 Me.txteMail.Text = "" ' 'Label11 ' Me.Label11.Location = New System.Drawing.Point(24, 200) Me.Label11.Name = "Label11" Me.Label11.Size = New System.Drawing.Size(100, 16) Me.Label11.TabIndex = 15 Me.Label11.Text = "eMail:" ' 'txtTGNummer ' Me.txtTGNummer.Location = New System.Drawing.Point(128, 136) Me.txtTGNummer.MaxLength = 50 Me.txtTGNummer.Name = "txtTGNummer" Me.txtTGNummer.Size = New System.Drawing.Size(200, 20) Me.txtTGNummer.TabIndex = 12 Me.txtTGNummer.Text = "" ' 'Label10 ' Me.Label10.Location = New System.Drawing.Point(24, 136) Me.Label10.Name = "Label10" Me.Label10.Size = New System.Drawing.Size(100, 16) Me.Label10.TabIndex = 11 Me.Label10.Text = "TG-Nummer:" ' 'txtAnrede ' Me.txtAnrede.Location = New System.Drawing.Point(128, 64) Me.txtAnrede.MaxLength = 50 Me.txtAnrede.Name = "txtAnrede" Me.txtAnrede.Size = New System.Drawing.Size(128, 20) Me.txtAnrede.TabIndex = 4 Me.txtAnrede.Text = "" ' 'Label9 ' Me.Label9.Location = New System.Drawing.Point(24, 64) Me.Label9.Name = "Label9" Me.Label9.Size = New System.Drawing.Size(100, 16) Me.Label9.TabIndex = 3 Me.Label9.Text = "Anrede:" ' 'txtKurzzeichen ' Me.txtKurzzeichen.Location = New System.Drawing.Point(456, 88) Me.txtKurzzeichen.MaxLength = 10 Me.txtKurzzeichen.Name = "txtKurzzeichen" Me.txtKurzzeichen.Size = New System.Drawing.Size(80, 20) Me.txtKurzzeichen.TabIndex = 8 Me.txtKurzzeichen.Text = "" ' 'Label8 ' Me.Label8.Location = New System.Drawing.Point(352, 88) Me.Label8.Name = "Label8" Me.Label8.Size = New System.Drawing.Size(100, 16) Me.Label8.TabIndex = 7 Me.Label8.Text = "Kurzzeichen:" ' 'txtNachname ' Me.txtNachname.Location = New System.Drawing.Point(128, 112) Me.txtNachname.MaxLength = 50 Me.txtNachname.Name = "txtNachname" Me.txtNachname.Size = New System.Drawing.Size(200, 20) Me.txtNachname.TabIndex = 10 Me.txtNachname.Text = "" ' 'txtVorname ' Me.txtVorname.Location = New System.Drawing.Point(128, 88) Me.txtVorname.MaxLength = 50 Me.txtVorname.Name = "txtVorname" Me.txtVorname.Size = New System.Drawing.Size(200, 20) Me.txtVorname.TabIndex = 6 Me.txtVorname.Text = "" ' 'Label7 ' Me.Label7.Location = New System.Drawing.Point(24, 112) Me.Label7.Name = "Label7" Me.Label7.Size = New System.Drawing.Size(100, 16) Me.Label7.TabIndex = 9 Me.Label7.Text = "Nachname:" ' 'Label6 ' Me.Label6.Location = New System.Drawing.Point(24, 88) Me.Label6.Name = "Label6" Me.Label6.Size = New System.Drawing.Size(100, 16) Me.Label6.TabIndex = 5 Me.Label6.Text = "Vorname:" ' 'lblMitarbeiterNr ' Me.lblMitarbeiterNr.Location = New System.Drawing.Point(128, 40) Me.lblMitarbeiterNr.Name = "lblMitarbeiterNr" Me.lblMitarbeiterNr.Size = New System.Drawing.Size(216, 16) Me.lblMitarbeiterNr.TabIndex = 2 Me.lblMitarbeiterNr.Text = "mitarbeiterNr" ' 'Label5 ' Me.Label5.Location = New System.Drawing.Point(24, 40) Me.Label5.Name = "Label5" Me.Label5.Size = New System.Drawing.Size(100, 16) Me.Label5.TabIndex = 1 Me.Label5.Text = "MitarbeiterNr:" ' 'Label1 ' Me.Label1.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Label1.Location = New System.Drawing.Point(8, 8) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(328, 23) Me.Label1.TabIndex = 0 Me.Label1.Text = "Allgemeine Angaben" ' 'tabErweitert ' Me.tabErweitert.Controls.AddRange(New System.Windows.Forms.Control() {Me.cmdCreateStandardProfil, Me.cboKlassifizierung, Me.cboFuerMandant, Me.cboSprache, Me.cboMandant, Me.chkGebMeldung, Me.chkMailDirektVersenden, Me.chkJournalisierung, Me.chkEdokaMail, Me.chkMailDokumentRueckgang, Me.chkEdokaMessage, Me.chkMailEmpfang, Me.chkShowToolTip, Me.Label21, Me.txtMail1, Me.Label31, Me.txtRang, Me.Label34, Me.Label29, Me.Label30, Me.txtPartnerNr, Me.Label22, Me.Label20, Me.Label19, Me.Label2}) Me.tabErweitert.Location = New System.Drawing.Point(4, 22) Me.tabErweitert.Name = "tabErweitert" Me.tabErweitert.Size = New System.Drawing.Size(666, 470) Me.tabErweitert.TabIndex = 1 Me.tabErweitert.Tag = "tabErweitert" Me.tabErweitert.Text = "Erweitert" ' 'cmdCreateStandardProfil ' Me.cmdCreateStandardProfil.Location = New System.Drawing.Point(208, 368) Me.cmdCreateStandardProfil.Name = "cmdCreateStandardProfil" Me.cmdCreateStandardProfil.Size = New System.Drawing.Size(168, 23) Me.cmdCreateStandardProfil.TabIndex = 24 Me.cmdCreateStandardProfil.Text = "Standard Profil neu erstellen" ' 'cboKlassifizierung ' Me.cboKlassifizierung.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.cboKlassifizierung.Location = New System.Drawing.Point(128, 160) Me.cboKlassifizierung.Name = "cboKlassifizierung" Me.cboKlassifizierung.Size = New System.Drawing.Size(144, 21) Me.cboKlassifizierung.TabIndex = 12 ' 'cboFuerMandant ' Me.cboFuerMandant.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.cboFuerMandant.Items.AddRange(New Object() {"Edoka"}) Me.cboFuerMandant.Location = New System.Drawing.Point(128, 112) Me.cboFuerMandant.Name = "cboFuerMandant" Me.cboFuerMandant.Size = New System.Drawing.Size(144, 21) Me.cboFuerMandant.TabIndex = 8 ' 'cboSprache ' Me.cboSprache.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.cboSprache.Items.AddRange(New Object() {"Deutsch"}) Me.cboSprache.Location = New System.Drawing.Point(128, 136) Me.cboSprache.Name = "cboSprache" Me.cboSprache.Size = New System.Drawing.Size(144, 21) Me.cboSprache.TabIndex = 10 ' 'cboMandant ' Me.cboMandant.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.cboMandant.Items.AddRange(New Object() {"Edoka"}) Me.cboMandant.Location = New System.Drawing.Point(128, 88) Me.cboMandant.Name = "cboMandant" Me.cboMandant.Size = New System.Drawing.Size(144, 21) Me.cboMandant.TabIndex = 6 ' 'chkGebMeldung ' Me.chkGebMeldung.Location = New System.Drawing.Point(208, 272) Me.chkGebMeldung.Name = "chkGebMeldung" Me.chkGebMeldung.Size = New System.Drawing.Size(192, 24) Me.chkGebMeldung.TabIndex = 23 Me.chkGebMeldung.Text = "Geburtstags Meldung anzeigen" ' 'chkMailDirektVersenden ' Me.chkMailDirektVersenden.Location = New System.Drawing.Point(208, 248) Me.chkMailDirektVersenden.Name = "chkMailDirektVersenden" Me.chkMailDirektVersenden.Size = New System.Drawing.Size(192, 24) Me.chkMailDirektVersenden.TabIndex = 22 Me.chkMailDirektVersenden.Text = "" ' 'chkJournalisierung ' Me.chkJournalisierung.Location = New System.Drawing.Point(24, 368) Me.chkJournalisierung.Name = "chkJournalisierung" Me.chkJournalisierung.Size = New System.Drawing.Size(176, 24) Me.chkJournalisierung.TabIndex = 21 Me.chkJournalisierung.Text = "" ' 'chkEdokaMail ' Me.chkEdokaMail.Location = New System.Drawing.Point(24, 344) Me.chkEdokaMail.Name = "chkEdokaMail" Me.chkEdokaMail.Size = New System.Drawing.Size(176, 24) Me.chkEdokaMail.TabIndex = 20 Me.chkEdokaMail.Text = "" ' 'chkMailDokumentRueckgang ' Me.chkMailDokumentRueckgang.Location = New System.Drawing.Point(24, 320) Me.chkMailDokumentRueckgang.Name = "chkMailDokumentRueckgang" Me.chkMailDokumentRueckgang.Size = New System.Drawing.Size(176, 24) Me.chkMailDokumentRueckgang.TabIndex = 19 Me.chkMailDokumentRueckgang.Text = "" ' 'chkEdokaMessage ' Me.chkEdokaMessage.Location = New System.Drawing.Point(24, 296) Me.chkEdokaMessage.Name = "chkEdokaMessage" Me.chkEdokaMessage.Size = New System.Drawing.Size(176, 24) Me.chkEdokaMessage.TabIndex = 18 Me.chkEdokaMessage.Text = "" ' 'chkMailEmpfang ' Me.chkMailEmpfang.Location = New System.Drawing.Point(24, 272) Me.chkMailEmpfang.Name = "chkMailEmpfang" Me.chkMailEmpfang.Size = New System.Drawing.Size(176, 24) Me.chkMailEmpfang.TabIndex = 17 Me.chkMailEmpfang.Text = "" ' 'chkShowToolTip ' Me.chkShowToolTip.Location = New System.Drawing.Point(24, 248) Me.chkShowToolTip.Name = "chkShowToolTip" Me.chkShowToolTip.Size = New System.Drawing.Size(176, 24) Me.chkShowToolTip.TabIndex = 16 Me.chkShowToolTip.Text = "ToolTipps anzeigen" ' 'Label21 ' Me.Label21.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Label21.Location = New System.Drawing.Point(8, 216) Me.Label21.Name = "Label21" Me.Label21.Size = New System.Drawing.Size(328, 23) Me.Label21.TabIndex = 15 Me.Label21.Text = "Einstellungen" ' 'txtMail1 ' Me.txtMail1.Location = New System.Drawing.Point(128, 184) Me.txtMail1.MaxLength = 50 Me.txtMail1.Name = "txtMail1" Me.txtMail1.ReadOnly = True Me.txtMail1.Size = New System.Drawing.Size(144, 20) Me.txtMail1.TabIndex = 14 Me.txtMail1.Text = "" ' 'Label31 ' Me.Label31.Location = New System.Drawing.Point(24, 184) Me.Label31.Name = "Label31" Me.Label31.Size = New System.Drawing.Size(100, 16) Me.Label31.TabIndex = 13 Me.Label31.Text = "Team-Mail:" ' 'txtRang ' Me.txtRang.Location = New System.Drawing.Point(128, 40) Me.txtRang.MaxLength = 50 Me.txtRang.Name = "txtRang" Me.txtRang.Size = New System.Drawing.Size(144, 20) Me.txtRang.TabIndex = 2 Me.txtRang.Text = "" ' 'Label34 ' Me.Label34.Location = New System.Drawing.Point(24, 40) Me.Label34.Name = "Label34" Me.Label34.Size = New System.Drawing.Size(100, 16) Me.Label34.TabIndex = 1 Me.Label34.Text = "Rang:" ' 'Label29 ' Me.Label29.Location = New System.Drawing.Point(24, 160) Me.Label29.Name = "Label29" Me.Label29.Size = New System.Drawing.Size(100, 16) Me.Label29.TabIndex = 11 Me.Label29.Text = "Klassifizierung:" ' 'Label30 ' Me.Label30.Location = New System.Drawing.Point(24, 136) Me.Label30.Name = "Label30" Me.Label30.Size = New System.Drawing.Size(100, 16) Me.Label30.TabIndex = 9 Me.Label30.Text = "Sprache in Edoka:" ' 'txtPartnerNr ' Me.txtPartnerNr.Location = New System.Drawing.Point(128, 64) Me.txtPartnerNr.MaxLength = 50 Me.txtPartnerNr.Name = "txtPartnerNr" Me.txtPartnerNr.Size = New System.Drawing.Size(144, 20) Me.txtPartnerNr.TabIndex = 4 Me.txtPartnerNr.Text = "" ' 'Label22 ' Me.Label22.Location = New System.Drawing.Point(24, 64) Me.Label22.Name = "Label22" Me.Label22.Size = New System.Drawing.Size(100, 16) Me.Label22.TabIndex = 3 Me.Label22.Text = "Partner Nr:" ' 'Label20 ' Me.Label20.Location = New System.Drawing.Point(24, 112) Me.Label20.Name = "Label20" Me.Label20.Size = New System.Drawing.Size(100, 16) Me.Label20.TabIndex = 7 Me.Label20.Text = "Für Mandant:" ' 'Label19 ' Me.Label19.Location = New System.Drawing.Point(24, 88) Me.Label19.Name = "Label19" Me.Label19.Size = New System.Drawing.Size(100, 16) Me.Label19.TabIndex = 5 Me.Label19.Text = "Mandant:" ' 'Label2 ' Me.Label2.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Label2.Location = New System.Drawing.Point(8, 8) Me.Label2.Name = "Label2" Me.Label2.Size = New System.Drawing.Size(328, 23) Me.Label2.TabIndex = 0 Me.Label2.Text = "Erweiterte Informationen" ' 'tabTeams ' Me.tabTeams.Controls.AddRange(New System.Windows.Forms.Control() {Me.grdMATeams, Me.txtAnteil, Me.cmdSaveTeamMitarbeiter, Me.lblTeamName, Me.Label27, Me.Label26, Me.Label25, Me.cmdTeamConnect, Me.grdAlleTeams, Me.Label24, Me.Label3}) Me.tabTeams.Location = New System.Drawing.Point(4, 22) Me.tabTeams.Name = "tabTeams" Me.tabTeams.Size = New System.Drawing.Size(666, 470) Me.tabTeams.TabIndex = 2 Me.tabTeams.Tag = "tabTeams" Me.tabTeams.Text = "Teams" ' 'grdMATeams ' Me.grdMATeams.AllowFilter = True Me.grdMATeams.AllowRowSizing = C1.Win.C1TrueDBGrid.RowSizingEnum.AllRows Me.grdMATeams.AllowSort = True Me.grdMATeams.AllowUpdate = False Me.grdMATeams.Anchor = (((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ Or System.Windows.Forms.AnchorStyles.Left) _ Or System.Windows.Forms.AnchorStyles.Right) Me.grdMATeams.CaptionHeight = 17 Me.grdMATeams.CellTips = C1.Win.C1TrueDBGrid.CellTipEnum.Anchored Me.grdMATeams.CollapseColor = System.Drawing.Color.Black Me.grdMATeams.ContextMenu = Me.ctxAktivSetzen Me.grdMATeams.DataChanged = False Me.grdMATeams.DeadAreaBackColor = System.Drawing.Color.Empty Me.grdMATeams.ExpandColor = System.Drawing.Color.Black Me.grdMATeams.FilterBar = True Me.grdMATeams.GroupByCaption = "Drag a column header here to group by that column" Me.grdMATeams.Images.Add(CType(resources.GetObject("resource.Images"), System.Drawing.Bitmap)) Me.grdMATeams.Location = New System.Drawing.Point(24, 184) Me.grdMATeams.MarqueeStyle = C1.Win.C1TrueDBGrid.MarqueeEnum.SolidCellBorder Me.grdMATeams.Name = "grdMATeams" Me.grdMATeams.PreviewInfo.Location = New System.Drawing.Point(0, 0) Me.grdMATeams.PreviewInfo.Size = New System.Drawing.Size(0, 0) Me.grdMATeams.PreviewInfo.ZoomFactor = 75 Me.grdMATeams.PrintInfo.ShowOptionsDialog = False Me.grdMATeams.RecordSelectorWidth = 16 GridLines1.Color = System.Drawing.Color.DarkGray GridLines1.Style = C1.Win.C1TrueDBGrid.LineStyleEnum.Single Me.grdMATeams.RowDivider = GridLines1 Me.grdMATeams.RowHeight = 15 Me.grdMATeams.RowSubDividerColor = System.Drawing.Color.DarkGray Me.grdMATeams.ScrollTips = False Me.grdMATeams.Size = New System.Drawing.Size(264, 270) Me.grdMATeams.TabIndex = 8 Me.grdMATeams.Text = "C1TrueDBGrid1" Me.grdMATeams.WrapCellPointer = True Me.grdMATeams.PropBag = "Group{BackColor:ControlDark;Border:None,,0, 0, 0, 0;AlignVert:Center;}E" & _ "ditor{}Style2{}Style5{}Style4{}Style7{}Style6{}EvenRow{BackColor:Aqua;}Selected{" & _ "ForeColor:HighlightText;BackColor:Highlight;}Style3{}Inactive{ForeColor:Inactive" & _ "CaptionText;BackColor:InactiveCaption;}FilterBar{BackColor:255, 255, 128;}Footer" & _ "{}Caption{AlignHorz:Center;}Normal{}HighlightRow{ForeColor:HighlightText;BackCol" & _ "or:Highlight;}Style9{}OddRow{BackColor:ControlLight;}RecordSelector{AlignImage:C" & _ "enter;}Heading{Wrap:True;AlignVert:Center;Border:Raised,,1, 1, 1, 1;ForeColor:Co" & _ "ntrolText;BackColor:Control;}Style8{}Style10{AlignHorz:Near;}Style11{}Style12{}S" & _ "tyle13{}Style1{}0, 0, 260, 2660" & _ "