diff --git a/SDL/App.config b/SDL/App.config index 2fb2e6a3..2a197d1a 100644 --- a/SDL/App.config +++ b/SDL/App.config @@ -1,43 +1,47 @@ - + -
+
- + - + - - + + - - + + - - + + - - + + - - + + - - + + + + + + @@ -64,18 +68,18 @@ - - + + - + - + diff --git a/SDL/My Project/AssemblyInfo.vb b/SDL/My Project/AssemblyInfo.vb index 5bc2494e..d56af7a4 100644 --- a/SDL/My Project/AssemblyInfo.vb +++ b/SDL/My Project/AssemblyInfo.vb @@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices ' übernehmen, indem Sie "*" eingeben: ' - - + + diff --git a/SDL/SDL.vbproj b/SDL/SDL.vbproj index 3f0c84c5..e32a174f 100644 --- a/SDL/SDL.vbproj +++ b/SDL/SDL.vbproj @@ -342,6 +342,9 @@ False ..\..\..\dll\RKAesIcm.dll + + ..\..\..\Aviso\AVISO\packages\ZUGFeRD-csharp.16.0.2\lib\net48\s2industries.ZUGFeRD.dll + @@ -389,9 +392,6 @@ ..\..\..\AVISO\Aviso\packages\WpfAnimatedGif.1.4.14\lib\net\WpfAnimatedGif.dll True - - ..\packages\ZUGFeRD.NET.1.0.1\lib\ZUGFeRD.NET.dll - diff --git a/SDL/USTV/frmMDM_USTVAntrag.vb b/SDL/USTV/frmMDM_USTVAntrag.vb index 500e6f37..58bd07da 100644 --- a/SDL/USTV/frmMDM_USTVAntrag.vb +++ b/SDL/USTV/frmMDM_USTVAntrag.vb @@ -443,6 +443,12 @@ Public Class frmMDM_USTVAntrag Shared Function loadUSTVFrom_VERAG(UStVAn_ID, Antrag_LandKz, ArchivierteEintracheNochmalsEinarbetien) As Boolean Try + + If Antrag_LandKz <> "AT" Then + MsgBox("Nur für AT gültig!") + Return False + End If + Dim bytSchnittstellenNr = 1 Dim USTV_ANTRAG As New VERAG_PROG_ALLGEMEIN.cUSTVAntrag(UStVAn_ID) Dim dt_RE As New DataTable @@ -466,10 +472,10 @@ Public Class frmMDM_USTVAntrag If Not alreadyExists(USTV_ANTRAG.UStVAn_KuNr, USTV_ANTRAG.UStVAn_LandNr, USTV_POS) Then - USTV_POS.UStVPo_Schnittstelle = True - USTV_POS.UStVPo_Leistender = "VERAG 360 GmbH; 4975 Suben" - USTV_POS.UStVPo_Sachbearbeiter = VERAG_PROG_ALLGEMEIN.cAllgemein.USRKURZNAME - USTV_POS.UStVPo_Zeitstempel = Now() + USTV_POS.UStVPo_Schnittstelle = True + USTV_POS.UStVPo_Leistender = "VERAG 360 GmbH; 4975 Suben" + USTV_POS.UStVPo_Sachbearbeiter = VERAG_PROG_ALLGEMEIN.cAllgemein.USRKURZNAME + USTV_POS.UStVPo_Zeitstempel = Now() Dim dt_Prod As New DataTable @@ -504,11 +510,11 @@ Public Class frmMDM_USTVAntrag End If - 'Berechnungen + 'Berechnungen - Beträge IMMER in EUR! Dim umrechKurs As Double = 1 Dim UST_EUR = CDbl(r.Item("SteuerbetragLokal")) - USTV_POS.UStVPo_USteuerbetragEUR = UST_EUR 'Math.Round((UST_org / umrechKurs), 2) + USTV_POS.UStVPo_USteuerbetragEUR = UST_EUR USTV_POS.UStVPo_Umrechnungskurs = umrechKurs USTV_POS.UStVPo_USteuerbetrag = UST_EUR @@ -568,6 +574,8 @@ Public Class frmMDM_USTVAntrag USTV_POS.UStVPo_Zeitstempel = Now() ' Berechnungen + 'von RMC bekommen wir Fremdwährung und EUR, d.b. wir können und den Umrechnungskurs selbst berechnen! + Dim umrechKurs As Double = 1 If (CDbl(r.Item("rmc_betragBrutto")) > 0 AndAlso CDbl(r.Item("rmc_euroBrutto")) > 0) Then @@ -631,10 +639,7 @@ Public Class frmMDM_USTVAntrag USTV_POS.UStVPo_Zeitstempel = Now() ' Berechnungen - - '!UStVPo_USteuerbetrag = rst1!Umsatzsteuerbetrag - '!UStVPo_Umrechnungskurs = fktEurokurs(Me![UStVAn_Währungscode], ![UStVPo_ReDat]) - '!UStVPo_USteuerbetragEUR = Int(![UStVPo_USteuerbetrag] / !UStVPo_Umrechnungskurs * 100 + 0.5) / 100 + 'von MSE bekommen wir Fremdwährung und EUR, d.b. wir können und den Umrechnungskurs selbst berechnen! Dim umrechKurs As Double = 1 Dim UST_EUR = CDbl(r.Item("UST_EUR")) @@ -697,10 +702,7 @@ Public Class frmMDM_USTVAntrag USTV_POS.UStVPo_Zeitstempel = Now() ' Berechnungen - - '!UStVPo_USteuerbetrag = rst1!Umsatzsteuerbetrag - '!UStVPo_Umrechnungskurs = fktEurokurs(Me![UStVAn_Währungscode], ![UStVPo_ReDat]) - '!UStVPo_USteuerbetragEUR = Int(![UStVPo_USteuerbetrag] / !UStVPo_Umrechnungskurs * 100 + 0.5) / 100 + 'UTA liefert Beträge immer in EUR, wir müssen allerdings die Beträge in FREMDW umrechnen! Dim umrechKurs As Double = 1 @@ -713,6 +715,15 @@ Public Class frmMDM_USTVAntrag End If + If USTV_ANTRAG.UStVAn_Währungscode <> "EUR" Then + Dim kurs As New cEZB_Waehrungskurse(USTV_ANTRAG.UStVAn_Währungscode) + UST_org = Math.Round(kurs.EXCHANGE_EURTOCUR(UST_EUR, USTV_ANTRAG.UStVAn_Währungscode, CDate(USTV_POS.UStVPo_ReDat)), 2) + End If + + If (UST_org > 0 AndAlso UST_org <> UST_EUR) Then umrechKurs = (UST_org / UST_EUR * 100 + 0.5) / 100 + + + If UST_org > 0 Then USTV_POS.UStVPo_USteuerbetragEUR = UST_org 'Math.Round((UST_org / umrechKurs), 2) USTV_POS.UStVPo_Umrechnungskurs = umrechKurs @@ -766,17 +777,21 @@ Public Class frmMDM_USTVAntrag Dim umrechKurs As Double = 1 - Dim UST_org = CDbl(r.Item("Steuerbetrag")) + 'IDS liefert Beträge immer in EUR, wir müssen allerdings die Beträge in FREMDW umrechnen! + Dim UST_EUR = CDbl(r.Item("Steuerbetrag")) 'ist immer EUR + Dim UST_org = CDbl(r.Item("Steuerbetrag")) - If (UST_org > 0 AndAlso UST_org <> UST_EUR) Then - - umrechKurs = (UST_org / UST_EUR * 100 + 0.5) / 100 - + If USTV_ANTRAG.UStVAn_Währungscode <> "EUR" Then + Dim kurs As New cEZB_Waehrungskurse(USTV_ANTRAG.UStVAn_Währungscode) + UST_org = Math.Round(kurs.EXCHANGE_EURTOCUR(UST_EUR, USTV_ANTRAG.UStVAn_Währungscode, CDate(USTV_POS.UStVPo_ReDat)), 2) End If + If (UST_org > 0 AndAlso UST_org <> UST_EUR) Then umrechKurs = (UST_org / UST_EUR * 100 + 0.5) / 100 + + If UST_org > 0 Then - USTV_POS.UStVPo_USteuerbetragEUR = UST_org 'Math.Round((UST_org / umrechKurs), 2) + USTV_POS.UStVPo_USteuerbetragEUR = UST_EUR 'Math.Round((UST_org / umrechKurs), 2) USTV_POS.UStVPo_Umrechnungskurs = umrechKurs USTV_POS.UStVPo_USteuerbetrag = UST_org End If @@ -784,8 +799,8 @@ Public Class frmMDM_USTVAntrag If USTV_POS.INSERT() Then cIDS.UPDATE_ARCHIV(USTV_POS.UStVPo_ReDat, USTV_POS.UStVPo_ReNr, kdnr, Antrag_LandKz, USTV_POS.UStVAn_ID) End If - 'tblUStVPositionen - End If + 'tblUStVPositionen + End If Next @@ -1100,7 +1115,7 @@ Public Class frmMDM_USTVAntrag End If If Not ContextMenuStrip1.Items.ContainsKey("offeneAntraege") Then - Dim oa = New ToolStripMenuItem() With {.Text = "offene Anträge", .Name = "offeneAntraege", .Font = New Font(Me.Font.FontFamily, Me.Font.Size)} + Dim oa = New ToolStripMenuItem() With {.Text = "nicht eingearbeitet USTV-Anträge", .Name = "offeneAntraege", .Font = New Font(Me.Font.FontFamily, Me.Font.Size)} AddHandler oa.Click, AddressOf mnuItem_Clicked ContextMenuStrip1.Items.Add(oa) End If diff --git a/SDL/USTV/frmUSTVoffeneAntraege.Designer.vb b/SDL/USTV/frmUSTVoffeneAntraege.Designer.vb index 691a18eb..24588155 100644 --- a/SDL/USTV/frmUSTVoffeneAntraege.Designer.vb +++ b/SDL/USTV/frmUSTVoffeneAntraege.Designer.vb @@ -44,6 +44,7 @@ Partial Class frmUSTVoffeneAntraege Me.Label3 = New System.Windows.Forms.Label() Me.cbxAlleoffenen = New System.Windows.Forms.CheckBox() Me.lblKunde = New System.Windows.Forms.Label() + Me.btnAlle = New System.Windows.Forms.Button() Me.FlowLayoutPanel.SuspendLayout() CType(Me.MyDatagridview1, System.ComponentModel.ISupportInitialize).BeginInit() Me.Panel4.SuspendLayout() @@ -60,6 +61,7 @@ Partial Class frmUSTVoffeneAntraege Me.FlowLayoutPanel.Controls.Add(Me.Button1) Me.FlowLayoutPanel.Controls.Add(Me.Button2) Me.FlowLayoutPanel.Controls.Add(Me.Button3) + Me.FlowLayoutPanel.Controls.Add(Me.btnAlle) Me.FlowLayoutPanel.Location = New System.Drawing.Point(12, 29) Me.FlowLayoutPanel.Name = "FlowLayoutPanel" Me.FlowLayoutPanel.Size = New System.Drawing.Size(1409, 31) @@ -126,9 +128,9 @@ Partial Class frmUSTVoffeneAntraege Me.lbl.Font = New System.Drawing.Font("Microsoft Sans Serif", 10.0!, System.Drawing.FontStyle.Bold) Me.lbl.Location = New System.Drawing.Point(12, 9) Me.lbl.Name = "lbl" - Me.lbl.Size = New System.Drawing.Size(162, 17) + Me.lbl.Size = New System.Drawing.Size(253, 17) Me.lbl.TabIndex = 29 - Me.lbl.Text = "USTV offene Anträge" + Me.lbl.Text = "nicht eingearbeitet USTV-Anträge" ' 'MyDatagridview1 ' @@ -289,7 +291,7 @@ Partial Class frmUSTVoffeneAntraege Me.txtmaxAnz.Name = "txtmaxAnz" Me.txtmaxAnz.Size = New System.Drawing.Size(59, 20) Me.txtmaxAnz.TabIndex = 42 - Me.txtmaxAnz.Text = "200" + Me.txtmaxAnz.Text = "1000" Me.txtmaxAnz.TextAlign = System.Windows.Forms.HorizontalAlignment.Right ' 'Label3 @@ -323,6 +325,17 @@ Partial Class frmUSTVoffeneAntraege Me.lblKunde.Size = New System.Drawing.Size(0, 16) Me.lblKunde.TabIndex = 45 ' + 'btnAlle + ' + Me.btnAlle.BackColor = System.Drawing.Color.FloralWhite + Me.btnAlle.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.btnAlle.Location = New System.Drawing.Point(633, 3) + Me.btnAlle.Name = "btnAlle" + Me.btnAlle.Size = New System.Drawing.Size(120, 23) + Me.btnAlle.TabIndex = 5 + Me.btnAlle.Text = "ALLE" + Me.btnAlle.UseVisualStyleBackColor = False + ' 'frmUSTVoffeneAntraege ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) @@ -341,7 +354,7 @@ Partial Class frmUSTVoffeneAntraege Me.Controls.Add(Me.lbl) Me.Controls.Add(Me.FlowLayoutPanel) Me.Name = "frmUSTVoffeneAntraege" - Me.Text = "offene Anträge" + Me.Text = "nicht eingearbeitet USTV Anträge" Me.FlowLayoutPanel.ResumeLayout(False) CType(Me.MyDatagridview1, System.ComponentModel.ISupportInitialize).EndInit() Me.Panel4.ResumeLayout(False) @@ -372,4 +385,5 @@ Partial Class frmUSTVoffeneAntraege Friend WithEvents cbxAlleoffenen As CheckBox Friend WithEvents lblKunde As Label Friend WithEvents Button3 As Button + Friend WithEvents btnAlle As Button End Class diff --git a/SDL/USTV/frmUSTVoffeneAntraege.vb b/SDL/USTV/frmUSTVoffeneAntraege.vb index 706dad45..80725c0e 100644 --- a/SDL/USTV/frmUSTVoffeneAntraege.vb +++ b/SDL/USTV/frmUSTVoffeneAntraege.vb @@ -321,7 +321,7 @@ Public Class frmUSTVoffeneAntraege .Columns.Clear() 'Exit Sub 'MsgBox(.sql) - Dim sqlstring = "SELECT + Dim sqlstring = "SELECT " & top & " tblIDSTransactionsNew.KdNrVERAG, Adressen.[Name 1], tbl_IDS_Länder.OutletCountry as Land, diff --git a/SDL/USTV/usrCntlUSTV.vb b/SDL/USTV/usrCntlUSTV.vb index 644b4af0..281d7fe7 100644 --- a/SDL/USTV/usrCntlUSTV.vb +++ b/SDL/USTV/usrCntlUSTV.vb @@ -499,7 +499,7 @@ Public Class usrCntlUSTV If vbYes = MsgBox("Es werden " & item.Text & " Daten für " & cnt & " USTV-Anträge eingearbeitet. Möchten Sie fortfahren?", vbYesNoCancel) Then For Each r As DataGridViewRow In dgvUSTV.Rows If r.Cells("UStVAn_AntragEingereichtAm").Value Is DBNull.Value Then - frmMDM_USTVAntrag.loadUSTVFrom_VERAG(r.Cells("UStVAn_ID").Value, r.Cells("LandKz").Value, False) + If r.Cells("LandKz").Value = "AT" Then frmMDM_USTVAntrag.loadUSTVFrom_VERAG(r.Cells("UStVAn_ID").Value, r.Cells("LandKz").Value, False) End If Next init() diff --git a/SDL/UsrCntlEssensbestellungen.vb b/SDL/UsrCntlEssensbestellungen.vb index 89c08c3f..35bbf284 100644 --- a/SDL/UsrCntlEssensbestellungen.vb +++ b/SDL/UsrCntlEssensbestellungen.vb @@ -1,7 +1,5 @@  -Imports System.Data.SqlTypes Imports System.Windows.Documents -Imports io.konik.zugferd.unqualified Imports VERAG_PROG_ALLGEMEIN Public Class UsrCntlessensbestellungen diff --git a/SDL/kunden/usrcntlKundeBearbeitenFull.Designer.vb b/SDL/kunden/usrcntlKundeBearbeitenFull.Designer.vb index cd4d0997..d159d28d 100644 --- a/SDL/kunden/usrcntlKundeBearbeitenFull.Designer.vb +++ b/SDL/kunden/usrcntlKundeBearbeitenFull.Designer.vb @@ -45,22 +45,18 @@ Partial Class usrcntlKundeBearbeitenFull Me.tbcntrDetails = New System.Windows.Forms.TabControl() Me.tbAbfertigung = New System.Windows.Forms.TabPage() Me.cbxVerzolltBeiExport = New System.Windows.Forms.CheckBox() - Me.txtAbf_Planzahl = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.Label42 = New System.Windows.Forms.Label() Me.cboFremdspeditionExport = New System.Windows.Forms.ComboBox() Me.lblHinweisKdNr = New System.Windows.Forms.Label() Me.cboFremdspedition = New System.Windows.Forms.ComboBox() Me.cbxVerzolltBei = New System.Windows.Forms.CheckBox() Me.cbxBesonderheitenNEU = New System.Windows.Forms.CheckBox() - Me.UsrCntlKundenBesonderheiten1 = New SDL.usrCntlKundenBesonderheiten() Me.tbcntrAbf = New System.Windows.Forms.TabControl() Me.TabPage4 = New System.Windows.Forms.TabPage() Me.FlowLayoutPanel1 = New System.Windows.Forms.FlowLayoutPanel() - Me.UsrCntlKundenAvisoMailBenachrichtigung1 = New SDL.usrCntlKundenAvisoMailBenachrichtigung() Me.rtbLKWFreigabeSenden = New System.Windows.Forms.RichTextBox() Me.Label18 = New System.Windows.Forms.Label() Me.TabPage3 = New System.Windows.Forms.TabPage() - Me.txtAbfVerb_RechtsanwaltSeit = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.cboAbfVerb_Kreditlimit = New System.Windows.Forms.CheckBox() Me.rtbAbfVerb_Grund = New System.Windows.Forms.RichTextBox() Me.Label62 = New System.Windows.Forms.Label() @@ -68,17 +64,12 @@ Partial Class usrcntlKundeBearbeitenFull Me.Label63 = New System.Windows.Forms.Label() Me.Label64 = New System.Windows.Forms.Label() Me.cboAbfVerb_Abfertigungsverbot = New System.Windows.Forms.CheckBox() - Me.txtAbfVerb_AbfertigungsverbotSeit = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.tbAufschub = New System.Windows.Forms.TabPage() - Me.usrCntlAufschubkonten = New SDL.usrCntlAufschubkonten() Me.TabPage1 = New System.Windows.Forms.TabPage() Me.Label78 = New System.Windows.Forms.Label() Me.cbxAbf_ZollVM = New System.Windows.Forms.CheckBox() Me.Label38 = New System.Windows.Forms.Label() - Me.txtAbf_ZollVmVom = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.cbxAbf_Ausfuhr = New System.Windows.Forms.CheckBox() - Me.txtAbf_Euroeinführung = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtAbf_ErsteAbfertigung = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.cbxAbf_Fiskal = New System.Windows.Forms.CheckBox() Me.GroupBox7 = New System.Windows.Forms.GroupBox() Me.RadioButton7 = New System.Windows.Forms.RadioButton() @@ -95,13 +86,9 @@ Partial Class usrcntlKundeBearbeitenFull Me.rtbAbf_Besonderheiten = New System.Windows.Forms.RichTextBox() Me.Panel1 = New System.Windows.Forms.Panel() Me.tbFiskal = New System.Windows.Forms.TabPage() - Me.UsrCntlKundeFiskaldaten1 = New SDL.usrCntlKundeFiskaldaten() Me.tbVerrechnung = New System.Windows.Forms.TabPage() - Me.cbxKapitalWaehrung = New VERAG_PROG_ALLGEMEIN.MyComboBox() Me.Label103 = New System.Windows.Forms.Label() - Me.txtKapital = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.Label101 = New System.Windows.Forms.Label() - Me.txtAbwZZVL = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.cbxSndDatenAusSTB = New System.Windows.Forms.CheckBox() Me.Label95 = New System.Windows.Forms.Label() Me.cbxSammelrechnungBerichtLeistungsdetails = New System.Windows.Forms.CheckBox() @@ -129,33 +116,12 @@ Partial Class usrcntlKundeBearbeitenFull Me.Label49 = New System.Windows.Forms.Label() Me.Label48 = New System.Windows.Forms.Label() Me.Label39 = New System.Windows.Forms.Label() - Me.cboRechnungSprache = New VERAG_PROG_ALLGEMEIN.MyComboBox() - Me.txtDebKdNr = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtAbf_Zahlungsziel3 = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtAbf_Zahlungsziel2 = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtAbf_LastschriftBis = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtAbf_LastschriftVon = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtProvAuftraggeber = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.cboProvisionStaffel = New VERAG_PROG_ALLGEMEIN.MyComboBox() - Me.cboProvisionStaffelArt = New VERAG_PROG_ALLGEMEIN.MyComboBox() - Me.cboAbf_Waehrung = New VERAG_PROG_ALLGEMEIN.MyComboBox() - Me.cboAbf_Steuerschluessel = New VERAG_PROG_ALLGEMEIN.MyComboBox() - Me.cboAbf_Sammelrechnung = New VERAG_PROG_ALLGEMEIN.MyComboBox() - Me.txtAbf_BankspesenMindestbetrag = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtAbf_Bankspesen = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtAbf_Kreditaufwendungen = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtAbf_Vorlageprovision = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtAbf_Zahlungsziel = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.tbVersicherung = New System.Windows.Forms.TabPage() Me.cbxBlanko = New System.Windows.Forms.CheckBox() Me.Label105 = New System.Windows.Forms.Label() - Me.txtWechselErhaltenAm = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.Label106 = New System.Windows.Forms.Label() Me.Label107 = New System.Windows.Forms.Label() - Me.txtWechselGueltigBis = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtWechsel = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.Label104 = New System.Windows.Forms.Label() - Me.txtBankgarantieErhaltenAm = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.Label81 = New System.Windows.Forms.Label() Me.Label82 = New System.Windows.Forms.Label() Me.cbxInkassoUebergeben = New System.Windows.Forms.CheckBox() @@ -183,38 +149,15 @@ Partial Class usrcntlKundeBearbeitenFull Me.Label54 = New System.Windows.Forms.Label() Me.Label52 = New System.Windows.Forms.Label() Me.Label51 = New System.Windows.Forms.Label() - Me.txtInkasso_GemeldeterBetrag = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtInkassoUebergebenAm = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtVers_EHNr = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtAnerkVersFallAb = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtVersicherung_GemeldeterBetrag = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtVersUebergebenOPSaldo = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtVersicherungDeckungsquote = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtAnerkVersFallAm = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtVersicherungUebergebenAm = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtDeckungsstoppDatum = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtVers_BankgarantiebetragGueltigBis = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtVers_KreditlimitVon = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtVers_Saldo = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtVers_VersicherungssummeVon = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtVers_Bankgarantiebetrag = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtVers_Kreditlimit = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtVers_AntragssummeVon = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtVers_Versicherungssumme = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtVers_Antragssumme = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtVers_HermesRefNr = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.tbUmsatz = New System.Windows.Forms.TabPage() Me.Label65 = New System.Windows.Forms.Label() Me.dgvUmsatzbericht = New System.Windows.Forms.DataGridView() Me.tbOP = New System.Windows.Forms.TabPage() - Me.txtHoechstkredit = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.Label69 = New System.Windows.Forms.Label() Me.lblbon = New System.Windows.Forms.Label() Me.Label67 = New System.Windows.Forms.Label() Me.Label66 = New System.Windows.Forms.Label() Me.dgvOffenePosten = New System.Windows.Forms.DataGridView() - Me.txtBonitaetsDatum = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtBonitaet = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.tbBank = New System.Windows.Forms.TabPage() Me.Label21 = New System.Windows.Forms.Label() Me.GroupBox4 = New System.Windows.Forms.GroupBox() @@ -227,7 +170,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.Label22 = New System.Windows.Forms.Label() Me.txtBank_Blz = New System.Windows.Forms.TextBox() Me.tbUmsatzsteuer = New System.Windows.Forms.TabPage() - Me.txtUStIDGeprueftAm = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.txtUStID = New System.Windows.Forms.TextBox() Me.Button3 = New System.Windows.Forms.Button() Me.Label85 = New System.Windows.Forms.Label() @@ -240,17 +182,9 @@ Partial Class usrcntlKundeBearbeitenFull Me.Label89 = New System.Windows.Forms.Label() Me.Label87 = New System.Windows.Forms.Label() Me.Label86 = New System.Windows.Forms.Label() - Me.btnUStVAendSpeichern = New VERAG_PROG_ALLGEMEIN.FlatButton() - Me.txtUSt_GVAusgestelltAm = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtUSt_GVAngefordertAm = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.tbSonstiges = New System.Windows.Forms.TabPage() - Me.txtSumVerag = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.txtSonst_KdNrVerag = New System.Windows.Forms.TextBox() Me.Label110 = New System.Windows.Forms.Label() - Me.txtSumPLOSE = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtSumUTA = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtSumMSE = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtSumIDS = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.Label109 = New System.Windows.Forms.Label() Me.Label99 = New System.Windows.Forms.Label() Me.txtCreditsafe = New System.Windows.Forms.TextBox() @@ -275,8 +209,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.txtSonst_KdNrIDS = New System.Windows.Forms.TextBox() Me.Label70 = New System.Windows.Forms.Label() Me.Label71 = New System.Windows.Forms.Label() - Me.btnSonstAendSpeichern = New VERAG_PROG_ALLGEMEIN.FlatButton() - Me.cboSonst_Rechnungsdruck = New VERAG_PROG_ALLGEMEIN.MyComboBox() Me.tbSchnittstellen = New System.Windows.Forms.TabPage() Me.txtVERAG_Schnittstellen_ID = New System.Windows.Forms.TextBox() Me.Label91 = New System.Windows.Forms.Label() @@ -287,38 +219,28 @@ Partial Class usrcntlKundeBearbeitenFull Me.rtb_Zahlungsinfo = New System.Windows.Forms.RichTextBox() Me.tbBankverbindungen = New System.Windows.Forms.TabPage() Me.dgvBankverbindungen = New System.Windows.Forms.DataGridView() - Me.btnBankspeichern = New VERAG_PROG_ALLGEMEIN.FlatButton() Me.cbxAlleBVanzeigen = New System.Windows.Forms.CheckBox() Me.Label108 = New System.Windows.Forms.Label() Me.lblEORI = New System.Windows.Forms.Label() Me.Label84 = New System.Windows.Forms.Label() Me.GroupBox3 = New System.Windows.Forms.GroupBox() - Me.txtGruendungsDatum = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.Label33 = New System.Windows.Forms.Label() - Me.txtHandelsregisterNr = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.PictureBox5 = New System.Windows.Forms.PictureBox() Me.cbxUIDMehrfachverwendung = New System.Windows.Forms.CheckBox() Me.btnCreditsafe = New System.Windows.Forms.Button() Me.Button13 = New System.Windows.Forms.Button() Me.btnUIDPruef = New System.Windows.Forms.Button() - Me.txtEORINL = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.Label5 = New System.Windows.Forms.Label() - Me.txtEORI = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.txtFirmenname1 = New System.Windows.Forms.TextBox() - Me.cboUSt_UstIdNrLand = New VERAG_PROG_ALLGEMEIN.MyComboBox() Me.Label15 = New System.Windows.Forms.Label() Me.Label3 = New System.Windows.Forms.Label() - Me.txtUSt_UstIdNrGeprueftAm = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.txtKurzname = New System.Windows.Forms.TextBox() - Me.txtUSt_UstIdNr = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.txtFirmenname2 = New System.Windows.Forms.TextBox() Me.Label16 = New System.Windows.Forms.Label() - Me.txtUSt_Steuernummer = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.lblHandelregisterNr = New System.Windows.Forms.Label() Me.Label100 = New System.Windows.Forms.Label() Me.txtAdresseZusatz = New System.Windows.Forms.TextBox() Me.GroupBox1 = New System.Windows.Forms.GroupBox() - Me.cbxLandKz = New VERAG_PROG_ALLGEMEIN.MyComboBox() Me.Label14 = New System.Windows.Forms.Label() Me.txtPostfachOrt = New System.Windows.Forms.TextBox() Me.txtOrt = New System.Windows.Forms.TextBox() @@ -353,13 +275,10 @@ Partial Class usrcntlKundeBearbeitenFull Me.tbKontakt = New System.Windows.Forms.TabControl() Me.TabPage10 = New System.Windows.Forms.TabPage() Me.TabPage11 = New System.Windows.Forms.TabPage() - Me.ucKundenKontakte = New SDL.usrCntlKundenKontakte() Me.Label50 = New System.Windows.Forms.Label() Me.Label68 = New System.Windows.Forms.Label() Me.pnlNeukunde = New System.Windows.Forms.Panel() Me.Button2 = New System.Windows.Forms.Button() - Me.cboFiliale = New VERAG_PROG_ALLGEMEIN.MyComboBox() - Me.cboKundenkreis = New VERAG_PROG_ALLGEMEIN.MyComboBox() Me.Label77 = New System.Windows.Forms.Label() Me.lblKundennr = New System.Windows.Forms.Label() Me.Label79 = New System.Windows.Forms.Label() @@ -372,13 +291,95 @@ Partial Class usrcntlKundeBearbeitenFull Me.txtERROR = New System.Windows.Forms.TextBox() Me.btnDatevExport = New System.Windows.Forms.Button() Me.Label98 = New System.Windows.Forms.Label() - Me.cboFirma = New VERAG_PROG_ALLGEMEIN.MyComboBox() - Me.cboAuswahl = New VERAG_PROG_ALLGEMEIN.MyComboBox() - Me.DataGridViewTextBoxColumn2 = New System.Windows.Forms.DataGridViewTextBoxColumn() Me.cnsBankverbindungen = New System.Windows.Forms.ContextMenuStrip(Me.components) Me.ArchivierenToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.DokumentHinzufügenToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() Me.DokumentLöschenToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() + Me.cbxkeineMWSt = New System.Windows.Forms.CheckBox() + Me.cboFiliale = New VERAG_PROG_ALLGEMEIN.MyComboBox() + Me.cboKundenkreis = New VERAG_PROG_ALLGEMEIN.MyComboBox() + Me.cboFirma = New VERAG_PROG_ALLGEMEIN.MyComboBox() + Me.cboAuswahl = New VERAG_PROG_ALLGEMEIN.MyComboBox() + Me.txtAbf_Planzahl = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtAbfVerb_RechtsanwaltSeit = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtAbfVerb_AbfertigungsverbotSeit = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtAbf_ZollVmVom = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtAbf_Euroeinführung = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtAbf_ErsteAbfertigung = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.cbxKapitalWaehrung = New VERAG_PROG_ALLGEMEIN.MyComboBox() + Me.txtKapital = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtAbwZZVL = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.cboRechnungSprache = New VERAG_PROG_ALLGEMEIN.MyComboBox() + Me.txtDebKdNr = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtAbf_Zahlungsziel3 = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtAbf_Zahlungsziel2 = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtAbf_LastschriftBis = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtAbf_LastschriftVon = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtProvAuftraggeber = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.cboProvisionStaffel = New VERAG_PROG_ALLGEMEIN.MyComboBox() + Me.cboProvisionStaffelArt = New VERAG_PROG_ALLGEMEIN.MyComboBox() + Me.cboAbf_Waehrung = New VERAG_PROG_ALLGEMEIN.MyComboBox() + Me.cboAbf_Steuerschluessel = New VERAG_PROG_ALLGEMEIN.MyComboBox() + Me.cboAbf_Sammelrechnung = New VERAG_PROG_ALLGEMEIN.MyComboBox() + Me.txtAbf_BankspesenMindestbetrag = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtAbf_Bankspesen = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtAbf_Kreditaufwendungen = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtAbf_Vorlageprovision = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtAbf_Zahlungsziel = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtWechselErhaltenAm = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtWechselGueltigBis = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtWechsel = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtBankgarantieErhaltenAm = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtInkasso_GemeldeterBetrag = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtInkassoUebergebenAm = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtVers_EHNr = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtAnerkVersFallAb = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtVersicherung_GemeldeterBetrag = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtVersUebergebenOPSaldo = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtVersicherungDeckungsquote = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtAnerkVersFallAm = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtVersicherungUebergebenAm = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtDeckungsstoppDatum = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtVers_BankgarantiebetragGueltigBis = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtVers_KreditlimitVon = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtVers_Saldo = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtVers_VersicherungssummeVon = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtVers_Bankgarantiebetrag = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtVers_Kreditlimit = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtVers_AntragssummeVon = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtVers_Versicherungssumme = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtVers_Antragssumme = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtVers_HermesRefNr = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtHoechstkredit = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtBonitaetsDatum = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtBonitaet = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtUStIDGeprueftAm = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.btnUStVAendSpeichern = New VERAG_PROG_ALLGEMEIN.FlatButton() + Me.txtUSt_GVAusgestelltAm = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtUSt_GVAngefordertAm = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtSumVerag = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtSumPLOSE = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtSumUTA = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtSumMSE = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtSumIDS = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.btnSonstAendSpeichern = New VERAG_PROG_ALLGEMEIN.FlatButton() + Me.cboSonst_Rechnungsdruck = New VERAG_PROG_ALLGEMEIN.MyComboBox() + Me.btnBankspeichern = New VERAG_PROG_ALLGEMEIN.FlatButton() + Me.txtGruendungsDatum = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtHandelsregisterNr = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtEORINL = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtEORI = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.cboUSt_UstIdNrLand = New VERAG_PROG_ALLGEMEIN.MyComboBox() + Me.txtUSt_UstIdNrGeprueftAm = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtUSt_UstIdNr = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtUSt_Steuernummer = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.cbxLandKz = New VERAG_PROG_ALLGEMEIN.MyComboBox() + Me.DataGridViewTextBoxColumn2 = New System.Windows.Forms.DataGridViewTextBoxColumn() + Me.ucKundenKontakte = New SDL.usrCntlKundenKontakte() + Me.UsrCntlKundenBesonderheiten1 = New SDL.usrCntlKundenBesonderheiten() + Me.UsrCntlKundenAvisoMailBenachrichtigung1 = New SDL.usrCntlKundenAvisoMailBenachrichtigung() + Me.usrCntlAufschubkonten = New SDL.usrCntlAufschubkonten() + Me.UsrCntlKundeFiskaldaten1 = New SDL.usrCntlKundeFiskaldaten() Me.tbcntrDetails.SuspendLayout() Me.tbAbfertigung.SuspendLayout() Me.tbcntrAbf.SuspendLayout() @@ -478,29 +479,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.cbxVerzolltBeiExport.Text = "Export:" Me.cbxVerzolltBeiExport.UseVisualStyleBackColor = True ' - 'txtAbf_Planzahl - ' - Me.txtAbf_Planzahl._DateTimeOnly = False - Me.txtAbf_Planzahl._numbersOnly = False - Me.txtAbf_Planzahl._numbersOnlyKommastellen = "" - Me.txtAbf_Planzahl._numbersOnlyTrennzeichen = True - Me.txtAbf_Planzahl._Prozent = False - Me.txtAbf_Planzahl._ShortDateNew = False - Me.txtAbf_Planzahl._ShortDateOnly = False - Me.txtAbf_Planzahl._TimeOnly = False - Me.txtAbf_Planzahl._TimeOnly_Seconds = False - Me.txtAbf_Planzahl._value = Nothing - Me.txtAbf_Planzahl._Waehrung = False - Me.txtAbf_Planzahl._WaehrungZeichen = True - Me.txtAbf_Planzahl.ForeColor = System.Drawing.Color.Black - Me.txtAbf_Planzahl.Location = New System.Drawing.Point(526, 248) - Me.txtAbf_Planzahl.MaxLineLength = -1 - Me.txtAbf_Planzahl.MaxLines_Warning = "" - Me.txtAbf_Planzahl.MaxLines_Warning_Label = Nothing - Me.txtAbf_Planzahl.Name = "txtAbf_Planzahl" - Me.txtAbf_Planzahl.Size = New System.Drawing.Size(60, 20) - Me.txtAbf_Planzahl.TabIndex = 15 - ' 'Label42 ' Me.Label42.AutoSize = True @@ -560,16 +538,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.cbxBesonderheitenNEU.Text = "Besonderheiten NEU" Me.cbxBesonderheitenNEU.UseVisualStyleBackColor = True ' - 'UsrCntlKundenBesonderheiten1 - ' - Me.UsrCntlKundenBesonderheiten1.BackColor = System.Drawing.Color.White - Me.UsrCntlKundenBesonderheiten1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle - Me.UsrCntlKundenBesonderheiten1.Location = New System.Drawing.Point(6, 25) - Me.UsrCntlKundenBesonderheiten1.Name = "UsrCntlKundenBesonderheiten1" - Me.UsrCntlKundenBesonderheiten1.Size = New System.Drawing.Size(107, 52) - Me.UsrCntlKundenBesonderheiten1.TabIndex = 235 - Me.UsrCntlKundenBesonderheiten1.Visible = False - ' 'tbcntrAbf ' Me.tbcntrAbf.Controls.Add(Me.TabPage4) @@ -604,15 +572,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.FlowLayoutPanel1.Size = New System.Drawing.Size(200, 100) Me.FlowLayoutPanel1.TabIndex = 7 ' - 'UsrCntlKundenAvisoMailBenachrichtigung1 - ' - Me.UsrCntlKundenAvisoMailBenachrichtigung1.AutoScroll = True - Me.UsrCntlKundenAvisoMailBenachrichtigung1.BackColor = System.Drawing.Color.White - Me.UsrCntlKundenAvisoMailBenachrichtigung1.Location = New System.Drawing.Point(0, 6) - Me.UsrCntlKundenAvisoMailBenachrichtigung1.Name = "UsrCntlKundenAvisoMailBenachrichtigung1" - Me.UsrCntlKundenAvisoMailBenachrichtigung1.Size = New System.Drawing.Size(479, 172) - Me.UsrCntlKundenAvisoMailBenachrichtigung1.TabIndex = 6 - ' 'rtbLKWFreigabeSenden ' Me.rtbLKWFreigabeSenden.Location = New System.Drawing.Point(485, 33) @@ -649,32 +608,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.TabPage3.Text = "Abfertigungsverbot" Me.TabPage3.UseVisualStyleBackColor = True ' - 'txtAbfVerb_RechtsanwaltSeit - ' - Me.txtAbfVerb_RechtsanwaltSeit._DateTimeOnly = False - Me.txtAbfVerb_RechtsanwaltSeit._numbersOnly = False - Me.txtAbfVerb_RechtsanwaltSeit._numbersOnlyKommastellen = "" - Me.txtAbfVerb_RechtsanwaltSeit._numbersOnlyTrennzeichen = True - Me.txtAbfVerb_RechtsanwaltSeit._Prozent = False - Me.txtAbfVerb_RechtsanwaltSeit._ShortDateNew = True - Me.txtAbfVerb_RechtsanwaltSeit._ShortDateOnly = False - Me.txtAbfVerb_RechtsanwaltSeit._TimeOnly = False - Me.txtAbfVerb_RechtsanwaltSeit._TimeOnly_Seconds = False - Me.txtAbfVerb_RechtsanwaltSeit._value = "" - Me.txtAbfVerb_RechtsanwaltSeit._Waehrung = False - Me.txtAbfVerb_RechtsanwaltSeit._WaehrungZeichen = True - Me.txtAbfVerb_RechtsanwaltSeit.Enabled = False - Me.txtAbfVerb_RechtsanwaltSeit.ForeColor = System.Drawing.Color.Red - Me.txtAbfVerb_RechtsanwaltSeit.Location = New System.Drawing.Point(173, 33) - Me.txtAbfVerb_RechtsanwaltSeit.MaxLength = 10 - Me.txtAbfVerb_RechtsanwaltSeit.MaxLineLength = -1 - Me.txtAbfVerb_RechtsanwaltSeit.MaxLines_Warning = "" - Me.txtAbfVerb_RechtsanwaltSeit.MaxLines_Warning_Label = Nothing - Me.txtAbfVerb_RechtsanwaltSeit.Name = "txtAbfVerb_RechtsanwaltSeit" - Me.txtAbfVerb_RechtsanwaltSeit.Size = New System.Drawing.Size(60, 20) - Me.txtAbfVerb_RechtsanwaltSeit.TabIndex = 6 - Me.txtAbfVerb_RechtsanwaltSeit.TextAlign = System.Windows.Forms.HorizontalAlignment.Right - ' 'cboAbfVerb_Kreditlimit ' Me.cboAbfVerb_Kreditlimit.AutoSize = True @@ -744,32 +677,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.cboAbfVerb_Abfertigungsverbot.Text = "Abfertigungsverbot" Me.cboAbfVerb_Abfertigungsverbot.UseVisualStyleBackColor = True ' - 'txtAbfVerb_AbfertigungsverbotSeit - ' - Me.txtAbfVerb_AbfertigungsverbotSeit._DateTimeOnly = False - Me.txtAbfVerb_AbfertigungsverbotSeit._numbersOnly = False - Me.txtAbfVerb_AbfertigungsverbotSeit._numbersOnlyKommastellen = "" - Me.txtAbfVerb_AbfertigungsverbotSeit._numbersOnlyTrennzeichen = True - Me.txtAbfVerb_AbfertigungsverbotSeit._Prozent = False - Me.txtAbfVerb_AbfertigungsverbotSeit._ShortDateNew = True - Me.txtAbfVerb_AbfertigungsverbotSeit._ShortDateOnly = True - Me.txtAbfVerb_AbfertigungsverbotSeit._TimeOnly = False - Me.txtAbfVerb_AbfertigungsverbotSeit._TimeOnly_Seconds = False - Me.txtAbfVerb_AbfertigungsverbotSeit._value = "" - Me.txtAbfVerb_AbfertigungsverbotSeit._Waehrung = False - Me.txtAbfVerb_AbfertigungsverbotSeit._WaehrungZeichen = True - Me.txtAbfVerb_AbfertigungsverbotSeit.Enabled = False - Me.txtAbfVerb_AbfertigungsverbotSeit.ForeColor = System.Drawing.Color.Red - Me.txtAbfVerb_AbfertigungsverbotSeit.Location = New System.Drawing.Point(173, 7) - Me.txtAbfVerb_AbfertigungsverbotSeit.MaxLength = 10 - Me.txtAbfVerb_AbfertigungsverbotSeit.MaxLineLength = -1 - Me.txtAbfVerb_AbfertigungsverbotSeit.MaxLines_Warning = "" - Me.txtAbfVerb_AbfertigungsverbotSeit.MaxLines_Warning_Label = Nothing - Me.txtAbfVerb_AbfertigungsverbotSeit.Name = "txtAbfVerb_AbfertigungsverbotSeit" - Me.txtAbfVerb_AbfertigungsverbotSeit.Size = New System.Drawing.Size(60, 20) - Me.txtAbfVerb_AbfertigungsverbotSeit.TabIndex = 2 - Me.txtAbfVerb_AbfertigungsverbotSeit.TextAlign = System.Windows.Forms.HorizontalAlignment.Right - ' 'tbAufschub ' Me.tbAufschub.Controls.Add(Me.usrCntlAufschubkonten) @@ -781,14 +688,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.tbAufschub.Text = "Aufschubkonten" Me.tbAufschub.UseVisualStyleBackColor = True ' - 'usrCntlAufschubkonten - ' - Me.usrCntlAufschubkonten.Dock = System.Windows.Forms.DockStyle.Fill - Me.usrCntlAufschubkonten.Location = New System.Drawing.Point(3, 3) - Me.usrCntlAufschubkonten.Name = "usrCntlAufschubkonten" - Me.usrCntlAufschubkonten.Size = New System.Drawing.Size(652, 172) - Me.usrCntlAufschubkonten.TabIndex = 0 - ' 'TabPage1 ' Me.TabPage1.Controls.Add(Me.Label78) @@ -833,31 +732,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.Label38.TabIndex = 2 Me.Label38.Text = "vom:" ' - 'txtAbf_ZollVmVom - ' - Me.txtAbf_ZollVmVom._DateTimeOnly = False - Me.txtAbf_ZollVmVom._numbersOnly = False - Me.txtAbf_ZollVmVom._numbersOnlyKommastellen = "" - Me.txtAbf_ZollVmVom._numbersOnlyTrennzeichen = True - Me.txtAbf_ZollVmVom._Prozent = False - Me.txtAbf_ZollVmVom._ShortDateNew = True - Me.txtAbf_ZollVmVom._ShortDateOnly = False - Me.txtAbf_ZollVmVom._TimeOnly = False - Me.txtAbf_ZollVmVom._TimeOnly_Seconds = False - Me.txtAbf_ZollVmVom._value = "" - Me.txtAbf_ZollVmVom._Waehrung = False - Me.txtAbf_ZollVmVom._WaehrungZeichen = True - Me.txtAbf_ZollVmVom.Enabled = False - Me.txtAbf_ZollVmVom.ForeColor = System.Drawing.Color.Red - Me.txtAbf_ZollVmVom.Location = New System.Drawing.Point(152, 44) - Me.txtAbf_ZollVmVom.MaxLength = 10 - Me.txtAbf_ZollVmVom.MaxLineLength = -1 - Me.txtAbf_ZollVmVom.MaxLines_Warning = "" - Me.txtAbf_ZollVmVom.MaxLines_Warning_Label = Nothing - Me.txtAbf_ZollVmVom.Name = "txtAbf_ZollVmVom" - Me.txtAbf_ZollVmVom.Size = New System.Drawing.Size(60, 20) - Me.txtAbf_ZollVmVom.TabIndex = 3 - ' 'cbxAbf_Ausfuhr ' Me.cbxAbf_Ausfuhr.AutoSize = True @@ -869,56 +743,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.cbxAbf_Ausfuhr.Text = "Ausfuhr" Me.cbxAbf_Ausfuhr.UseVisualStyleBackColor = True ' - 'txtAbf_Euroeinführung - ' - Me.txtAbf_Euroeinführung._DateTimeOnly = False - Me.txtAbf_Euroeinführung._numbersOnly = False - Me.txtAbf_Euroeinführung._numbersOnlyKommastellen = "" - Me.txtAbf_Euroeinführung._numbersOnlyTrennzeichen = True - Me.txtAbf_Euroeinführung._Prozent = False - Me.txtAbf_Euroeinführung._ShortDateNew = True - Me.txtAbf_Euroeinführung._ShortDateOnly = False - Me.txtAbf_Euroeinführung._TimeOnly = False - Me.txtAbf_Euroeinführung._TimeOnly_Seconds = False - Me.txtAbf_Euroeinführung._value = "" - Me.txtAbf_Euroeinführung._Waehrung = False - Me.txtAbf_Euroeinführung._WaehrungZeichen = True - Me.txtAbf_Euroeinführung.ForeColor = System.Drawing.Color.Red - Me.txtAbf_Euroeinführung.Location = New System.Drawing.Point(375, 165) - Me.txtAbf_Euroeinführung.MaxLength = 10 - Me.txtAbf_Euroeinführung.MaxLineLength = -1 - Me.txtAbf_Euroeinführung.MaxLines_Warning = "" - Me.txtAbf_Euroeinführung.MaxLines_Warning_Label = Nothing - Me.txtAbf_Euroeinführung.Name = "txtAbf_Euroeinführung" - Me.txtAbf_Euroeinführung.Size = New System.Drawing.Size(60, 20) - Me.txtAbf_Euroeinführung.TabIndex = 4 - Me.txtAbf_Euroeinführung.Visible = False - ' - 'txtAbf_ErsteAbfertigung - ' - Me.txtAbf_ErsteAbfertigung._DateTimeOnly = False - Me.txtAbf_ErsteAbfertigung._numbersOnly = False - Me.txtAbf_ErsteAbfertigung._numbersOnlyKommastellen = "" - Me.txtAbf_ErsteAbfertigung._numbersOnlyTrennzeichen = True - Me.txtAbf_ErsteAbfertigung._Prozent = False - Me.txtAbf_ErsteAbfertigung._ShortDateNew = True - Me.txtAbf_ErsteAbfertigung._ShortDateOnly = False - Me.txtAbf_ErsteAbfertigung._TimeOnly = False - Me.txtAbf_ErsteAbfertigung._TimeOnly_Seconds = False - Me.txtAbf_ErsteAbfertigung._value = "" - Me.txtAbf_ErsteAbfertigung._Waehrung = False - Me.txtAbf_ErsteAbfertigung._WaehrungZeichen = True - Me.txtAbf_ErsteAbfertigung.ForeColor = System.Drawing.Color.Red - Me.txtAbf_ErsteAbfertigung.Location = New System.Drawing.Point(216, 162) - Me.txtAbf_ErsteAbfertigung.MaxLength = 10 - Me.txtAbf_ErsteAbfertigung.MaxLineLength = -1 - Me.txtAbf_ErsteAbfertigung.MaxLines_Warning = "" - Me.txtAbf_ErsteAbfertigung.MaxLines_Warning_Label = Nothing - Me.txtAbf_ErsteAbfertigung.Name = "txtAbf_ErsteAbfertigung" - Me.txtAbf_ErsteAbfertigung.Size = New System.Drawing.Size(60, 20) - Me.txtAbf_ErsteAbfertigung.TabIndex = 13 - Me.txtAbf_ErsteAbfertigung.Visible = False - ' 'cbxAbf_Fiskal ' Me.cbxAbf_Fiskal.AutoSize = True @@ -1094,22 +918,11 @@ Partial Class usrcntlKundeBearbeitenFull Me.tbFiskal.Text = "Fiskal" Me.tbFiskal.UseVisualStyleBackColor = True ' - 'UsrCntlKundeFiskaldaten1 - ' - Me.UsrCntlKundeFiskaldaten1.BackColor = System.Drawing.Color.White - Me.UsrCntlKundeFiskaldaten1.Dock = System.Windows.Forms.DockStyle.Fill - Me.UsrCntlKundeFiskaldaten1.Location = New System.Drawing.Point(0, 0) - Me.UsrCntlKundeFiskaldaten1.Name = "UsrCntlKundeFiskaldaten1" - Me.UsrCntlKundeFiskaldaten1.Size = New System.Drawing.Size(672, 495) - Me.UsrCntlKundeFiskaldaten1.TabIndex = 0 - ' 'tbVerrechnung ' Me.tbVerrechnung.Controls.Add(Me.cbxKapitalWaehrung) Me.tbVerrechnung.Controls.Add(Me.Label103) - Me.tbVerrechnung.Controls.Add(Me.txtKapital) Me.tbVerrechnung.Controls.Add(Me.Label101) - Me.tbVerrechnung.Controls.Add(Me.txtAbwZZVL) Me.tbVerrechnung.Controls.Add(Me.cbxSndDatenAusSTB) Me.tbVerrechnung.Controls.Add(Me.Label95) Me.tbVerrechnung.Controls.Add(Me.cbxSammelrechnungBerichtLeistungsdetails) @@ -1137,6 +950,8 @@ Partial Class usrcntlKundeBearbeitenFull Me.tbVerrechnung.Controls.Add(Me.Label49) Me.tbVerrechnung.Controls.Add(Me.Label48) Me.tbVerrechnung.Controls.Add(Me.Label39) + Me.tbVerrechnung.Controls.Add(Me.txtKapital) + Me.tbVerrechnung.Controls.Add(Me.txtAbwZZVL) Me.tbVerrechnung.Controls.Add(Me.cboRechnungSprache) Me.tbVerrechnung.Controls.Add(Me.txtDebKdNr) Me.tbVerrechnung.Controls.Add(Me.txtAbf_Zahlungsziel3) @@ -1161,22 +976,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.tbVerrechnung.Text = "Verrechnung" Me.tbVerrechnung.UseVisualStyleBackColor = True ' - 'cbxKapitalWaehrung - ' - Me.cbxKapitalWaehrung._allowedValuesFreiText = Nothing - Me.cbxKapitalWaehrung._allowFreiText = False - Me.cbxKapitalWaehrung._value = "" - Me.cbxKapitalWaehrung.BackColor = System.Drawing.Color.FromArgb(CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer)) - Me.cbxKapitalWaehrung.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.cbxKapitalWaehrung.DropDownWidth = 200 - Me.cbxKapitalWaehrung.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.cbxKapitalWaehrung.ForeColor = System.Drawing.Color.Black - Me.cbxKapitalWaehrung.FormattingEnabled = True - Me.cbxKapitalWaehrung.Location = New System.Drawing.Point(191, 293) - Me.cbxKapitalWaehrung.Name = "cbxKapitalWaehrung" - Me.cbxKapitalWaehrung.Size = New System.Drawing.Size(47, 21) - Me.cbxKapitalWaehrung.TabIndex = 45 - ' 'Label103 ' Me.Label103.AutoSize = True @@ -1186,31 +985,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.Label103.TabIndex = 43 Me.Label103.Text = "Kapital:" ' - 'txtKapital - ' - Me.txtKapital._DateTimeOnly = False - Me.txtKapital._numbersOnly = True - Me.txtKapital._numbersOnlyKommastellen = "" - Me.txtKapital._numbersOnlyTrennzeichen = False - Me.txtKapital._Prozent = False - Me.txtKapital._ShortDateNew = False - Me.txtKapital._ShortDateOnly = False - Me.txtKapital._TimeOnly = False - Me.txtKapital._TimeOnly_Seconds = False - Me.txtKapital._value = "" - Me.txtKapital._Waehrung = True - Me.txtKapital._WaehrungZeichen = False - Me.txtKapital.ForeColor = System.Drawing.Color.Red - Me.txtKapital.Location = New System.Drawing.Point(76, 293) - Me.txtKapital.MaxLength = 10 - Me.txtKapital.MaxLineLength = -1 - Me.txtKapital.MaxLines_Warning = "" - Me.txtKapital.MaxLines_Warning_Label = Nothing - Me.txtKapital.Name = "txtKapital" - Me.txtKapital.Size = New System.Drawing.Size(109, 20) - Me.txtKapital.TabIndex = 44 - Me.txtKapital.TextAlign = System.Windows.Forms.HorizontalAlignment.Right - ' 'Label101 ' Me.Label101.AutoSize = True @@ -1220,31 +994,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.Label101.TabIndex = 42 Me.Label101.Text = "abw. ZZ:" ' - 'txtAbwZZVL - ' - Me.txtAbwZZVL._DateTimeOnly = False - Me.txtAbwZZVL._numbersOnly = True - Me.txtAbwZZVL._numbersOnlyKommastellen = "" - Me.txtAbwZZVL._numbersOnlyTrennzeichen = True - Me.txtAbwZZVL._Prozent = False - Me.txtAbwZZVL._ShortDateNew = False - Me.txtAbwZZVL._ShortDateOnly = False - Me.txtAbwZZVL._TimeOnly = False - Me.txtAbwZZVL._TimeOnly_Seconds = False - Me.txtAbwZZVL._value = "" - Me.txtAbwZZVL._Waehrung = False - Me.txtAbwZZVL._WaehrungZeichen = True - Me.txtAbwZZVL.ForeColor = System.Drawing.Color.Red - Me.txtAbwZZVL.Location = New System.Drawing.Point(191, 66) - Me.txtAbwZZVL.MaxLength = 10 - Me.txtAbwZZVL.MaxLineLength = -1 - Me.txtAbwZZVL.MaxLines_Warning = "" - Me.txtAbwZZVL.MaxLines_Warning_Label = Nothing - Me.txtAbwZZVL.Name = "txtAbwZZVL" - Me.txtAbwZZVL.Size = New System.Drawing.Size(60, 20) - Me.txtAbwZZVL.TabIndex = 41 - Me.txtAbwZZVL.TextAlign = System.Windows.Forms.HorizontalAlignment.Right - ' 'cbxSndDatenAusSTB ' Me.cbxSndDatenAusSTB.AutoSize = True @@ -1518,6 +1267,2377 @@ Partial Class usrcntlKundeBearbeitenFull Me.Label39.TabIndex = 3 Me.Label39.Text = "Sammelrechnung:" ' + 'tbVersicherung + ' + Me.tbVersicherung.Controls.Add(Me.cbxBlanko) + Me.tbVersicherung.Controls.Add(Me.Label105) + Me.tbVersicherung.Controls.Add(Me.Label106) + Me.tbVersicherung.Controls.Add(Me.Label107) + Me.tbVersicherung.Controls.Add(Me.Label104) + Me.tbVersicherung.Controls.Add(Me.Label81) + Me.tbVersicherung.Controls.Add(Me.Label82) + Me.tbVersicherung.Controls.Add(Me.cbxInkassoUebergeben) + Me.tbVersicherung.Controls.Add(Me.Label1) + Me.tbVersicherung.Controls.Add(Me.Label35) + Me.tbVersicherung.Controls.Add(Me.Label27) + Me.tbVersicherung.Controls.Add(Me.Label24) + Me.tbVersicherung.Controls.Add(Me.cbxNichtVersicherbar) + Me.tbVersicherung.Controls.Add(Me.Label17) + Me.tbVersicherung.Controls.Add(Me.Label8) + Me.tbVersicherung.Controls.Add(Me.cbxAnerkVersFall) + Me.tbVersicherung.Controls.Add(Me.Label2) + Me.tbVersicherung.Controls.Add(Me.cbxVersicherungUebergeben) + Me.tbVersicherung.Controls.Add(Me.Label6) + Me.tbVersicherung.Controls.Add(Me.cbxDeckungsstopp) + Me.tbVersicherung.Controls.Add(Me.Label61) + Me.tbVersicherung.Controls.Add(Me.txtVers_Information) + Me.tbVersicherung.Controls.Add(Me.Label59) + Me.tbVersicherung.Controls.Add(Me.Label57) + Me.tbVersicherung.Controls.Add(Me.Label55) + Me.tbVersicherung.Controls.Add(Me.Label60) + Me.tbVersicherung.Controls.Add(Me.Label58) + Me.tbVersicherung.Controls.Add(Me.Label53) + Me.tbVersicherung.Controls.Add(Me.Label56) + Me.tbVersicherung.Controls.Add(Me.Label54) + Me.tbVersicherung.Controls.Add(Me.Label52) + Me.tbVersicherung.Controls.Add(Me.Label51) + Me.tbVersicherung.Controls.Add(Me.txtWechselErhaltenAm) + Me.tbVersicherung.Controls.Add(Me.txtWechselGueltigBis) + Me.tbVersicherung.Controls.Add(Me.txtWechsel) + Me.tbVersicherung.Controls.Add(Me.txtBankgarantieErhaltenAm) + Me.tbVersicherung.Controls.Add(Me.txtInkasso_GemeldeterBetrag) + Me.tbVersicherung.Controls.Add(Me.txtInkassoUebergebenAm) + Me.tbVersicherung.Controls.Add(Me.txtVers_EHNr) + Me.tbVersicherung.Controls.Add(Me.txtAnerkVersFallAb) + Me.tbVersicherung.Controls.Add(Me.txtVersicherung_GemeldeterBetrag) + Me.tbVersicherung.Controls.Add(Me.txtVersUebergebenOPSaldo) + Me.tbVersicherung.Controls.Add(Me.txtVersicherungDeckungsquote) + Me.tbVersicherung.Controls.Add(Me.txtAnerkVersFallAm) + Me.tbVersicherung.Controls.Add(Me.txtVersicherungUebergebenAm) + Me.tbVersicherung.Controls.Add(Me.txtDeckungsstoppDatum) + Me.tbVersicherung.Controls.Add(Me.txtVers_BankgarantiebetragGueltigBis) + Me.tbVersicherung.Controls.Add(Me.txtVers_KreditlimitVon) + Me.tbVersicherung.Controls.Add(Me.txtVers_Saldo) + Me.tbVersicherung.Controls.Add(Me.txtVers_VersicherungssummeVon) + Me.tbVersicherung.Controls.Add(Me.txtVers_Bankgarantiebetrag) + Me.tbVersicherung.Controls.Add(Me.txtVers_Kreditlimit) + Me.tbVersicherung.Controls.Add(Me.txtVers_AntragssummeVon) + Me.tbVersicherung.Controls.Add(Me.txtVers_Versicherungssumme) + Me.tbVersicherung.Controls.Add(Me.txtVers_Antragssumme) + Me.tbVersicherung.Controls.Add(Me.txtVers_HermesRefNr) + Me.tbVersicherung.Location = New System.Drawing.Point(4, 22) + Me.tbVersicherung.Name = "tbVersicherung" + Me.tbVersicherung.Padding = New System.Windows.Forms.Padding(3) + Me.tbVersicherung.Size = New System.Drawing.Size(672, 495) + Me.tbVersicherung.TabIndex = 1 + Me.tbVersicherung.Text = "Versicherung" + Me.tbVersicherung.UseVisualStyleBackColor = True + ' + 'cbxBlanko + ' + Me.cbxBlanko.AutoSize = True + Me.cbxBlanko.Location = New System.Drawing.Point(91, 280) + Me.cbxBlanko.Name = "cbxBlanko" + Me.cbxBlanko.Size = New System.Drawing.Size(59, 17) + Me.cbxBlanko.TabIndex = 55 + Me.cbxBlanko.Text = "Blanko" + Me.cbxBlanko.UseVisualStyleBackColor = True + ' + 'Label105 + ' + Me.Label105.AutoSize = True + Me.Label105.Location = New System.Drawing.Point(419, 280) + Me.Label105.Name = "Label105" + Me.Label105.Size = New System.Drawing.Size(65, 13) + Me.Label105.TabIndex = 53 + Me.Label105.Text = "erhalten am:" + ' + 'Label106 + ' + Me.Label106.AutoSize = True + Me.Label106.Location = New System.Drawing.Point(281, 281) + Me.Label106.Name = "Label106" + Me.Label106.Size = New System.Drawing.Size(51, 13) + Me.Label106.TabIndex = 51 + Me.Label106.Text = "gültig bis:" + ' + 'Label107 + ' + Me.Label107.AutoSize = True + Me.Label107.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label107.Location = New System.Drawing.Point(4, 281) + Me.Label107.Name = "Label107" + Me.Label107.Size = New System.Drawing.Size(52, 13) + Me.Label107.TabIndex = 49 + Me.Label107.Text = "Wechsel:" + ' + 'Label104 + ' + Me.Label104.AutoSize = True + Me.Label104.Location = New System.Drawing.Point(419, 255) + Me.Label104.Name = "Label104" + Me.Label104.Size = New System.Drawing.Size(65, 13) + Me.Label104.TabIndex = 47 + Me.Label104.Text = "erhalten am:" + ' + 'Label81 + ' + Me.Label81.AutoSize = True + Me.Label81.Location = New System.Drawing.Point(419, 168) + Me.Label81.Name = "Label81" + Me.Label81.Size = New System.Drawing.Size(98, 13) + Me.Label81.TabIndex = 45 + Me.Label81.Text = "Gemeldeter Betrag:" + ' + 'Label82 + ' + Me.Label82.AutoSize = True + Me.Label82.Location = New System.Drawing.Point(311, 168) + Me.Label82.Name = "Label82" + Me.Label82.Size = New System.Drawing.Size(24, 13) + Me.Label82.TabIndex = 43 + Me.Label82.Text = "am:" + ' + 'cbxInkassoUebergeben + ' + Me.cbxInkassoUebergeben.AutoSize = True + Me.cbxInkassoUebergeben.Location = New System.Drawing.Point(159, 167) + Me.cbxInkassoUebergeben.Name = "cbxInkassoUebergeben" + Me.cbxInkassoUebergeben.Size = New System.Drawing.Size(156, 17) + Me.cbxInkassoUebergeben.TabIndex = 42 + Me.cbxInkassoUebergeben.Text = "Acredia Inkasso übergeben" + Me.cbxInkassoUebergeben.UseVisualStyleBackColor = True + ' + 'Label1 + ' + Me.Label1.AutoSize = True + Me.Label1.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label1.Location = New System.Drawing.Point(353, 9) + Me.Label1.Name = "Label1" + Me.Label1.Size = New System.Drawing.Size(67, 13) + Me.Label1.TabIndex = 40 + Me.Label1.Text = "EH-Nummer:" + ' + 'Label35 + ' + Me.Label35.AutoSize = True + Me.Label35.Location = New System.Drawing.Point(419, 142) + Me.Label35.Name = "Label35" + Me.Label35.Size = New System.Drawing.Size(22, 13) + Me.Label35.TabIndex = 22 + Me.Label35.Text = "ab:" + ' + 'Label27 + ' + Me.Label27.AutoSize = True + Me.Label27.Location = New System.Drawing.Point(419, 116) + Me.Label27.Name = "Label27" + Me.Label27.Size = New System.Drawing.Size(98, 13) + Me.Label27.TabIndex = 17 + Me.Label27.Text = "Gemeldeter Betrag:" + ' + 'Label24 + ' + Me.Label24.AutoSize = True + Me.Label24.Location = New System.Drawing.Point(419, 89) + Me.Label24.Name = "Label24" + Me.Label24.Size = New System.Drawing.Size(55, 13) + Me.Label24.TabIndex = 12 + Me.Label24.Text = "OP-Saldo:" + Me.Label24.Visible = False + ' + 'cbxNichtVersicherbar + ' + Me.cbxNichtVersicherbar.AutoSize = True + Me.cbxNichtVersicherbar.Location = New System.Drawing.Point(159, 39) + Me.cbxNichtVersicherbar.Name = "cbxNichtVersicherbar" + Me.cbxNichtVersicherbar.Size = New System.Drawing.Size(142, 17) + Me.cbxNichtVersicherbar.TabIndex = 2 + Me.cbxNichtVersicherbar.Text = "nicht (mehr) versicherbar" + Me.cbxNichtVersicherbar.UseVisualStyleBackColor = True + ' + 'Label17 + ' + Me.Label17.AutoSize = True + Me.Label17.Location = New System.Drawing.Point(419, 65) + Me.Label17.Name = "Label17" + Me.Label17.Size = New System.Drawing.Size(86, 13) + Me.Label17.TabIndex = 7 + Me.Label17.Text = "Deckungsquote:" + ' + 'Label8 + ' + Me.Label8.AutoSize = True + Me.Label8.Location = New System.Drawing.Point(311, 142) + Me.Label8.Name = "Label8" + Me.Label8.Size = New System.Drawing.Size(24, 13) + Me.Label8.TabIndex = 20 + Me.Label8.Text = "am:" + ' + 'cbxAnerkVersFall + ' + Me.cbxAnerkVersFall.AutoSize = True + Me.cbxAnerkVersFall.Location = New System.Drawing.Point(159, 141) + Me.cbxAnerkVersFall.Name = "cbxAnerkVersFall" + Me.cbxAnerkVersFall.Size = New System.Drawing.Size(130, 17) + Me.cbxAnerkVersFall.TabIndex = 19 + Me.cbxAnerkVersFall.Text = "Anerkennung Vers.fall" + Me.cbxAnerkVersFall.UseVisualStyleBackColor = True + ' + 'Label2 + ' + Me.Label2.AutoSize = True + Me.Label2.Location = New System.Drawing.Point(311, 116) + Me.Label2.Name = "Label2" + Me.Label2.Size = New System.Drawing.Size(24, 13) + Me.Label2.TabIndex = 15 + Me.Label2.Text = "am:" + ' + 'cbxVersicherungUebergeben + ' + Me.cbxVersicherungUebergeben.AutoSize = True + Me.cbxVersicherungUebergeben.Location = New System.Drawing.Point(159, 115) + Me.cbxVersicherungUebergeben.Name = "cbxVersicherungUebergeben" + Me.cbxVersicherungUebergeben.Size = New System.Drawing.Size(142, 17) + Me.cbxVersicherungUebergeben.TabIndex = 14 + Me.cbxVersicherungUebergeben.Text = "Versicherung übergeben" + Me.cbxVersicherungUebergeben.UseVisualStyleBackColor = True + ' + 'Label6 + ' + Me.Label6.AutoSize = True + Me.Label6.Location = New System.Drawing.Point(305, 89) + Me.Label6.Name = "Label6" + Me.Label6.Size = New System.Drawing.Size(30, 13) + Me.Label6.TabIndex = 10 + Me.Label6.Text = "vom:" + ' + 'cbxDeckungsstopp + ' + Me.cbxDeckungsstopp.AutoSize = True + Me.cbxDeckungsstopp.Location = New System.Drawing.Point(159, 88) + Me.cbxDeckungsstopp.Name = "cbxDeckungsstopp" + Me.cbxDeckungsstopp.Size = New System.Drawing.Size(101, 17) + Me.cbxDeckungsstopp.TabIndex = 9 + Me.cbxDeckungsstopp.Text = "Deckungsstopp" + Me.cbxDeckungsstopp.UseVisualStyleBackColor = True + ' + 'Label61 + ' + Me.Label61.AutoSize = True + Me.Label61.Location = New System.Drawing.Point(3, 330) + Me.Label61.Name = "Label61" + Me.Label61.Size = New System.Drawing.Size(62, 13) + Me.Label61.TabIndex = 38 + Me.Label61.Text = "Information:" + ' + 'txtVers_Information + ' + Me.txtVers_Information.Location = New System.Drawing.Point(6, 346) + Me.txtVers_Information.Name = "txtVers_Information" + Me.txtVers_Information.Size = New System.Drawing.Size(660, 93) + Me.txtVers_Information.TabIndex = 39 + Me.txtVers_Information.Text = "" + ' + 'Label59 + ' + Me.Label59.AutoSize = True + Me.Label59.Location = New System.Drawing.Point(281, 256) + Me.Label59.Name = "Label59" + Me.Label59.Size = New System.Drawing.Size(51, 13) + Me.Label59.TabIndex = 34 + Me.Label59.Text = "gültig bis:" + ' + 'Label57 + ' + Me.Label57.AutoSize = True + Me.Label57.Location = New System.Drawing.Point(302, 230) + Me.Label57.Name = "Label57" + Me.Label57.Size = New System.Drawing.Size(30, 13) + Me.Label57.TabIndex = 30 + Me.Label57.Text = "vom:" + ' + 'Label55 + ' + Me.Label55.AutoSize = True + Me.Label55.Location = New System.Drawing.Point(305, 65) + Me.Label55.Name = "Label55" + Me.Label55.Size = New System.Drawing.Size(30, 13) + Me.Label55.TabIndex = 5 + Me.Label55.Text = "vom:" + ' + 'Label60 + ' + Me.Label60.AutoSize = True + Me.Label60.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label60.Location = New System.Drawing.Point(3, 309) + Me.Label60.Name = "Label60" + Me.Label60.Size = New System.Drawing.Size(73, 13) + Me.Label60.TabIndex = 36 + Me.Label60.Text = "Saldo in Euro:" + ' + 'Label58 + ' + Me.Label58.AutoSize = True + Me.Label58.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label58.Location = New System.Drawing.Point(4, 256) + Me.Label58.Name = "Label58" + Me.Label58.Size = New System.Drawing.Size(103, 13) + Me.Label58.TabIndex = 32 + Me.Label58.Text = "Bankgarantiebetrag:" + ' + 'Label53 + ' + Me.Label53.AutoSize = True + Me.Label53.Location = New System.Drawing.Point(302, 204) + Me.Label53.Name = "Label53" + Me.Label53.Size = New System.Drawing.Size(30, 13) + Me.Label53.TabIndex = 26 + Me.Label53.Text = "vom:" + ' + 'Label56 + ' + Me.Label56.AutoSize = True + Me.Label56.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label56.Location = New System.Drawing.Point(4, 230) + Me.Label56.Name = "Label56" + Me.Label56.Size = New System.Drawing.Size(87, 13) + Me.Label56.TabIndex = 28 + Me.Label56.Text = "Keditlimit in Euro:" + ' + 'Label54 + ' + Me.Label54.AutoSize = True + Me.Label54.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label54.Location = New System.Drawing.Point(7, 65) + Me.Label54.Name = "Label54" + Me.Label54.Size = New System.Drawing.Size(110, 13) + Me.Label54.TabIndex = 3 + Me.Label54.Text = "Versicherungssumme:" + ' + 'Label52 + ' + Me.Label52.AutoSize = True + Me.Label52.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label52.Location = New System.Drawing.Point(4, 204) + Me.Label52.Name = "Label52" + Me.Label52.Size = New System.Drawing.Size(79, 13) + Me.Label52.TabIndex = 24 + Me.Label52.Text = "Antragssumme:" + ' + 'Label51 + ' + Me.Label51.AutoSize = True + Me.Label51.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label51.Location = New System.Drawing.Point(7, 9) + Me.Label51.Name = "Label51" + Me.Label51.Size = New System.Drawing.Size(133, 26) + Me.Label51.TabIndex = 0 + Me.Label51.Text = "Polizzennummer ACREDIA" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & ":" + ' + 'tbUmsatz + ' + Me.tbUmsatz.Controls.Add(Me.Label65) + Me.tbUmsatz.Controls.Add(Me.dgvUmsatzbericht) + Me.tbUmsatz.Location = New System.Drawing.Point(4, 22) + Me.tbUmsatz.Name = "tbUmsatz" + Me.tbUmsatz.Padding = New System.Windows.Forms.Padding(3) + Me.tbUmsatz.Size = New System.Drawing.Size(672, 495) + Me.tbUmsatz.TabIndex = 3 + Me.tbUmsatz.Text = "Umsatz" + Me.tbUmsatz.UseVisualStyleBackColor = True + ' + 'Label65 + ' + Me.Label65.AutoSize = True + Me.Label65.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label65.Location = New System.Drawing.Point(6, 9) + Me.Label65.Name = "Label65" + Me.Label65.Size = New System.Drawing.Size(77, 13) + Me.Label65.TabIndex = 0 + Me.Label65.Text = "Umsatzbericht:" + ' + 'dgvUmsatzbericht + ' + Me.dgvUmsatzbericht.AllowUserToAddRows = False + Me.dgvUmsatzbericht.AllowUserToDeleteRows = False + Me.dgvUmsatzbericht.AllowUserToOrderColumns = True + Me.dgvUmsatzbericht.AllowUserToResizeRows = False + DataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(CType(CType(240, Byte), Integer), CType(CType(245, Byte), Integer), CType(CType(255, Byte), Integer)) + Me.dgvUmsatzbericht.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle1 + Me.dgvUmsatzbericht.BackgroundColor = System.Drawing.Color.White + Me.dgvUmsatzbericht.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize + Me.dgvUmsatzbericht.Location = New System.Drawing.Point(6, 25) + Me.dgvUmsatzbericht.Name = "dgvUmsatzbericht" + Me.dgvUmsatzbericht.ReadOnly = True + Me.dgvUmsatzbericht.RowHeadersVisible = False + Me.dgvUmsatzbericht.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect + Me.dgvUmsatzbericht.Size = New System.Drawing.Size(660, 427) + Me.dgvUmsatzbericht.TabIndex = 1 + ' + 'tbOP + ' + Me.tbOP.Controls.Add(Me.txtHoechstkredit) + Me.tbOP.Controls.Add(Me.Label69) + Me.tbOP.Controls.Add(Me.lblbon) + Me.tbOP.Controls.Add(Me.Label67) + Me.tbOP.Controls.Add(Me.Label66) + Me.tbOP.Controls.Add(Me.dgvOffenePosten) + Me.tbOP.Controls.Add(Me.txtBonitaetsDatum) + Me.tbOP.Controls.Add(Me.txtBonitaet) + Me.tbOP.Location = New System.Drawing.Point(4, 22) + Me.tbOP.Name = "tbOP" + Me.tbOP.Padding = New System.Windows.Forms.Padding(3) + Me.tbOP.Size = New System.Drawing.Size(672, 495) + Me.tbOP.TabIndex = 4 + Me.tbOP.Text = "Offene Posten" + Me.tbOP.UseVisualStyleBackColor = True + ' + 'Label69 + ' + Me.Label69.AutoSize = True + Me.Label69.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label69.Location = New System.Drawing.Point(514, 9) + Me.Label69.Name = "Label69" + Me.Label69.Size = New System.Drawing.Size(70, 13) + Me.Label69.TabIndex = 4 + Me.Label69.Text = "Höchstkredit:" + ' + 'lblbon + ' + Me.lblbon.AutoSize = True + Me.lblbon.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.lblbon.Location = New System.Drawing.Point(339, 9) + Me.lblbon.Name = "lblbon" + Me.lblbon.Size = New System.Drawing.Size(77, 13) + Me.lblbon.TabIndex = 2 + Me.lblbon.Text = "Bonitätsdatum:" + ' + 'Label67 + ' + Me.Label67.AutoSize = True + Me.Label67.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label67.Location = New System.Drawing.Point(225, 9) + Me.Label67.Name = "Label67" + Me.Label67.Size = New System.Drawing.Size(43, 13) + Me.Label67.TabIndex = 0 + Me.Label67.Text = "Bonität:" + ' + 'Label66 + ' + Me.Label66.AutoSize = True + Me.Label66.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label66.Location = New System.Drawing.Point(3, 19) + Me.Label66.Name = "Label66" + Me.Label66.Size = New System.Drawing.Size(160, 13) + Me.Label66.TabIndex = 6 + Me.Label66.Text = "Debitorenkonto - Offene Posten:" + ' + 'dgvOffenePosten + ' + Me.dgvOffenePosten.AllowUserToAddRows = False + Me.dgvOffenePosten.AllowUserToDeleteRows = False + Me.dgvOffenePosten.AllowUserToOrderColumns = True + Me.dgvOffenePosten.AllowUserToResizeRows = False + DataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(CType(CType(240, Byte), Integer), CType(CType(245, Byte), Integer), CType(CType(255, Byte), Integer)) + Me.dgvOffenePosten.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle2 + Me.dgvOffenePosten.BackgroundColor = System.Drawing.Color.White + Me.dgvOffenePosten.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize + Me.dgvOffenePosten.Location = New System.Drawing.Point(6, 38) + Me.dgvOffenePosten.Name = "dgvOffenePosten" + Me.dgvOffenePosten.ReadOnly = True + Me.dgvOffenePosten.RowHeadersVisible = False + Me.dgvOffenePosten.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect + Me.dgvOffenePosten.Size = New System.Drawing.Size(660, 414) + Me.dgvOffenePosten.TabIndex = 7 + ' + 'tbBank + ' + Me.tbBank.Controls.Add(Me.Label21) + Me.tbBank.Controls.Add(Me.GroupBox4) + Me.tbBank.Controls.Add(Me.txtBank_Kto) + Me.tbBank.Controls.Add(Me.Label22) + Me.tbBank.Controls.Add(Me.txtBank_Blz) + Me.tbBank.Location = New System.Drawing.Point(4, 22) + Me.tbBank.Name = "tbBank" + Me.tbBank.Padding = New System.Windows.Forms.Padding(3) + Me.tbBank.Size = New System.Drawing.Size(672, 495) + Me.tbBank.TabIndex = 5 + Me.tbBank.Text = "Bankverb./Kreditkarten" + Me.tbBank.UseVisualStyleBackColor = True + ' + 'Label21 + ' + Me.Label21.AutoSize = True + Me.Label21.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label21.Location = New System.Drawing.Point(6, 34) + Me.Label21.Name = "Label21" + Me.Label21.Size = New System.Drawing.Size(24, 13) + Me.Label21.TabIndex = 2 + Me.Label21.Text = "BIC" + ' + 'GroupBox4 + ' + Me.GroupBox4.Controls.Add(Me.Button10) + Me.GroupBox4.Controls.Add(Me.Button9) + Me.GroupBox4.Controls.Add(Me.bntGOBOXUmstellung) + Me.GroupBox4.Controls.Add(Me.btnKKhinzufuegen) + Me.GroupBox4.Controls.Add(Me.dgvKreditkarten) + Me.GroupBox4.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.GroupBox4.Location = New System.Drawing.Point(9, 69) + Me.GroupBox4.Name = "GroupBox4" + Me.GroupBox4.Size = New System.Drawing.Size(657, 383) + Me.GroupBox4.TabIndex = 4 + Me.GroupBox4.TabStop = False + Me.GroupBox4.Text = "Kreditkarten" + ' + 'Button10 + ' + Me.Button10.Enabled = False + Me.Button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.Button10.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Button10.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft + Me.Button10.Location = New System.Drawing.Point(488, 338) + Me.Button10.Name = "Button10" + Me.Button10.Size = New System.Drawing.Size(163, 38) + Me.Button10.TabIndex = 4 + Me.Button10.Text = "Lohnrechner starten" + Me.Button10.UseVisualStyleBackColor = True + ' + 'Button9 + ' + Me.Button9.Enabled = False + Me.Button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.Button9.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Button9.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft + Me.Button9.Location = New System.Drawing.Point(351, 338) + Me.Button9.Name = "Button9" + Me.Button9.Size = New System.Drawing.Size(131, 38) + Me.Button9.TabIndex = 3 + Me.Button9.Text = "Contract List" + Me.Button9.UseVisualStyleBackColor = True + ' + 'bntGOBOXUmstellung + ' + Me.bntGOBOXUmstellung.Enabled = False + Me.bntGOBOXUmstellung.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.bntGOBOXUmstellung.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.bntGOBOXUmstellung.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft + Me.bntGOBOXUmstellung.Location = New System.Drawing.Point(193, 338) + Me.bntGOBOXUmstellung.Name = "bntGOBOXUmstellung" + Me.bntGOBOXUmstellung.Size = New System.Drawing.Size(152, 38) + Me.bntGOBOXUmstellung.TabIndex = 2 + Me.bntGOBOXUmstellung.Text = "GO-BOX-Umstellung" + Me.bntGOBOXUmstellung.UseVisualStyleBackColor = True + ' + 'btnKKhinzufuegen + ' + Me.btnKKhinzufuegen.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom + Me.btnKKhinzufuegen.Enabled = False + Me.btnKKhinzufuegen.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.btnKKhinzufuegen.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.btnKKhinzufuegen.Image = Global.SDL.My.Resources.Resources.plus + Me.btnKKhinzufuegen.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft + Me.btnKKhinzufuegen.Location = New System.Drawing.Point(9, 338) + Me.btnKKhinzufuegen.Name = "btnKKhinzufuegen" + Me.btnKKhinzufuegen.Size = New System.Drawing.Size(178, 38) + Me.btnKKhinzufuegen.TabIndex = 1 + Me.btnKKhinzufuegen.Text = "Kreditkarte hinzufügen" + Me.btnKKhinzufuegen.TextAlign = System.Drawing.ContentAlignment.MiddleRight + Me.btnKKhinzufuegen.UseVisualStyleBackColor = True + ' + 'dgvKreditkarten + ' + Me.dgvKreditkarten.AllowUserToAddRows = False + Me.dgvKreditkarten.AllowUserToDeleteRows = False + Me.dgvKreditkarten.AllowUserToOrderColumns = True + Me.dgvKreditkarten.AllowUserToResizeRows = False + DataGridViewCellStyle3.BackColor = System.Drawing.Color.FromArgb(CType(CType(240, Byte), Integer), CType(CType(245, Byte), Integer), CType(CType(255, Byte), Integer)) + Me.dgvKreditkarten.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle3 + Me.dgvKreditkarten.BackgroundColor = System.Drawing.Color.White + DataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft + DataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Control + DataGridViewCellStyle4.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + DataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.WindowText + DataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight + DataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText + DataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.[True] + Me.dgvKreditkarten.ColumnHeadersDefaultCellStyle = DataGridViewCellStyle4 + Me.dgvKreditkarten.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize + DataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft + DataGridViewCellStyle5.BackColor = System.Drawing.SystemColors.Window + DataGridViewCellStyle5.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + DataGridViewCellStyle5.ForeColor = System.Drawing.SystemColors.ControlText + DataGridViewCellStyle5.SelectionBackColor = System.Drawing.SystemColors.Highlight + DataGridViewCellStyle5.SelectionForeColor = System.Drawing.SystemColors.HighlightText + DataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.[False] + Me.dgvKreditkarten.DefaultCellStyle = DataGridViewCellStyle5 + Me.dgvKreditkarten.Location = New System.Drawing.Point(9, 20) + Me.dgvKreditkarten.MultiSelect = False + Me.dgvKreditkarten.Name = "dgvKreditkarten" + Me.dgvKreditkarten.ReadOnly = True + DataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft + DataGridViewCellStyle6.BackColor = System.Drawing.SystemColors.Control + DataGridViewCellStyle6.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + DataGridViewCellStyle6.ForeColor = System.Drawing.SystemColors.WindowText + DataGridViewCellStyle6.SelectionBackColor = System.Drawing.SystemColors.Highlight + DataGridViewCellStyle6.SelectionForeColor = System.Drawing.SystemColors.HighlightText + DataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.[True] + Me.dgvKreditkarten.RowHeadersDefaultCellStyle = DataGridViewCellStyle6 + Me.dgvKreditkarten.RowHeadersVisible = False + DataGridViewCellStyle7.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.dgvKreditkarten.RowsDefaultCellStyle = DataGridViewCellStyle7 + Me.dgvKreditkarten.RowTemplate.DefaultCellStyle.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.dgvKreditkarten.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect + Me.dgvKreditkarten.Size = New System.Drawing.Size(642, 312) + Me.dgvKreditkarten.TabIndex = 0 + ' + 'txtBank_Kto + ' + Me.txtBank_Kto.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.txtBank_Kto.Location = New System.Drawing.Point(100, 6) + Me.txtBank_Kto.MaxLength = 8 + Me.txtBank_Kto.Name = "txtBank_Kto" + Me.txtBank_Kto.Size = New System.Drawing.Size(270, 20) + Me.txtBank_Kto.TabIndex = 3 + ' + 'Label22 + ' + Me.Label22.AutoSize = True + Me.Label22.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label22.Location = New System.Drawing.Point(6, 9) + Me.Label22.Name = "Label22" + Me.Label22.Size = New System.Drawing.Size(32, 13) + Me.Label22.TabIndex = 0 + Me.Label22.Text = "IBAN" + ' + 'txtBank_Blz + ' + Me.txtBank_Blz.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.txtBank_Blz.Location = New System.Drawing.Point(100, 31) + Me.txtBank_Blz.MaxLength = 12 + Me.txtBank_Blz.Name = "txtBank_Blz" + Me.txtBank_Blz.Size = New System.Drawing.Size(270, 20) + Me.txtBank_Blz.TabIndex = 1 + ' + 'tbUmsatzsteuer + ' + Me.tbUmsatzsteuer.Controls.Add(Me.txtUStIDGeprueftAm) + Me.tbUmsatzsteuer.Controls.Add(Me.txtUStID) + Me.tbUmsatzsteuer.Controls.Add(Me.Button3) + Me.tbUmsatzsteuer.Controls.Add(Me.Label85) + Me.tbUmsatzsteuer.Controls.Add(Me.Button11) + Me.tbUmsatzsteuer.Controls.Add(Me.txtSteuernummer) + Me.tbUmsatzsteuer.Controls.Add(Me.dgvUstv_LaenderUndSteuernummern) + Me.tbUmsatzsteuer.Controls.Add(Me.Label90) + Me.tbUmsatzsteuer.Controls.Add(Me.Label19) + Me.tbUmsatzsteuer.Controls.Add(Me.Label88) + Me.tbUmsatzsteuer.Controls.Add(Me.Label89) + Me.tbUmsatzsteuer.Controls.Add(Me.Label87) + Me.tbUmsatzsteuer.Controls.Add(Me.Label86) + Me.tbUmsatzsteuer.Controls.Add(Me.btnUStVAendSpeichern) + Me.tbUmsatzsteuer.Controls.Add(Me.txtUSt_GVAusgestelltAm) + Me.tbUmsatzsteuer.Controls.Add(Me.txtUSt_GVAngefordertAm) + Me.tbUmsatzsteuer.Location = New System.Drawing.Point(4, 22) + Me.tbUmsatzsteuer.Name = "tbUmsatzsteuer" + Me.tbUmsatzsteuer.Padding = New System.Windows.Forms.Padding(3) + Me.tbUmsatzsteuer.Size = New System.Drawing.Size(672, 495) + Me.tbUmsatzsteuer.TabIndex = 6 + Me.tbUmsatzsteuer.Text = "Umsatzsteuer" + Me.tbUmsatzsteuer.UseVisualStyleBackColor = True + ' + 'txtUStID + ' + Me.txtUStID.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.txtUStID.Location = New System.Drawing.Point(115, 6) + Me.txtUStID.Name = "txtUStID" + Me.txtUStID.ReadOnly = True + Me.txtUStID.Size = New System.Drawing.Size(159, 20) + Me.txtUStID.TabIndex = 1 + ' + 'Button3 + ' + Me.Button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom + Me.Button3.FlatAppearance.BorderSize = 0 + Me.Button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.Button3.Location = New System.Drawing.Point(167, 421) + Me.Button3.Name = "Button3" + Me.Button3.Size = New System.Drawing.Size(51, 31) + Me.Button3.TabIndex = 15 + Me.Button3.UseVisualStyleBackColor = True + ' + 'Label85 + ' + Me.Label85.AutoSize = True + Me.Label85.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label85.Location = New System.Drawing.Point(6, 9) + Me.Label85.Name = "Label85" + Me.Label85.Size = New System.Drawing.Size(54, 13) + Me.Label85.TabIndex = 0 + Me.Label85.Text = "USt-Id-Nr:" + ' + 'Button11 + ' + Me.Button11.Enabled = False + Me.Button11.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.Button11.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft + Me.Button11.Location = New System.Drawing.Point(9, 421) + Me.Button11.Name = "Button11" + Me.Button11.Size = New System.Drawing.Size(152, 31) + Me.Button11.TabIndex = 14 + Me.Button11.Text = "UStV-Unterlagen" + Me.Button11.UseVisualStyleBackColor = True + ' + 'txtSteuernummer + ' + Me.txtSteuernummer.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.txtSteuernummer.Location = New System.Drawing.Point(543, 6) + Me.txtSteuernummer.Name = "txtSteuernummer" + Me.txtSteuernummer.ReadOnly = True + Me.txtSteuernummer.Size = New System.Drawing.Size(123, 20) + Me.txtSteuernummer.TabIndex = 5 + ' + 'dgvUstv_LaenderUndSteuernummern + ' + DataGridViewCellStyle8.BackColor = System.Drawing.Color.FromArgb(CType(CType(240, Byte), Integer), CType(CType(245, Byte), Integer), CType(CType(255, Byte), Integer)) + Me.dgvUstv_LaenderUndSteuernummern.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle8 + Me.dgvUstv_LaenderUndSteuernummern.BackgroundColor = System.Drawing.Color.White + DataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft + DataGridViewCellStyle9.BackColor = System.Drawing.SystemColors.Control + DataGridViewCellStyle9.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + DataGridViewCellStyle9.ForeColor = System.Drawing.SystemColors.WindowText + DataGridViewCellStyle9.SelectionBackColor = System.Drawing.SystemColors.Highlight + DataGridViewCellStyle9.SelectionForeColor = System.Drawing.SystemColors.HighlightText + DataGridViewCellStyle9.WrapMode = System.Windows.Forms.DataGridViewTriState.[True] + Me.dgvUstv_LaenderUndSteuernummern.ColumnHeadersDefaultCellStyle = DataGridViewCellStyle9 + Me.dgvUstv_LaenderUndSteuernummern.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize + DataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft + DataGridViewCellStyle10.BackColor = System.Drawing.SystemColors.Window + DataGridViewCellStyle10.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + DataGridViewCellStyle10.ForeColor = System.Drawing.SystemColors.ControlText + DataGridViewCellStyle10.SelectionBackColor = System.Drawing.SystemColors.Highlight + DataGridViewCellStyle10.SelectionForeColor = System.Drawing.SystemColors.HighlightText + DataGridViewCellStyle10.WrapMode = System.Windows.Forms.DataGridViewTriState.[False] + Me.dgvUstv_LaenderUndSteuernummern.DefaultCellStyle = DataGridViewCellStyle10 + Me.dgvUstv_LaenderUndSteuernummern.Location = New System.Drawing.Point(9, 94) + Me.dgvUstv_LaenderUndSteuernummern.Name = "dgvUstv_LaenderUndSteuernummern" + Me.dgvUstv_LaenderUndSteuernummern.Size = New System.Drawing.Size(657, 321) + Me.dgvUstv_LaenderUndSteuernummern.TabIndex = 13 + ' + 'Label90 + ' + Me.Label90.AutoSize = True + Me.Label90.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label90.Location = New System.Drawing.Point(6, 44) + Me.Label90.Name = "Label90" + Me.Label90.Size = New System.Drawing.Size(99, 13) + Me.Label90.TabIndex = 6 + Me.Label90.Text = "GV angefordert am:" + ' + 'Label19 + ' + Me.Label19.AutoSize = True + Me.Label19.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label19.Location = New System.Drawing.Point(280, 9) + Me.Label19.Name = "Label19" + Me.Label19.Size = New System.Drawing.Size(66, 13) + Me.Label19.TabIndex = 2 + Me.Label19.Text = ", geprüft am:" + ' + 'Label88 + ' + Me.Label88.AutoSize = True + Me.Label88.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label88.Location = New System.Drawing.Point(245, 44) + Me.Label88.Name = "Label88" + Me.Label88.Size = New System.Drawing.Size(83, 13) + Me.Label88.TabIndex = 8 + Me.Label88.Text = ", ausgestellt am:" + ' + 'Label89 + ' + Me.Label89.AutoSize = True + Me.Label89.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label89.Location = New System.Drawing.Point(6, 78) + Me.Label89.Name = "Label89" + Me.Label89.Size = New System.Drawing.Size(366, 13) + Me.Label89.TabIndex = 12 + Me.Label89.Text = "Länder und Steuernummern für den Antrag auf Vergütung der Umsatzsteuer:" + ' + 'Label87 + ' + Me.Label87.AutoSize = True + Me.Label87.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label87.Location = New System.Drawing.Point(6, 52) + Me.Label87.Name = "Label87" + Me.Label87.Size = New System.Drawing.Size(10, 13) + Me.Label87.TabIndex = 10 + Me.Label87.Text = " " + ' + 'Label86 + ' + Me.Label86.AutoSize = True + Me.Label86.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label86.Location = New System.Drawing.Point(459, 9) + Me.Label86.Name = "Label86" + Me.Label86.Size = New System.Drawing.Size(78, 13) + Me.Label86.TabIndex = 4 + Me.Label86.Text = "Steuernummer:" + ' + 'tbSonstiges + ' + Me.tbSonstiges.Controls.Add(Me.txtSumVerag) + Me.tbSonstiges.Controls.Add(Me.txtSonst_KdNrVerag) + Me.tbSonstiges.Controls.Add(Me.Label110) + Me.tbSonstiges.Controls.Add(Me.Label109) + Me.tbSonstiges.Controls.Add(Me.Label99) + Me.tbSonstiges.Controls.Add(Me.txtCreditsafe) + Me.tbSonstiges.Controls.Add(Me.txtSonst_KdNrTOBB) + Me.tbSonstiges.Controls.Add(Me.Label96) + Me.tbSonstiges.Controls.Add(Me.txtSonst_KdNrPLOSE) + Me.tbSonstiges.Controls.Add(Me.Label83) + Me.tbSonstiges.Controls.Add(Me.Label76) + Me.tbSonstiges.Controls.Add(Me.dgvSonst_IDSKunden) + Me.tbSonstiges.Controls.Add(Me.cbxSonst_CsvAsfinag) + Me.tbSonstiges.Controls.Add(Me.cbxSonst_CsvUTA) + Me.tbSonstiges.Controls.Add(Me.cbxSonst_CsvMSE) + Me.tbSonstiges.Controls.Add(Me.cbxSonst_CsvMautbericht) + Me.tbSonstiges.Controls.Add(Me.txtSonst_KdNrUTA) + Me.tbSonstiges.Controls.Add(Me.Label75) + Me.tbSonstiges.Controls.Add(Me.txtSonst_KdNrTelepass) + Me.tbSonstiges.Controls.Add(Me.Label74) + Me.tbSonstiges.Controls.Add(Me.txtSonst_KdNrMSE) + Me.tbSonstiges.Controls.Add(Me.Label73) + Me.tbSonstiges.Controls.Add(Me.txtSonst_KdNrWOELFL) + Me.tbSonstiges.Controls.Add(Me.Label72) + Me.tbSonstiges.Controls.Add(Me.txtSonst_KdNrIDS) + Me.tbSonstiges.Controls.Add(Me.Label70) + Me.tbSonstiges.Controls.Add(Me.Label71) + Me.tbSonstiges.Controls.Add(Me.txtSumPLOSE) + Me.tbSonstiges.Controls.Add(Me.txtSumUTA) + Me.tbSonstiges.Controls.Add(Me.txtSumMSE) + Me.tbSonstiges.Controls.Add(Me.txtSumIDS) + Me.tbSonstiges.Controls.Add(Me.btnSonstAendSpeichern) + Me.tbSonstiges.Controls.Add(Me.cboSonst_Rechnungsdruck) + Me.tbSonstiges.Location = New System.Drawing.Point(4, 22) + Me.tbSonstiges.Name = "tbSonstiges" + Me.tbSonstiges.Padding = New System.Windows.Forms.Padding(3) + Me.tbSonstiges.Size = New System.Drawing.Size(672, 495) + Me.tbSonstiges.TabIndex = 7 + Me.tbSonstiges.Text = "Sonstiges" + Me.tbSonstiges.UseVisualStyleBackColor = True + ' + 'txtSonst_KdNrVerag + ' + Me.txtSonst_KdNrVerag.Location = New System.Drawing.Point(119, 231) + Me.txtSonst_KdNrVerag.MaxLength = 20 + Me.txtSonst_KdNrVerag.Name = "txtSonst_KdNrVerag" + Me.txtSonst_KdNrVerag.Size = New System.Drawing.Size(122, 20) + Me.txtSonst_KdNrVerag.TabIndex = 31 + ' + 'Label110 + ' + Me.Label110.AutoSize = True + Me.Label110.Enabled = False + Me.Label110.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label110.Location = New System.Drawing.Point(6, 233) + Me.Label110.Name = "Label110" + Me.Label110.Size = New System.Drawing.Size(82, 13) + Me.Label110.TabIndex = 30 + Me.Label110.Text = "KdNr bei Verag:" + ' + 'Label109 + ' + Me.Label109.AutoSize = True + Me.Label109.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label109.Location = New System.Drawing.Point(262, 9) + Me.Label109.Name = "Label109" + Me.Label109.Size = New System.Drawing.Size(94, 13) + Me.Label109.TabIndex = 25 + Me.Label109.Text = "Vorschausummen:" + ' + 'Label99 + ' + Me.Label99.AutoSize = True + Me.Label99.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label99.Location = New System.Drawing.Point(6, 34) + Me.Label99.Name = "Label99" + Me.Label99.Size = New System.Drawing.Size(71, 13) + Me.Label99.TabIndex = 24 + Me.Label99.Text = "ID Creditsafe:" + ' + 'txtCreditsafe + ' + Me.txtCreditsafe.Location = New System.Drawing.Point(119, 31) + Me.txtCreditsafe.Name = "txtCreditsafe" + Me.txtCreditsafe.Size = New System.Drawing.Size(122, 20) + Me.txtCreditsafe.TabIndex = 23 + ' + 'txtSonst_KdNrTOBB + ' + Me.txtSonst_KdNrTOBB.Location = New System.Drawing.Point(119, 208) + Me.txtSonst_KdNrTOBB.MaxLength = 20 + Me.txtSonst_KdNrTOBB.Name = "txtSonst_KdNrTOBB" + Me.txtSonst_KdNrTOBB.Size = New System.Drawing.Size(122, 20) + Me.txtSonst_KdNrTOBB.TabIndex = 22 + ' + 'Label96 + ' + Me.Label96.AutoSize = True + Me.Label96.Enabled = False + Me.Label96.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label96.Location = New System.Drawing.Point(6, 211) + Me.Label96.Name = "Label96" + Me.Label96.Size = New System.Drawing.Size(83, 13) + Me.Label96.TabIndex = 21 + Me.Label96.Text = "KdNr bei TOBB:" + ' + 'txtSonst_KdNrPLOSE + ' + Me.txtSonst_KdNrPLOSE.Enabled = False + Me.txtSonst_KdNrPLOSE.Location = New System.Drawing.Point(119, 182) + Me.txtSonst_KdNrPLOSE.Name = "txtSonst_KdNrPLOSE" + Me.txtSonst_KdNrPLOSE.Size = New System.Drawing.Size(122, 20) + Me.txtSonst_KdNrPLOSE.TabIndex = 20 + ' + 'Label83 + ' + Me.Label83.AutoSize = True + Me.Label83.Enabled = False + Me.Label83.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label83.Location = New System.Drawing.Point(6, 185) + Me.Label83.Name = "Label83" + Me.Label83.Size = New System.Drawing.Size(89, 13) + Me.Label83.TabIndex = 19 + Me.Label83.Text = "KdNr bei PLOSE:" + ' + 'Label76 + ' + Me.Label76.AutoSize = True + Me.Label76.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label76.Location = New System.Drawing.Point(4, 262) + Me.Label76.Name = "Label76" + Me.Label76.Size = New System.Drawing.Size(65, 13) + Me.Label76.TabIndex = 17 + Me.Label76.Text = "IDS-Kunden" + ' + 'dgvSonst_IDSKunden + ' + Me.dgvSonst_IDSKunden.AllowUserToResizeRows = False + DataGridViewCellStyle11.BackColor = System.Drawing.Color.FromArgb(CType(CType(240, Byte), Integer), CType(CType(245, Byte), Integer), CType(CType(255, Byte), Integer)) + Me.dgvSonst_IDSKunden.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle11 + Me.dgvSonst_IDSKunden.BackgroundColor = System.Drawing.Color.White + DataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft + DataGridViewCellStyle12.BackColor = System.Drawing.SystemColors.Control + DataGridViewCellStyle12.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + DataGridViewCellStyle12.ForeColor = System.Drawing.SystemColors.WindowText + DataGridViewCellStyle12.SelectionBackColor = System.Drawing.SystemColors.Highlight + DataGridViewCellStyle12.SelectionForeColor = System.Drawing.SystemColors.HighlightText + DataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.[True] + Me.dgvSonst_IDSKunden.ColumnHeadersDefaultCellStyle = DataGridViewCellStyle12 + Me.dgvSonst_IDSKunden.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize + DataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft + DataGridViewCellStyle13.BackColor = System.Drawing.SystemColors.Window + DataGridViewCellStyle13.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + DataGridViewCellStyle13.ForeColor = System.Drawing.SystemColors.ControlText + DataGridViewCellStyle13.SelectionBackColor = System.Drawing.SystemColors.Highlight + DataGridViewCellStyle13.SelectionForeColor = System.Drawing.SystemColors.HighlightText + DataGridViewCellStyle13.WrapMode = System.Windows.Forms.DataGridViewTriState.[False] + Me.dgvSonst_IDSKunden.DefaultCellStyle = DataGridViewCellStyle13 + Me.dgvSonst_IDSKunden.Location = New System.Drawing.Point(9, 308) + Me.dgvSonst_IDSKunden.MultiSelect = False + Me.dgvSonst_IDSKunden.Name = "dgvSonst_IDSKunden" + Me.dgvSonst_IDSKunden.Size = New System.Drawing.Size(657, 144) + Me.dgvSonst_IDSKunden.TabIndex = 18 + ' + 'cbxSonst_CsvAsfinag + ' + Me.cbxSonst_CsvAsfinag.AutoSize = True + Me.cbxSonst_CsvAsfinag.Location = New System.Drawing.Point(114, 261) + Me.cbxSonst_CsvAsfinag.Name = "cbxSonst_CsvAsfinag" + Me.cbxSonst_CsvAsfinag.Size = New System.Drawing.Size(264, 17) + Me.cbxSonst_CsvAsfinag.TabIndex = 15 + Me.cbxSonst_CsvAsfinag.Text = "ASFINAG-Abrechnungsdaten als CSV bereitstellen" + Me.cbxSonst_CsvAsfinag.UseVisualStyleBackColor = True + ' + 'cbxSonst_CsvUTA + ' + Me.cbxSonst_CsvUTA.AutoSize = True + Me.cbxSonst_CsvUTA.Location = New System.Drawing.Point(429, 155) + Me.cbxSonst_CsvUTA.Name = "cbxSonst_CsvUTA" + Me.cbxSonst_CsvUTA.Size = New System.Drawing.Size(240, 17) + Me.cbxSonst_CsvUTA.TabIndex = 14 + Me.cbxSonst_CsvUTA.Text = "UTA-Abrechnungsdaten als CSV bereitstellen" + Me.cbxSonst_CsvUTA.UseVisualStyleBackColor = True + ' + 'cbxSonst_CsvMSE + ' + Me.cbxSonst_CsvMSE.AutoSize = True + Me.cbxSonst_CsvMSE.Location = New System.Drawing.Point(429, 103) + Me.cbxSonst_CsvMSE.Name = "cbxSonst_CsvMSE" + Me.cbxSonst_CsvMSE.Size = New System.Drawing.Size(241, 17) + Me.cbxSonst_CsvMSE.TabIndex = 9 + Me.cbxSonst_CsvMSE.Text = "MSE-Abrechnungsdaten als CSV bereitstellen" + Me.cbxSonst_CsvMSE.UseVisualStyleBackColor = True + ' + 'cbxSonst_CsvMautbericht + ' + Me.cbxSonst_CsvMautbericht.AutoSize = True + Me.cbxSonst_CsvMautbericht.Location = New System.Drawing.Point(429, 7) + Me.cbxSonst_CsvMautbericht.Name = "cbxSonst_CsvMautbericht" + Me.cbxSonst_CsvMautbericht.Size = New System.Drawing.Size(181, 17) + Me.cbxSonst_CsvMautbericht.TabIndex = 2 + Me.cbxSonst_CsvMautbericht.Text = "Mautbericht als CSV bereitstellen" + Me.cbxSonst_CsvMautbericht.UseVisualStyleBackColor = True + ' + 'txtSonst_KdNrUTA + ' + Me.txtSonst_KdNrUTA.Location = New System.Drawing.Point(119, 156) + Me.txtSonst_KdNrUTA.Name = "txtSonst_KdNrUTA" + Me.txtSonst_KdNrUTA.Size = New System.Drawing.Size(122, 20) + Me.txtSonst_KdNrUTA.TabIndex = 13 + ' + 'Label75 + ' + Me.Label75.AutoSize = True + Me.Label75.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label75.Location = New System.Drawing.Point(6, 159) + Me.Label75.Name = "Label75" + Me.Label75.Size = New System.Drawing.Size(76, 13) + Me.Label75.TabIndex = 12 + Me.Label75.Text = "KdNr bei UTA:" + ' + 'txtSonst_KdNrTelepass + ' + Me.txtSonst_KdNrTelepass.Location = New System.Drawing.Point(119, 130) + Me.txtSonst_KdNrTelepass.Name = "txtSonst_KdNrTelepass" + Me.txtSonst_KdNrTelepass.Size = New System.Drawing.Size(122, 20) + Me.txtSonst_KdNrTelepass.TabIndex = 11 + ' + 'Label74 + ' + Me.Label74.AutoSize = True + Me.Label74.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label74.Location = New System.Drawing.Point(6, 133) + Me.Label74.Name = "Label74" + Me.Label74.Size = New System.Drawing.Size(109, 13) + Me.Label74.TabIndex = 10 + Me.Label74.Text = "KdNr bei TELEPASS:" + ' + 'txtSonst_KdNrMSE + ' + Me.txtSonst_KdNrMSE.Location = New System.Drawing.Point(119, 104) + Me.txtSonst_KdNrMSE.Name = "txtSonst_KdNrMSE" + Me.txtSonst_KdNrMSE.Size = New System.Drawing.Size(122, 20) + Me.txtSonst_KdNrMSE.TabIndex = 8 + ' + 'Label73 + ' + Me.Label73.AutoSize = True + Me.Label73.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label73.Location = New System.Drawing.Point(6, 107) + Me.Label73.Name = "Label73" + Me.Label73.Size = New System.Drawing.Size(77, 13) + Me.Label73.TabIndex = 7 + Me.Label73.Text = "KdNr bei MSE:" + ' + 'txtSonst_KdNrWOELFL + ' + Me.txtSonst_KdNrWOELFL.Location = New System.Drawing.Point(119, 78) + Me.txtSonst_KdNrWOELFL.Name = "txtSonst_KdNrWOELFL" + Me.txtSonst_KdNrWOELFL.Size = New System.Drawing.Size(122, 20) + Me.txtSonst_KdNrWOELFL.TabIndex = 6 + ' + 'Label72 + ' + Me.Label72.AutoSize = True + Me.Label72.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label72.Location = New System.Drawing.Point(6, 81) + Me.Label72.Name = "Label72" + Me.Label72.Size = New System.Drawing.Size(78, 13) + Me.Label72.TabIndex = 5 + Me.Label72.Text = "KdNr bei Wölfl:" + ' + 'txtSonst_KdNrIDS + ' + Me.txtSonst_KdNrIDS.Enabled = False + Me.txtSonst_KdNrIDS.Location = New System.Drawing.Point(119, 52) + Me.txtSonst_KdNrIDS.Name = "txtSonst_KdNrIDS" + Me.txtSonst_KdNrIDS.Size = New System.Drawing.Size(122, 20) + Me.txtSonst_KdNrIDS.TabIndex = 4 + ' + 'Label70 + ' + Me.Label70.AutoSize = True + Me.Label70.Enabled = False + Me.Label70.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label70.Location = New System.Drawing.Point(6, 55) + Me.Label70.Name = "Label70" + Me.Label70.Size = New System.Drawing.Size(72, 13) + Me.Label70.TabIndex = 3 + Me.Label70.Text = "KdNr bei IDS:" + ' + 'Label71 + ' + Me.Label71.AutoSize = True + Me.Label71.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label71.Location = New System.Drawing.Point(6, 9) + Me.Label71.Name = "Label71" + Me.Label71.Size = New System.Drawing.Size(92, 13) + Me.Label71.TabIndex = 0 + Me.Label71.Text = "Rechnungsdruck:" + ' + 'tbSchnittstellen + ' + Me.tbSchnittstellen.Controls.Add(Me.txtVERAG_Schnittstellen_ID) + Me.tbSchnittstellen.Controls.Add(Me.Label91) + Me.tbSchnittstellen.Controls.Add(Me.Label92) + Me.tbSchnittstellen.Controls.Add(Me.DataGridView1) + Me.tbSchnittstellen.Location = New System.Drawing.Point(4, 22) + Me.tbSchnittstellen.Name = "tbSchnittstellen" + Me.tbSchnittstellen.Padding = New System.Windows.Forms.Padding(3) + Me.tbSchnittstellen.Size = New System.Drawing.Size(672, 495) + Me.tbSchnittstellen.TabIndex = 10 + Me.tbSchnittstellen.Text = "Schnittstellen" + Me.tbSchnittstellen.UseVisualStyleBackColor = True + ' + 'txtVERAG_Schnittstellen_ID + ' + Me.txtVERAG_Schnittstellen_ID.Enabled = False + Me.txtVERAG_Schnittstellen_ID.Location = New System.Drawing.Point(131, 17) + Me.txtVERAG_Schnittstellen_ID.Name = "txtVERAG_Schnittstellen_ID" + Me.txtVERAG_Schnittstellen_ID.Size = New System.Drawing.Size(122, 20) + Me.txtVERAG_Schnittstellen_ID.TabIndex = 24 + ' + 'Label91 + ' + Me.Label91.AutoSize = True + Me.Label91.Enabled = False + Me.Label91.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label91.Location = New System.Drawing.Point(6, 20) + Me.Label91.Name = "Label91" + Me.Label91.Size = New System.Drawing.Size(119, 13) + Me.Label91.TabIndex = 23 + Me.Label91.Text = "VERAG Schnittellen-ID:" + ' + 'Label92 + ' + Me.Label92.AutoSize = True + Me.Label92.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label92.Location = New System.Drawing.Point(6, 77) + Me.Label92.Name = "Label92" + Me.Label92.Size = New System.Drawing.Size(110, 13) + Me.Label92.TabIndex = 21 + Me.Label92.Text = "VERAG-Schnittstellen" + ' + 'DataGridView1 + ' + Me.DataGridView1.AllowUserToResizeRows = False + DataGridViewCellStyle14.BackColor = System.Drawing.Color.FromArgb(CType(CType(240, Byte), Integer), CType(CType(245, Byte), Integer), CType(CType(255, Byte), Integer)) + Me.DataGridView1.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle14 + Me.DataGridView1.BackgroundColor = System.Drawing.Color.White + DataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft + DataGridViewCellStyle15.BackColor = System.Drawing.SystemColors.Control + DataGridViewCellStyle15.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + DataGridViewCellStyle15.ForeColor = System.Drawing.SystemColors.WindowText + DataGridViewCellStyle15.SelectionBackColor = System.Drawing.SystemColors.Highlight + DataGridViewCellStyle15.SelectionForeColor = System.Drawing.SystemColors.HighlightText + DataGridViewCellStyle15.WrapMode = System.Windows.Forms.DataGridViewTriState.[True] + Me.DataGridView1.ColumnHeadersDefaultCellStyle = DataGridViewCellStyle15 + Me.DataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize + DataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft + DataGridViewCellStyle16.BackColor = System.Drawing.SystemColors.Window + DataGridViewCellStyle16.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + DataGridViewCellStyle16.ForeColor = System.Drawing.SystemColors.ControlText + DataGridViewCellStyle16.SelectionBackColor = System.Drawing.SystemColors.Highlight + DataGridViewCellStyle16.SelectionForeColor = System.Drawing.SystemColors.HighlightText + DataGridViewCellStyle16.WrapMode = System.Windows.Forms.DataGridViewTriState.[False] + Me.DataGridView1.DefaultCellStyle = DataGridViewCellStyle16 + Me.DataGridView1.Enabled = False + Me.DataGridView1.Location = New System.Drawing.Point(6, 111) + Me.DataGridView1.MultiSelect = False + Me.DataGridView1.Name = "DataGridView1" + Me.DataGridView1.Size = New System.Drawing.Size(657, 358) + Me.DataGridView1.TabIndex = 22 + ' + 'tbZahlungsinfo + ' + Me.tbZahlungsinfo.Controls.Add(Me.Label102) + Me.tbZahlungsinfo.Controls.Add(Me.rtb_Zahlungsinfo) + Me.tbZahlungsinfo.Location = New System.Drawing.Point(4, 22) + Me.tbZahlungsinfo.Name = "tbZahlungsinfo" + Me.tbZahlungsinfo.Size = New System.Drawing.Size(672, 495) + Me.tbZahlungsinfo.TabIndex = 11 + Me.tbZahlungsinfo.Text = "Zahlungsinfo" + Me.tbZahlungsinfo.UseVisualStyleBackColor = True + ' + 'Label102 + ' + Me.Label102.AutoSize = True + Me.Label102.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label102.Location = New System.Drawing.Point(3, 18) + Me.Label102.Name = "Label102" + Me.Label102.Size = New System.Drawing.Size(66, 13) + Me.Label102.TabIndex = 132 + Me.Label102.Text = "Zahlunginfo:" + ' + 'rtb_Zahlungsinfo + ' + Me.rtb_Zahlungsinfo.Location = New System.Drawing.Point(6, 35) + Me.rtb_Zahlungsinfo.Name = "rtb_Zahlungsinfo" + Me.rtb_Zahlungsinfo.Size = New System.Drawing.Size(660, 412) + Me.rtb_Zahlungsinfo.TabIndex = 40 + Me.rtb_Zahlungsinfo.Text = "" + ' + 'tbBankverbindungen + ' + Me.tbBankverbindungen.Controls.Add(Me.dgvBankverbindungen) + Me.tbBankverbindungen.Controls.Add(Me.cbxAlleBVanzeigen) + Me.tbBankverbindungen.Controls.Add(Me.Label108) + Me.tbBankverbindungen.Controls.Add(Me.btnBankspeichern) + Me.tbBankverbindungen.Location = New System.Drawing.Point(4, 22) + Me.tbBankverbindungen.Name = "tbBankverbindungen" + Me.tbBankverbindungen.Size = New System.Drawing.Size(672, 495) + Me.tbBankverbindungen.TabIndex = 12 + Me.tbBankverbindungen.Text = "Bankverbindung" + Me.tbBankverbindungen.UseVisualStyleBackColor = True + ' + 'dgvBankverbindungen + ' + Me.dgvBankverbindungen.AllowUserToDeleteRows = False + Me.dgvBankverbindungen.AllowUserToResizeRows = False + DataGridViewCellStyle17.BackColor = System.Drawing.Color.FromArgb(CType(CType(240, Byte), Integer), CType(CType(245, Byte), Integer), CType(CType(255, Byte), Integer)) + Me.dgvBankverbindungen.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle17 + Me.dgvBankverbindungen.BackgroundColor = System.Drawing.Color.White + DataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft + DataGridViewCellStyle18.BackColor = System.Drawing.SystemColors.Control + DataGridViewCellStyle18.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + DataGridViewCellStyle18.ForeColor = System.Drawing.SystemColors.WindowText + DataGridViewCellStyle18.SelectionBackColor = System.Drawing.SystemColors.Highlight + DataGridViewCellStyle18.SelectionForeColor = System.Drawing.SystemColors.HighlightText + DataGridViewCellStyle18.WrapMode = System.Windows.Forms.DataGridViewTriState.[True] + Me.dgvBankverbindungen.ColumnHeadersDefaultCellStyle = DataGridViewCellStyle18 + Me.dgvBankverbindungen.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize + DataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft + DataGridViewCellStyle19.BackColor = System.Drawing.SystemColors.Window + DataGridViewCellStyle19.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + DataGridViewCellStyle19.ForeColor = System.Drawing.SystemColors.ControlText + DataGridViewCellStyle19.SelectionBackColor = System.Drawing.SystemColors.Highlight + DataGridViewCellStyle19.SelectionForeColor = System.Drawing.SystemColors.HighlightText + DataGridViewCellStyle19.WrapMode = System.Windows.Forms.DataGridViewTriState.[False] + Me.dgvBankverbindungen.DefaultCellStyle = DataGridViewCellStyle19 + Me.dgvBankverbindungen.Location = New System.Drawing.Point(3, 40) + Me.dgvBankverbindungen.MultiSelect = False + Me.dgvBankverbindungen.Name = "dgvBankverbindungen" + Me.dgvBankverbindungen.Size = New System.Drawing.Size(669, 243) + Me.dgvBankverbindungen.TabIndex = 137 + ' + 'cbxAlleBVanzeigen + ' + Me.cbxAlleBVanzeigen.AutoSize = True + Me.cbxAlleBVanzeigen.Location = New System.Drawing.Point(578, 14) + Me.cbxAlleBVanzeigen.Name = "cbxAlleBVanzeigen" + Me.cbxAlleBVanzeigen.Size = New System.Drawing.Size(88, 17) + Me.cbxAlleBVanzeigen.TabIndex = 135 + Me.cbxAlleBVanzeigen.Text = "alle anzeigen" + Me.cbxAlleBVanzeigen.UseVisualStyleBackColor = True + ' + 'Label108 + ' + Me.Label108.AutoSize = True + Me.Label108.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label108.Location = New System.Drawing.Point(12, 18) + Me.Label108.Name = "Label108" + Me.Label108.Size = New System.Drawing.Size(100, 13) + Me.Label108.TabIndex = 133 + Me.Label108.Text = "Bankverbindungen:" + ' + 'lblEORI + ' + Me.lblEORI.AutoSize = True + Me.lblEORI.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.lblEORI.Location = New System.Drawing.Point(8, 136) + Me.lblEORI.Name = "lblEORI" + Me.lblEORI.Size = New System.Drawing.Size(78, 13) + Me.lblEORI.TabIndex = 12 + Me.lblEORI.Text = "EORI / NL-Nr.:" + ' + 'Label84 + ' + Me.Label84.AutoSize = True + Me.Label84.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label84.Location = New System.Drawing.Point(259, 87) + Me.Label84.Name = "Label84" + Me.Label84.Size = New System.Drawing.Size(66, 13) + Me.Label84.TabIndex = 8 + Me.Label84.Text = ", geprüft am:" + ' + 'GroupBox3 + ' + Me.GroupBox3.Controls.Add(Me.cbxkeineMWSt) + Me.GroupBox3.Controls.Add(Me.txtGruendungsDatum) + Me.GroupBox3.Controls.Add(Me.Label33) + Me.GroupBox3.Controls.Add(Me.txtHandelsregisterNr) + Me.GroupBox3.Controls.Add(Me.PictureBox5) + Me.GroupBox3.Controls.Add(Me.cbxUIDMehrfachverwendung) + Me.GroupBox3.Controls.Add(Me.btnCreditsafe) + Me.GroupBox3.Controls.Add(Me.Button13) + Me.GroupBox3.Controls.Add(Me.btnUIDPruef) + Me.GroupBox3.Controls.Add(Me.txtEORINL) + Me.GroupBox3.Controls.Add(Me.Label5) + Me.GroupBox3.Controls.Add(Me.txtEORI) + Me.GroupBox3.Controls.Add(Me.lblEORI) + Me.GroupBox3.Controls.Add(Me.txtFirmenname1) + Me.GroupBox3.Controls.Add(Me.cboUSt_UstIdNrLand) + Me.GroupBox3.Controls.Add(Me.Label15) + Me.GroupBox3.Controls.Add(Me.Label3) + Me.GroupBox3.Controls.Add(Me.txtUSt_UstIdNrGeprueftAm) + Me.GroupBox3.Controls.Add(Me.txtKurzname) + Me.GroupBox3.Controls.Add(Me.txtUSt_UstIdNr) + Me.GroupBox3.Controls.Add(Me.txtFirmenname2) + Me.GroupBox3.Controls.Add(Me.Label16) + Me.GroupBox3.Controls.Add(Me.txtUSt_Steuernummer) + Me.GroupBox3.Controls.Add(Me.Label84) + Me.GroupBox3.Controls.Add(Me.lblHandelregisterNr) + Me.GroupBox3.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.GroupBox3.Location = New System.Drawing.Point(3, 3) + Me.GroupBox3.Name = "GroupBox3" + Me.GroupBox3.Size = New System.Drawing.Size(453, 207) + Me.GroupBox3.TabIndex = 0 + Me.GroupBox3.TabStop = False + Me.GroupBox3.Text = "Firma" + ' + 'Label33 + ' + Me.Label33.AutoSize = True + Me.Label33.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label33.Location = New System.Drawing.Point(10, 161) + Me.Label33.Name = "Label33" + Me.Label33.Size = New System.Drawing.Size(75, 13) + Me.Label33.TabIndex = 134 + Me.Label33.Text = "gegründet am:" + ' + 'PictureBox5 + ' + Me.PictureBox5.BackgroundImage = Global.SDL.My.Resources.Resources.fragezeichen + Me.PictureBox5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom + Me.PictureBox5.Location = New System.Drawing.Point(88, 62) + Me.PictureBox5.Name = "PictureBox5" + Me.PictureBox5.Size = New System.Drawing.Size(18, 19) + Me.PictureBox5.TabIndex = 131 + Me.PictureBox5.TabStop = False + Me.PictureBox5.Visible = False + ' + 'cbxUIDMehrfachverwendung + ' + Me.cbxUIDMehrfachverwendung.AutoSize = True + Me.cbxUIDMehrfachverwendung.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.cbxUIDMehrfachverwendung.Location = New System.Drawing.Point(292, 159) + Me.cbxUIDMehrfachverwendung.Name = "cbxUIDMehrfachverwendung" + Me.cbxUIDMehrfachverwendung.Size = New System.Drawing.Size(152, 17) + Me.cbxUIDMehrfachverwendung.TabIndex = 25 + Me.cbxUIDMehrfachverwendung.Text = "UID-Mehrfachverwendung" + Me.cbxUIDMehrfachverwendung.UseVisualStyleBackColor = True + ' + 'btnCreditsafe + ' + Me.btnCreditsafe.BackgroundImage = Global.SDL.My.Resources.Resources.creditsafe_add1 + Me.btnCreditsafe.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom + Me.btnCreditsafe.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.btnCreditsafe.Location = New System.Drawing.Point(9, 57) + Me.btnCreditsafe.Name = "btnCreditsafe" + Me.btnCreditsafe.Size = New System.Drawing.Size(77, 27) + Me.btnCreditsafe.TabIndex = 25 + Me.btnCreditsafe.UseVisualStyleBackColor = True + Me.btnCreditsafe.Visible = False + ' + 'Button13 + ' + Me.Button13.BackgroundImage = Global.SDL.My.Resources.Resources.list + Me.Button13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom + Me.Button13.FlatAppearance.BorderSize = 0 + Me.Button13.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.Button13.Location = New System.Drawing.Point(419, 84) + Me.Button13.Name = "Button13" + Me.Button13.Size = New System.Drawing.Size(25, 20) + Me.Button13.TabIndex = 16 + Me.Button13.UseVisualStyleBackColor = True + ' + 'btnUIDPruef + ' + Me.btnUIDPruef.BackgroundImage = Global.SDL.My.Resources.Resources.fragezeichen + Me.btnUIDPruef.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom + Me.btnUIDPruef.FlatAppearance.BorderSize = 0 + Me.btnUIDPruef.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.btnUIDPruef.Location = New System.Drawing.Point(397, 84) + Me.btnUIDPruef.Name = "btnUIDPruef" + Me.btnUIDPruef.Size = New System.Drawing.Size(25, 20) + Me.btnUIDPruef.TabIndex = 15 + Me.btnUIDPruef.UseVisualStyleBackColor = True + Me.btnUIDPruef.Visible = False + ' + 'Label5 + ' + Me.Label5.AutoSize = True + Me.Label5.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label5.Location = New System.Drawing.Point(6, 19) + Me.Label5.Name = "Label5" + Me.Label5.Size = New System.Drawing.Size(57, 13) + Me.Label5.TabIndex = 0 + Me.Label5.Text = "Kurzname:" + ' + 'txtFirmenname1 + ' + Me.txtFirmenname1.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.txtFirmenname1.Location = New System.Drawing.Point(110, 40) + Me.txtFirmenname1.MaxLength = 40 + Me.txtFirmenname1.Name = "txtFirmenname1" + Me.txtFirmenname1.Size = New System.Drawing.Size(334, 20) + Me.txtFirmenname1.TabIndex = 3 + ' + 'Label15 + ' + Me.Label15.AutoSize = True + Me.Label15.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label15.Location = New System.Drawing.Point(8, 87) + Me.Label15.Name = "Label15" + Me.Label15.Size = New System.Drawing.Size(39, 13) + Me.Label15.TabIndex = 5 + Me.Label15.Text = "UStID:" + ' + 'Label3 + ' + Me.Label3.AutoSize = True + Me.Label3.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label3.Location = New System.Drawing.Point(6, 43) + Me.Label3.Name = "Label3" + Me.Label3.Size = New System.Drawing.Size(67, 13) + Me.Label3.TabIndex = 2 + Me.Label3.Text = "Firmenname:" + ' + 'txtKurzname + ' + Me.txtKurzname.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.txtKurzname.Location = New System.Drawing.Point(110, 16) + Me.txtKurzname.MaxLength = 50 + Me.txtKurzname.Name = "txtKurzname" + Me.txtKurzname.Size = New System.Drawing.Size(334, 20) + Me.txtKurzname.TabIndex = 1 + ' + 'txtFirmenname2 + ' + Me.txtFirmenname2.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.txtFirmenname2.Location = New System.Drawing.Point(110, 59) + Me.txtFirmenname2.MaxLength = 40 + Me.txtFirmenname2.Name = "txtFirmenname2" + Me.txtFirmenname2.Size = New System.Drawing.Size(334, 20) + Me.txtFirmenname2.TabIndex = 4 + ' + 'Label16 + ' + Me.Label16.AutoSize = True + Me.Label16.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label16.Location = New System.Drawing.Point(240, 112) + Me.Label16.Name = "Label16" + Me.Label16.Size = New System.Drawing.Size(78, 13) + Me.Label16.TabIndex = 10 + Me.Label16.Text = "Steuernummer:" + ' + 'lblHandelregisterNr + ' + Me.lblHandelregisterNr.AutoSize = True + Me.lblHandelregisterNr.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.lblHandelregisterNr.Location = New System.Drawing.Point(8, 112) + Me.lblHandelregisterNr.Name = "lblHandelregisterNr" + Me.lblHandelregisterNr.Size = New System.Drawing.Size(100, 13) + Me.lblHandelregisterNr.TabIndex = 132 + Me.lblHandelregisterNr.Text = "Handelsregister-Nr.:" + ' + 'Label100 + ' + Me.Label100.AutoSize = True + Me.Label100.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label100.Location = New System.Drawing.Point(6, 47) + Me.Label100.Name = "Label100" + Me.Label100.Size = New System.Drawing.Size(77, 13) + Me.Label100.TabIndex = 27 + Me.Label100.Text = "Adress-Zusatz:" + ' + 'txtAdresseZusatz + ' + Me.txtAdresseZusatz.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.txtAdresseZusatz.Location = New System.Drawing.Point(110, 44) + Me.txtAdresseZusatz.MaxLength = 50 + Me.txtAdresseZusatz.Name = "txtAdresseZusatz" + Me.txtAdresseZusatz.Size = New System.Drawing.Size(334, 20) + Me.txtAdresseZusatz.TabIndex = 26 + ' + 'GroupBox1 + ' + Me.GroupBox1.Controls.Add(Me.cbxLandKz) + Me.GroupBox1.Controls.Add(Me.Label14) + Me.GroupBox1.Controls.Add(Me.txtPostfachOrt) + Me.GroupBox1.Controls.Add(Me.txtOrt) + Me.GroupBox1.Controls.Add(Me.Label100) + Me.GroupBox1.Controls.Add(Me.Label12) + Me.GroupBox1.Controls.Add(Me.txtPostfachPlz) + Me.GroupBox1.Controls.Add(Me.txtAdresseZusatz) + Me.GroupBox1.Controls.Add(Me.txtPlz) + Me.GroupBox1.Controls.Add(Me.Label4) + Me.GroupBox1.Controls.Add(Me.txtStrasse) + Me.GroupBox1.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.GroupBox1.Location = New System.Drawing.Point(3, 217) + Me.GroupBox1.Name = "GroupBox1" + Me.GroupBox1.Size = New System.Drawing.Size(453, 139) + Me.GroupBox1.TabIndex = 1 + Me.GroupBox1.TabStop = False + Me.GroupBox1.Text = "Adresse" + ' + 'Label14 + ' + Me.Label14.AutoSize = True + Me.Label14.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label14.Location = New System.Drawing.Point(6, 99) + Me.Label14.Name = "Label14" + Me.Label14.Size = New System.Drawing.Size(100, 13) + Me.Label14.TabIndex = 6 + Me.Label14.Text = "Postfach PLZ / Ort:" + ' + 'txtPostfachOrt + ' + Me.txtPostfachOrt.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.txtPostfachOrt.Location = New System.Drawing.Point(243, 96) + Me.txtPostfachOrt.MaxLength = 40 + Me.txtPostfachOrt.Name = "txtPostfachOrt" + Me.txtPostfachOrt.Size = New System.Drawing.Size(201, 20) + Me.txtPostfachOrt.TabIndex = 8 + ' + 'txtOrt + ' + Me.txtOrt.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.txtOrt.Location = New System.Drawing.Point(243, 70) + Me.txtOrt.MaxLength = 40 + Me.txtOrt.Name = "txtOrt" + Me.txtOrt.Size = New System.Drawing.Size(201, 20) + Me.txtOrt.TabIndex = 5 + ' + 'Label12 + ' + Me.Label12.AutoSize = True + Me.Label12.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label12.Location = New System.Drawing.Point(6, 73) + Me.Label12.Name = "Label12" + Me.Label12.Size = New System.Drawing.Size(90, 13) + Me.Label12.TabIndex = 2 + Me.Label12.Text = "Land / PLZ / Ort:" + ' + 'txtPostfachPlz + ' + Me.txtPostfachPlz.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.txtPostfachPlz.Location = New System.Drawing.Point(110, 96) + Me.txtPostfachPlz.MaxLength = 7 + Me.txtPostfachPlz.Name = "txtPostfachPlz" + Me.txtPostfachPlz.Size = New System.Drawing.Size(127, 20) + Me.txtPostfachPlz.TabIndex = 7 + ' + 'txtPlz + ' + Me.txtPlz.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.txtPlz.Location = New System.Drawing.Point(166, 70) + Me.txtPlz.MaxLength = 7 + Me.txtPlz.Name = "txtPlz" + Me.txtPlz.Size = New System.Drawing.Size(71, 20) + Me.txtPlz.TabIndex = 4 + ' + 'Label4 + ' + Me.Label4.AutoSize = True + Me.Label4.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label4.Location = New System.Drawing.Point(6, 25) + Me.Label4.Name = "Label4" + Me.Label4.Size = New System.Drawing.Size(41, 13) + Me.Label4.TabIndex = 0 + Me.Label4.Text = "Straße:" + ' + 'txtStrasse + ' + Me.txtStrasse.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.txtStrasse.Location = New System.Drawing.Point(110, 22) + Me.txtStrasse.MaxLength = 40 + Me.txtStrasse.Name = "txtStrasse" + Me.txtStrasse.Size = New System.Drawing.Size(334, 20) + Me.txtStrasse.TabIndex = 1 + ' + 'txtAnsprechpartnerAnrede + ' + Me.txtAnsprechpartnerAnrede.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.txtAnsprechpartnerAnrede.Location = New System.Drawing.Point(107, 148) + Me.txtAnsprechpartnerAnrede.MaxLength = 4 + Me.txtAnsprechpartnerAnrede.Name = "txtAnsprechpartnerAnrede" + Me.txtAnsprechpartnerAnrede.Size = New System.Drawing.Size(55, 20) + Me.txtAnsprechpartnerAnrede.TabIndex = 11 + ' + 'Label20 + ' + Me.Label20.AutoSize = True + Me.Label20.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label20.Location = New System.Drawing.Point(3, 66) + Me.Label20.Name = "Label20" + Me.Label20.Size = New System.Drawing.Size(67, 13) + Me.Label20.TabIndex = 4 + Me.Label20.Text = "Mobiltelefon:" + ' + 'txtMobil + ' + Me.txtMobil.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.txtMobil.Location = New System.Drawing.Point(107, 63) + Me.txtMobil.MaxLength = 50 + Me.txtMobil.Name = "txtMobil" + Me.txtMobil.Size = New System.Drawing.Size(333, 20) + Me.txtMobil.TabIndex = 5 + ' + 'Label10 + ' + Me.Label10.AutoSize = True + Me.Label10.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label10.Location = New System.Drawing.Point(3, 151) + Me.Label10.Name = "Label10" + Me.Label10.Size = New System.Drawing.Size(88, 13) + Me.Label10.TabIndex = 10 + Me.Label10.Text = "Ansprechpartner:" + ' + 'txtAnsprechpartner + ' + Me.txtAnsprechpartner.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.txtAnsprechpartner.Location = New System.Drawing.Point(168, 148) + Me.txtAnsprechpartner.MaxLength = 40 + Me.txtAnsprechpartner.Name = "txtAnsprechpartner" + Me.txtAnsprechpartner.Size = New System.Drawing.Size(272, 20) + Me.txtAnsprechpartner.TabIndex = 12 + ' + 'Label13 + ' + Me.Label13.AutoSize = True + Me.Label13.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label13.Location = New System.Drawing.Point(3, 123) + Me.Label13.Name = "Label13" + Me.Label13.Size = New System.Drawing.Size(48, 13) + Me.Label13.TabIndex = 8 + Me.Label13.Text = "E-Mail 2:" + ' + 'Label11 + ' + Me.Label11.AutoSize = True + Me.Label11.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label11.Location = New System.Drawing.Point(3, 97) + Me.Label11.Name = "Label11" + Me.Label11.Size = New System.Drawing.Size(39, 13) + Me.Label11.TabIndex = 6 + Me.Label11.Text = "E-Mail:" + ' + 'txtEmail2 + ' + Me.txtEmail2.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.txtEmail2.Location = New System.Drawing.Point(107, 120) + Me.txtEmail2.MaxLength = 40 + Me.txtEmail2.Name = "txtEmail2" + Me.txtEmail2.Size = New System.Drawing.Size(333, 20) + Me.txtEmail2.TabIndex = 9 + ' + 'txtEmail + ' + Me.txtEmail.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.txtEmail.Location = New System.Drawing.Point(107, 94) + Me.txtEmail.MaxLength = 40 + Me.txtEmail.Name = "txtEmail" + Me.txtEmail.Size = New System.Drawing.Size(333, 20) + Me.txtEmail.TabIndex = 7 + ' + 'Label7 + ' + Me.Label7.AutoSize = True + Me.Label7.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label7.Location = New System.Drawing.Point(3, 40) + Me.Label7.Name = "Label7" + Me.Label7.Size = New System.Drawing.Size(27, 13) + Me.Label7.TabIndex = 2 + Me.Label7.Text = "Fax:" + ' + 'txtFax + ' + Me.txtFax.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.txtFax.Location = New System.Drawing.Point(107, 37) + Me.txtFax.MaxLength = 20 + Me.txtFax.Name = "txtFax" + Me.txtFax.Size = New System.Drawing.Size(333, 20) + Me.txtFax.TabIndex = 3 + ' + 'Label9 + ' + Me.Label9.AutoSize = True + Me.Label9.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label9.Location = New System.Drawing.Point(3, 14) + Me.Label9.Name = "Label9" + Me.Label9.Size = New System.Drawing.Size(46, 13) + Me.Label9.TabIndex = 0 + Me.Label9.Text = "Telefon:" + ' + 'txtTel + ' + Me.txtTel.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.txtTel.Location = New System.Drawing.Point(107, 11) + Me.txtTel.MaxLength = 20 + Me.txtTel.Name = "txtTel" + Me.txtTel.Size = New System.Drawing.Size(333, 20) + Me.txtTel.TabIndex = 1 + ' + 'btnFirmendatenFormularSpeichern + ' + Me.btnFirmendatenFormularSpeichern.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.btnFirmendatenFormularSpeichern.Location = New System.Drawing.Point(1081, 540) + Me.btnFirmendatenFormularSpeichern.Name = "btnFirmendatenFormularSpeichern" + Me.btnFirmendatenFormularSpeichern.Size = New System.Drawing.Size(71, 52) + Me.btnFirmendatenFormularSpeichern.TabIndex = 16 + Me.btnFirmendatenFormularSpeichern.Text = "Speichern" + Me.btnFirmendatenFormularSpeichern.UseVisualStyleBackColor = True + ' + 'lblSachbearbeiter + ' + Me.lblSachbearbeiter.AutoSize = True + Me.lblSachbearbeiter.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.lblSachbearbeiter.Location = New System.Drawing.Point(131, 581) + Me.lblSachbearbeiter.Name = "lblSachbearbeiter" + Me.lblSachbearbeiter.Size = New System.Drawing.Size(10, 13) + Me.lblSachbearbeiter.TabIndex = 13 + Me.lblSachbearbeiter.Text = "-" + ' + 'lblErfassung + ' + Me.lblErfassung.AutoSize = True + Me.lblErfassung.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.lblErfassung.Location = New System.Drawing.Point(130, 555) + Me.lblErfassung.Name = "lblErfassung" + Me.lblErfassung.Size = New System.Drawing.Size(10, 13) + Me.lblErfassung.TabIndex = 5 + Me.lblErfassung.Text = "-" + ' + 'lblAenderung + ' + Me.lblAenderung.AutoSize = True + Me.lblAenderung.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.lblAenderung.Location = New System.Drawing.Point(131, 568) + Me.lblAenderung.Name = "lblAenderung" + Me.lblAenderung.Size = New System.Drawing.Size(10, 13) + Me.lblAenderung.TabIndex = 11 + Me.lblAenderung.Text = "-" + ' + 'Label26 + ' + Me.Label26.AutoSize = True + Me.Label26.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label26.Location = New System.Drawing.Point(10, 581) + Me.Label26.Name = "Label26" + Me.Label26.Size = New System.Drawing.Size(117, 13) + Me.Label26.TabIndex = 12 + Me.Label26.Text = "Letzter Sachbearbeiter:" + ' + 'Label25 + ' + Me.Label25.AutoSize = True + Me.Label25.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label25.Location = New System.Drawing.Point(9, 555) + Me.Label25.Name = "Label25" + Me.Label25.Size = New System.Drawing.Size(91, 13) + Me.Label25.TabIndex = 4 + Me.Label25.Text = "Erfassungsdatum:" + ' + 'Label23 + ' + Me.Label23.AutoSize = True + Me.Label23.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label23.Location = New System.Drawing.Point(10, 568) + Me.Label23.Name = "Label23" + Me.Label23.Size = New System.Drawing.Size(90, 13) + Me.Label23.TabIndex = 10 + Me.Label23.Text = "Änderungsdatum:" + ' + 'Button1 + ' + Me.Button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.Button1.Location = New System.Drawing.Point(573, 546) + Me.Button1.Name = "Button1" + Me.Button1.Size = New System.Drawing.Size(98, 38) + Me.Button1.TabIndex = 14 + Me.Button1.Text = "Kundenstamm jetzt übertragen" + Me.Button1.UseVisualStyleBackColor = True + Me.Button1.Visible = False + ' + 'Label28 + ' + Me.Label28.AutoSize = True + Me.Label28.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label28.Location = New System.Drawing.Point(585, 587) + Me.Label28.Name = "Label28" + Me.Label28.Size = New System.Drawing.Size(10, 13) + Me.Label28.TabIndex = 9 + Me.Label28.Text = "-" + Me.Label28.Visible = False + ' + 'Label29 + ' + Me.Label29.AutoSize = True + Me.Label29.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label29.Location = New System.Drawing.Point(567, 530) + Me.Label29.Name = "Label29" + Me.Label29.Size = New System.Drawing.Size(109, 13) + Me.Label29.TabIndex = 8 + Me.Label29.Text = "Übertrag in DAKOSY:" + Me.Label29.Visible = False + ' + 'tbKontakt + ' + Me.tbKontakt.Controls.Add(Me.TabPage10) + Me.tbKontakt.Controls.Add(Me.TabPage11) + Me.tbKontakt.Location = New System.Drawing.Point(3, 340) + Me.tbKontakt.Name = "tbKontakt" + Me.tbKontakt.SelectedIndex = 0 + Me.tbKontakt.Size = New System.Drawing.Size(453, 201) + Me.tbKontakt.TabIndex = 2 + ' + 'TabPage10 + ' + Me.TabPage10.Controls.Add(Me.txtAnsprechpartnerAnrede) + Me.TabPage10.Controls.Add(Me.Label9) + Me.TabPage10.Controls.Add(Me.Label20) + Me.TabPage10.Controls.Add(Me.txtTel) + Me.TabPage10.Controls.Add(Me.txtMobil) + Me.TabPage10.Controls.Add(Me.txtFax) + Me.TabPage10.Controls.Add(Me.Label10) + Me.TabPage10.Controls.Add(Me.Label7) + Me.TabPage10.Controls.Add(Me.txtAnsprechpartner) + Me.TabPage10.Controls.Add(Me.txtEmail) + Me.TabPage10.Controls.Add(Me.Label13) + Me.TabPage10.Controls.Add(Me.txtEmail2) + Me.TabPage10.Controls.Add(Me.Label11) + Me.TabPage10.Location = New System.Drawing.Point(4, 22) + Me.TabPage10.Name = "TabPage10" + Me.TabPage10.Size = New System.Drawing.Size(445, 175) + Me.TabPage10.TabIndex = 2 + Me.TabPage10.Text = "Kontakt" + Me.TabPage10.UseVisualStyleBackColor = True + ' + 'TabPage11 + ' + Me.TabPage11.Controls.Add(Me.ucKundenKontakte) + Me.TabPage11.Location = New System.Drawing.Point(4, 22) + Me.TabPage11.Name = "TabPage11" + Me.TabPage11.Padding = New System.Windows.Forms.Padding(3) + Me.TabPage11.Size = New System.Drawing.Size(445, 175) + Me.TabPage11.TabIndex = 3 + Me.TabPage11.Text = "Spezifisch" + Me.TabPage11.UseVisualStyleBackColor = True + ' + 'Label50 + ' + Me.Label50.AutoSize = True + Me.Label50.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label50.Location = New System.Drawing.Point(6, 16) + Me.Label50.Name = "Label50" + Me.Label50.Size = New System.Drawing.Size(92, 13) + Me.Label50.TabIndex = 0 + Me.Label50.Text = "Zuständige Filiale:" + ' + 'Label68 + ' + Me.Label68.AutoSize = True + Me.Label68.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label68.Location = New System.Drawing.Point(6, 46) + Me.Label68.Name = "Label68" + Me.Label68.Size = New System.Drawing.Size(69, 13) + Me.Label68.TabIndex = 2 + Me.Label68.Text = "Kundenkreis:" + ' + 'pnlNeukunde + ' + Me.pnlNeukunde.Controls.Add(Me.Button2) + Me.pnlNeukunde.Controls.Add(Me.Label50) + Me.pnlNeukunde.Controls.Add(Me.cboFiliale) + Me.pnlNeukunde.Controls.Add(Me.cboKundenkreis) + Me.pnlNeukunde.Controls.Add(Me.Label68) + Me.pnlNeukunde.Location = New System.Drawing.Point(776, 530) + Me.pnlNeukunde.Name = "pnlNeukunde" + Me.pnlNeukunde.Size = New System.Drawing.Size(303, 74) + Me.pnlNeukunde.TabIndex = 15 + Me.pnlNeukunde.Visible = False + ' + 'Button2 + ' + Me.Button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.Button2.Location = New System.Drawing.Point(194, 7) + Me.Button2.Name = "Button2" + Me.Button2.Size = New System.Drawing.Size(105, 30) + Me.Button2.TabIndex = 19 + Me.Button2.Text = "Wunsch-KdNr" + Me.Button2.UseVisualStyleBackColor = True + ' + 'Label77 + ' + Me.Label77.AutoSize = True + Me.Label77.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label77.Location = New System.Drawing.Point(780, 571) + Me.Label77.Name = "Label77" + Me.Label77.Size = New System.Drawing.Size(64, 13) + Me.Label77.TabIndex = 6 + Me.Label77.Text = "Kunden-Nr.:" + ' + 'lblKundennr + ' + Me.lblKundennr.AutoSize = True + Me.lblKundennr.Font = New System.Drawing.Font("Microsoft Sans Serif", 10.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.lblKundennr.Location = New System.Drawing.Point(850, 569) + Me.lblKundennr.Name = "lblKundennr" + Me.lblKundennr.Size = New System.Drawing.Size(14, 17) + Me.lblKundennr.TabIndex = 7 + Me.lblKundennr.Text = "-" + ' + 'Label79 + ' + Me.Label79.AutoSize = True + Me.Label79.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label79.Location = New System.Drawing.Point(780, 541) + Me.Label79.Name = "Label79" + Me.Label79.Size = New System.Drawing.Size(40, 13) + Me.Label79.TabIndex = 4 + Me.Label79.Text = "Status:" + ' + 'Label80 + ' + Me.Label80.AutoSize = True + Me.Label80.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label80.Location = New System.Drawing.Point(278, 560) + Me.Label80.Name = "Label80" + Me.Label80.Size = New System.Drawing.Size(59, 13) + Me.Label80.TabIndex = 4 + Me.Label80.Text = "Firma FiBu:" + ' + 'cbxFiBu + ' + Me.cbxFiBu.AutoSize = True + Me.cbxFiBu.Enabled = False + Me.cbxFiBu.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.cbxFiBu.Location = New System.Drawing.Point(400, 559) + Me.cbxFiBu.Name = "cbxFiBu" + Me.cbxFiBu.Size = New System.Drawing.Size(47, 17) + Me.cbxFiBu.TabIndex = 17 + Me.cbxFiBu.Text = "FiBu" + Me.cbxFiBu.UseVisualStyleBackColor = True + ' + 'cbxFiBuLG + ' + Me.cbxFiBuLG.AutoSize = True + Me.cbxFiBuLG.Enabled = False + Me.cbxFiBuLG.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.cbxFiBuLG.Location = New System.Drawing.Point(400, 580) + Me.cbxFiBuLG.Name = "cbxFiBuLG" + Me.cbxFiBuLG.Size = New System.Drawing.Size(64, 17) + Me.cbxFiBuLG.TabIndex = 18 + Me.cbxFiBuLG.Text = "FiBu LG" + Me.cbxFiBuLG.UseVisualStyleBackColor = True + Me.cbxFiBuLG.Visible = False + ' + 'Label97 + ' + Me.Label97.AutoSize = True + Me.Label97.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label97.Location = New System.Drawing.Point(463, 530) + Me.Label97.Name = "Label97" + Me.Label97.Size = New System.Drawing.Size(100, 13) + Me.Label97.TabIndex = 19 + Me.Label97.Text = "Übertrag in SYSKA:" + Me.Label97.Visible = False + ' + 'Button4 + ' + Me.Button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.Button4.Location = New System.Drawing.Point(466, 546) + Me.Button4.Name = "Button4" + Me.Button4.Size = New System.Drawing.Size(101, 38) + Me.Button4.TabIndex = 21 + Me.Button4.Text = "Kundenstamm jetzt übertragen" + Me.Button4.UseVisualStyleBackColor = True + Me.Button4.Visible = False + ' + 'CheckBox1 + ' + Me.CheckBox1.AutoSize = True + Me.CheckBox1.Checked = True + Me.CheckBox1.CheckState = System.Windows.Forms.CheckState.Checked + Me.CheckBox1.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.CheckBox1.Location = New System.Drawing.Point(466, 586) + Me.CheckBox1.Name = "CheckBox1" + Me.CheckBox1.Size = New System.Drawing.Size(101, 17) + Me.CheckBox1.TabIndex = 22 + Me.CheckBox1.Text = "zuvor speichern" + Me.CheckBox1.UseVisualStyleBackColor = True + Me.CheckBox1.Visible = False + ' + 'txtERROR + ' + Me.txtERROR.BackColor = System.Drawing.SystemColors.Window + Me.txtERROR.BorderStyle = System.Windows.Forms.BorderStyle.None + Me.txtERROR.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.txtERROR.ForeColor = System.Drawing.Color.Red + Me.txtERROR.Location = New System.Drawing.Point(13, 596) + Me.txtERROR.MaxLength = 9999 + Me.txtERROR.Multiline = True + Me.txtERROR.Name = "txtERROR" + Me.txtERROR.Size = New System.Drawing.Size(443, 30) + Me.txtERROR.TabIndex = 17 + ' + 'btnDatevExport + ' + Me.btnDatevExport.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.btnDatevExport.Location = New System.Drawing.Point(678, 546) + Me.btnDatevExport.Name = "btnDatevExport" + Me.btnDatevExport.Size = New System.Drawing.Size(93, 38) + Me.btnDatevExport.TabIndex = 23 + Me.btnDatevExport.Text = "Kundenstamm jetzt übertragen" + Me.btnDatevExport.UseVisualStyleBackColor = True + Me.btnDatevExport.Visible = False + ' + 'Label98 + ' + Me.Label98.AutoSize = True + Me.Label98.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label98.Location = New System.Drawing.Point(675, 530) + Me.Label98.Name = "Label98" + Me.Label98.Size = New System.Drawing.Size(101, 13) + Me.Label98.TabIndex = 24 + Me.Label98.Text = "Übertrag in DATEV:" + Me.Label98.Visible = False + ' + 'cnsBankverbindungen + ' + Me.cnsBankverbindungen.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ArchivierenToolStripMenuItem, Me.DokumentHinzufügenToolStripMenuItem, Me.DokumentLöschenToolStripMenuItem}) + Me.cnsBankverbindungen.Name = "cnsBankverbindungen" + Me.cnsBankverbindungen.Size = New System.Drawing.Size(194, 70) + ' + 'ArchivierenToolStripMenuItem + ' + Me.ArchivierenToolStripMenuItem.Image = Global.SDL.My.Resources.Resources.stift1 + Me.ArchivierenToolStripMenuItem.Name = "ArchivierenToolStripMenuItem" + Me.ArchivierenToolStripMenuItem.Size = New System.Drawing.Size(193, 22) + Me.ArchivierenToolStripMenuItem.Text = "Bank schließen" + Me.ArchivierenToolStripMenuItem.Visible = False + ' + 'DokumentHinzufügenToolStripMenuItem + ' + Me.DokumentHinzufügenToolStripMenuItem.Image = Global.SDL.My.Resources.Resources.pdf_s + Me.DokumentHinzufügenToolStripMenuItem.Name = "DokumentHinzufügenToolStripMenuItem" + Me.DokumentHinzufügenToolStripMenuItem.Size = New System.Drawing.Size(193, 22) + Me.DokumentHinzufügenToolStripMenuItem.Text = "Dokument hinzufügen" + ' + 'DokumentLöschenToolStripMenuItem + ' + Me.DokumentLöschenToolStripMenuItem.Image = Global.SDL.My.Resources.Resources.del + Me.DokumentLöschenToolStripMenuItem.Name = "DokumentLöschenToolStripMenuItem" + Me.DokumentLöschenToolStripMenuItem.Size = New System.Drawing.Size(193, 22) + Me.DokumentLöschenToolStripMenuItem.Text = "Dokument löschen" + ' + 'cbxkeineMWSt + ' + Me.cbxkeineMWSt.AutoSize = True + Me.cbxkeineMWSt.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.cbxkeineMWSt.Location = New System.Drawing.Point(292, 182) + Me.cbxkeineMWSt.Name = "cbxkeineMWSt" + Me.cbxkeineMWSt.Size = New System.Drawing.Size(117, 17) + Me.cbxkeineMWSt.TabIndex = 136 + Me.cbxkeineMWSt.Text = "kein MWST-Kunde" + Me.cbxkeineMWSt.UseVisualStyleBackColor = True + ' + 'cboFiliale + ' + Me.cboFiliale._allowedValuesFreiText = Nothing + Me.cboFiliale._allowFreiText = False + Me.cboFiliale._value = "" + Me.cboFiliale.BackColor = System.Drawing.Color.FromArgb(CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer)) + Me.cboFiliale.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.cboFiliale.DropDownWidth = 400 + Me.cboFiliale.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.cboFiliale.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.cboFiliale.FormattingEnabled = True + Me.cboFiliale.Location = New System.Drawing.Point(104, 8) + Me.cboFiliale.Name = "cboFiliale" + Me.cboFiliale.Size = New System.Drawing.Size(84, 28) + Me.cboFiliale.TabIndex = 1 + ' + 'cboKundenkreis + ' + Me.cboKundenkreis._allowedValuesFreiText = Nothing + Me.cboKundenkreis._allowFreiText = False + Me.cboKundenkreis._value = "" + Me.cboKundenkreis.BackColor = System.Drawing.Color.FromArgb(CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer)) + Me.cboKundenkreis.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.cboKundenkreis.DropDownWidth = 400 + Me.cboKundenkreis.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.cboKundenkreis.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.cboKundenkreis.FormattingEnabled = True + Me.cboKundenkreis.Items.AddRange(New Object() {"", "100000-199999: XXXXXX", "200000-299999: XXXXXX", "300000-399999: XXXXXX", "400000-499999: XXXXXX", "500000-599999: XXXXXX", "600000-699999: XXXXXX", "700000-799999: XXXXXX", "800000-899999: XXXXXX", "900000-999999: XXXXXX"}) + Me.cboKundenkreis.Location = New System.Drawing.Point(104, 38) + Me.cboKundenkreis.Name = "cboKundenkreis" + Me.cboKundenkreis.Size = New System.Drawing.Size(195, 28) + Me.cboKundenkreis.TabIndex = 3 + ' + 'cboFirma + ' + Me.cboFirma._allowedValuesFreiText = Nothing + Me.cboFirma._allowFreiText = False + Me.cboFirma._value = "" + Me.cboFirma.BackColor = System.Drawing.Color.FromArgb(CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer)) + Me.cboFirma.DropDownHeight = 350 + Me.cboFirma.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.cboFirma.DropDownWidth = 400 + Me.cboFirma.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.cboFirma.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.cboFirma.FormattingEnabled = True + Me.cboFirma.IntegralHeight = False + Me.cboFirma.Location = New System.Drawing.Point(342, 552) + Me.cboFirma.Name = "cboFirma" + Me.cboFirma.Size = New System.Drawing.Size(49, 28) + Me.cboFirma.TabIndex = 5 + ' + 'cboAuswahl + ' + Me.cboAuswahl._allowedValuesFreiText = Nothing + Me.cboAuswahl._allowFreiText = False + Me.cboAuswahl._value = "" + Me.cboAuswahl.BackColor = System.Drawing.Color.FromArgb(CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer)) + Me.cboAuswahl.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.cboAuswahl.DropDownWidth = 400 + Me.cboAuswahl.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.cboAuswahl.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.cboAuswahl.FormattingEnabled = True + Me.cboAuswahl.Location = New System.Drawing.Point(826, 533) + Me.cboAuswahl.Name = "cboAuswahl" + Me.cboAuswahl.Size = New System.Drawing.Size(124, 28) + Me.cboAuswahl.TabIndex = 5 + ' + 'txtAbf_Planzahl + ' + Me.txtAbf_Planzahl._DateTimeOnly = False + Me.txtAbf_Planzahl._numbersOnly = False + Me.txtAbf_Planzahl._numbersOnlyKommastellen = "" + Me.txtAbf_Planzahl._numbersOnlyTrennzeichen = True + Me.txtAbf_Planzahl._Prozent = False + Me.txtAbf_Planzahl._ShortDateNew = False + Me.txtAbf_Planzahl._ShortDateOnly = False + Me.txtAbf_Planzahl._TimeOnly = False + Me.txtAbf_Planzahl._TimeOnly_Seconds = False + Me.txtAbf_Planzahl._value = Nothing + Me.txtAbf_Planzahl._Waehrung = False + Me.txtAbf_Planzahl._WaehrungZeichen = True + Me.txtAbf_Planzahl.ForeColor = System.Drawing.Color.Black + Me.txtAbf_Planzahl.Location = New System.Drawing.Point(526, 248) + Me.txtAbf_Planzahl.MaxLineLength = -1 + Me.txtAbf_Planzahl.MaxLines_Warning = "" + Me.txtAbf_Planzahl.MaxLines_Warning_Label = Nothing + Me.txtAbf_Planzahl.Name = "txtAbf_Planzahl" + Me.txtAbf_Planzahl.Size = New System.Drawing.Size(60, 20) + Me.txtAbf_Planzahl.TabIndex = 15 + ' + 'txtAbfVerb_RechtsanwaltSeit + ' + Me.txtAbfVerb_RechtsanwaltSeit._DateTimeOnly = False + Me.txtAbfVerb_RechtsanwaltSeit._numbersOnly = False + Me.txtAbfVerb_RechtsanwaltSeit._numbersOnlyKommastellen = "" + Me.txtAbfVerb_RechtsanwaltSeit._numbersOnlyTrennzeichen = True + Me.txtAbfVerb_RechtsanwaltSeit._Prozent = False + Me.txtAbfVerb_RechtsanwaltSeit._ShortDateNew = True + Me.txtAbfVerb_RechtsanwaltSeit._ShortDateOnly = False + Me.txtAbfVerb_RechtsanwaltSeit._TimeOnly = False + Me.txtAbfVerb_RechtsanwaltSeit._TimeOnly_Seconds = False + Me.txtAbfVerb_RechtsanwaltSeit._value = "" + Me.txtAbfVerb_RechtsanwaltSeit._Waehrung = False + Me.txtAbfVerb_RechtsanwaltSeit._WaehrungZeichen = True + Me.txtAbfVerb_RechtsanwaltSeit.Enabled = False + Me.txtAbfVerb_RechtsanwaltSeit.ForeColor = System.Drawing.Color.Red + Me.txtAbfVerb_RechtsanwaltSeit.Location = New System.Drawing.Point(173, 33) + Me.txtAbfVerb_RechtsanwaltSeit.MaxLength = 10 + Me.txtAbfVerb_RechtsanwaltSeit.MaxLineLength = -1 + Me.txtAbfVerb_RechtsanwaltSeit.MaxLines_Warning = "" + Me.txtAbfVerb_RechtsanwaltSeit.MaxLines_Warning_Label = Nothing + Me.txtAbfVerb_RechtsanwaltSeit.Name = "txtAbfVerb_RechtsanwaltSeit" + Me.txtAbfVerb_RechtsanwaltSeit.Size = New System.Drawing.Size(60, 20) + Me.txtAbfVerb_RechtsanwaltSeit.TabIndex = 6 + Me.txtAbfVerb_RechtsanwaltSeit.TextAlign = System.Windows.Forms.HorizontalAlignment.Right + ' + 'txtAbfVerb_AbfertigungsverbotSeit + ' + Me.txtAbfVerb_AbfertigungsverbotSeit._DateTimeOnly = False + Me.txtAbfVerb_AbfertigungsverbotSeit._numbersOnly = False + Me.txtAbfVerb_AbfertigungsverbotSeit._numbersOnlyKommastellen = "" + Me.txtAbfVerb_AbfertigungsverbotSeit._numbersOnlyTrennzeichen = True + Me.txtAbfVerb_AbfertigungsverbotSeit._Prozent = False + Me.txtAbfVerb_AbfertigungsverbotSeit._ShortDateNew = True + Me.txtAbfVerb_AbfertigungsverbotSeit._ShortDateOnly = True + Me.txtAbfVerb_AbfertigungsverbotSeit._TimeOnly = False + Me.txtAbfVerb_AbfertigungsverbotSeit._TimeOnly_Seconds = False + Me.txtAbfVerb_AbfertigungsverbotSeit._value = "" + Me.txtAbfVerb_AbfertigungsverbotSeit._Waehrung = False + Me.txtAbfVerb_AbfertigungsverbotSeit._WaehrungZeichen = True + Me.txtAbfVerb_AbfertigungsverbotSeit.Enabled = False + Me.txtAbfVerb_AbfertigungsverbotSeit.ForeColor = System.Drawing.Color.Red + Me.txtAbfVerb_AbfertigungsverbotSeit.Location = New System.Drawing.Point(173, 7) + Me.txtAbfVerb_AbfertigungsverbotSeit.MaxLength = 10 + Me.txtAbfVerb_AbfertigungsverbotSeit.MaxLineLength = -1 + Me.txtAbfVerb_AbfertigungsverbotSeit.MaxLines_Warning = "" + Me.txtAbfVerb_AbfertigungsverbotSeit.MaxLines_Warning_Label = Nothing + Me.txtAbfVerb_AbfertigungsverbotSeit.Name = "txtAbfVerb_AbfertigungsverbotSeit" + Me.txtAbfVerb_AbfertigungsverbotSeit.Size = New System.Drawing.Size(60, 20) + Me.txtAbfVerb_AbfertigungsverbotSeit.TabIndex = 2 + Me.txtAbfVerb_AbfertigungsverbotSeit.TextAlign = System.Windows.Forms.HorizontalAlignment.Right + ' + 'txtAbf_ZollVmVom + ' + Me.txtAbf_ZollVmVom._DateTimeOnly = False + Me.txtAbf_ZollVmVom._numbersOnly = False + Me.txtAbf_ZollVmVom._numbersOnlyKommastellen = "" + Me.txtAbf_ZollVmVom._numbersOnlyTrennzeichen = True + Me.txtAbf_ZollVmVom._Prozent = False + Me.txtAbf_ZollVmVom._ShortDateNew = True + Me.txtAbf_ZollVmVom._ShortDateOnly = False + Me.txtAbf_ZollVmVom._TimeOnly = False + Me.txtAbf_ZollVmVom._TimeOnly_Seconds = False + Me.txtAbf_ZollVmVom._value = "" + Me.txtAbf_ZollVmVom._Waehrung = False + Me.txtAbf_ZollVmVom._WaehrungZeichen = True + Me.txtAbf_ZollVmVom.Enabled = False + Me.txtAbf_ZollVmVom.ForeColor = System.Drawing.Color.Red + Me.txtAbf_ZollVmVom.Location = New System.Drawing.Point(152, 44) + Me.txtAbf_ZollVmVom.MaxLength = 10 + Me.txtAbf_ZollVmVom.MaxLineLength = -1 + Me.txtAbf_ZollVmVom.MaxLines_Warning = "" + Me.txtAbf_ZollVmVom.MaxLines_Warning_Label = Nothing + Me.txtAbf_ZollVmVom.Name = "txtAbf_ZollVmVom" + Me.txtAbf_ZollVmVom.Size = New System.Drawing.Size(60, 20) + Me.txtAbf_ZollVmVom.TabIndex = 3 + ' + 'txtAbf_Euroeinführung + ' + Me.txtAbf_Euroeinführung._DateTimeOnly = False + Me.txtAbf_Euroeinführung._numbersOnly = False + Me.txtAbf_Euroeinführung._numbersOnlyKommastellen = "" + Me.txtAbf_Euroeinführung._numbersOnlyTrennzeichen = True + Me.txtAbf_Euroeinführung._Prozent = False + Me.txtAbf_Euroeinführung._ShortDateNew = True + Me.txtAbf_Euroeinführung._ShortDateOnly = False + Me.txtAbf_Euroeinführung._TimeOnly = False + Me.txtAbf_Euroeinführung._TimeOnly_Seconds = False + Me.txtAbf_Euroeinführung._value = "" + Me.txtAbf_Euroeinführung._Waehrung = False + Me.txtAbf_Euroeinführung._WaehrungZeichen = True + Me.txtAbf_Euroeinführung.ForeColor = System.Drawing.Color.Red + Me.txtAbf_Euroeinführung.Location = New System.Drawing.Point(375, 165) + Me.txtAbf_Euroeinführung.MaxLength = 10 + Me.txtAbf_Euroeinführung.MaxLineLength = -1 + Me.txtAbf_Euroeinführung.MaxLines_Warning = "" + Me.txtAbf_Euroeinführung.MaxLines_Warning_Label = Nothing + Me.txtAbf_Euroeinführung.Name = "txtAbf_Euroeinführung" + Me.txtAbf_Euroeinführung.Size = New System.Drawing.Size(60, 20) + Me.txtAbf_Euroeinführung.TabIndex = 4 + Me.txtAbf_Euroeinführung.Visible = False + ' + 'txtAbf_ErsteAbfertigung + ' + Me.txtAbf_ErsteAbfertigung._DateTimeOnly = False + Me.txtAbf_ErsteAbfertigung._numbersOnly = False + Me.txtAbf_ErsteAbfertigung._numbersOnlyKommastellen = "" + Me.txtAbf_ErsteAbfertigung._numbersOnlyTrennzeichen = True + Me.txtAbf_ErsteAbfertigung._Prozent = False + Me.txtAbf_ErsteAbfertigung._ShortDateNew = True + Me.txtAbf_ErsteAbfertigung._ShortDateOnly = False + Me.txtAbf_ErsteAbfertigung._TimeOnly = False + Me.txtAbf_ErsteAbfertigung._TimeOnly_Seconds = False + Me.txtAbf_ErsteAbfertigung._value = "" + Me.txtAbf_ErsteAbfertigung._Waehrung = False + Me.txtAbf_ErsteAbfertigung._WaehrungZeichen = True + Me.txtAbf_ErsteAbfertigung.ForeColor = System.Drawing.Color.Red + Me.txtAbf_ErsteAbfertigung.Location = New System.Drawing.Point(216, 162) + Me.txtAbf_ErsteAbfertigung.MaxLength = 10 + Me.txtAbf_ErsteAbfertigung.MaxLineLength = -1 + Me.txtAbf_ErsteAbfertigung.MaxLines_Warning = "" + Me.txtAbf_ErsteAbfertigung.MaxLines_Warning_Label = Nothing + Me.txtAbf_ErsteAbfertigung.Name = "txtAbf_ErsteAbfertigung" + Me.txtAbf_ErsteAbfertigung.Size = New System.Drawing.Size(60, 20) + Me.txtAbf_ErsteAbfertigung.TabIndex = 13 + Me.txtAbf_ErsteAbfertigung.Visible = False + ' + 'cbxKapitalWaehrung + ' + Me.cbxKapitalWaehrung._allowedValuesFreiText = Nothing + Me.cbxKapitalWaehrung._allowFreiText = False + Me.cbxKapitalWaehrung._value = "" + Me.cbxKapitalWaehrung.BackColor = System.Drawing.Color.FromArgb(CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer)) + Me.cbxKapitalWaehrung.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.cbxKapitalWaehrung.DropDownWidth = 200 + Me.cbxKapitalWaehrung.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.cbxKapitalWaehrung.ForeColor = System.Drawing.Color.Black + Me.cbxKapitalWaehrung.FormattingEnabled = True + Me.cbxKapitalWaehrung.Location = New System.Drawing.Point(191, 293) + Me.cbxKapitalWaehrung.Name = "cbxKapitalWaehrung" + Me.cbxKapitalWaehrung.Size = New System.Drawing.Size(47, 21) + Me.cbxKapitalWaehrung.TabIndex = 45 + ' + 'txtKapital + ' + Me.txtKapital._DateTimeOnly = False + Me.txtKapital._numbersOnly = True + Me.txtKapital._numbersOnlyKommastellen = "" + Me.txtKapital._numbersOnlyTrennzeichen = False + Me.txtKapital._Prozent = False + Me.txtKapital._ShortDateNew = False + Me.txtKapital._ShortDateOnly = False + Me.txtKapital._TimeOnly = False + Me.txtKapital._TimeOnly_Seconds = False + Me.txtKapital._value = "" + Me.txtKapital._Waehrung = True + Me.txtKapital._WaehrungZeichen = False + Me.txtKapital.ForeColor = System.Drawing.Color.Red + Me.txtKapital.Location = New System.Drawing.Point(76, 293) + Me.txtKapital.MaxLength = 10 + Me.txtKapital.MaxLineLength = -1 + Me.txtKapital.MaxLines_Warning = "" + Me.txtKapital.MaxLines_Warning_Label = Nothing + Me.txtKapital.Name = "txtKapital" + Me.txtKapital.Size = New System.Drawing.Size(109, 20) + Me.txtKapital.TabIndex = 44 + Me.txtKapital.TextAlign = System.Windows.Forms.HorizontalAlignment.Right + ' + 'txtAbwZZVL + ' + Me.txtAbwZZVL._DateTimeOnly = False + Me.txtAbwZZVL._numbersOnly = True + Me.txtAbwZZVL._numbersOnlyKommastellen = "" + Me.txtAbwZZVL._numbersOnlyTrennzeichen = True + Me.txtAbwZZVL._Prozent = False + Me.txtAbwZZVL._ShortDateNew = False + Me.txtAbwZZVL._ShortDateOnly = False + Me.txtAbwZZVL._TimeOnly = False + Me.txtAbwZZVL._TimeOnly_Seconds = False + Me.txtAbwZZVL._value = "" + Me.txtAbwZZVL._Waehrung = False + Me.txtAbwZZVL._WaehrungZeichen = True + Me.txtAbwZZVL.ForeColor = System.Drawing.Color.Red + Me.txtAbwZZVL.Location = New System.Drawing.Point(191, 66) + Me.txtAbwZZVL.MaxLength = 10 + Me.txtAbwZZVL.MaxLineLength = -1 + Me.txtAbwZZVL.MaxLines_Warning = "" + Me.txtAbwZZVL.MaxLines_Warning_Label = Nothing + Me.txtAbwZZVL.Name = "txtAbwZZVL" + Me.txtAbwZZVL.Size = New System.Drawing.Size(60, 20) + Me.txtAbwZZVL.TabIndex = 41 + Me.txtAbwZZVL.TextAlign = System.Windows.Forms.HorizontalAlignment.Right + ' 'cboRechnungSprache ' Me.cboRechnungSprache._allowedValuesFreiText = Nothing @@ -1892,91 +4012,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.txtAbf_Zahlungsziel.TabIndex = 18 Me.txtAbf_Zahlungsziel.TextAlign = System.Windows.Forms.HorizontalAlignment.Right ' - 'tbVersicherung - ' - Me.tbVersicherung.Controls.Add(Me.cbxBlanko) - Me.tbVersicherung.Controls.Add(Me.Label105) - Me.tbVersicherung.Controls.Add(Me.txtWechselErhaltenAm) - Me.tbVersicherung.Controls.Add(Me.Label106) - Me.tbVersicherung.Controls.Add(Me.Label107) - Me.tbVersicherung.Controls.Add(Me.txtWechselGueltigBis) - Me.tbVersicherung.Controls.Add(Me.txtWechsel) - Me.tbVersicherung.Controls.Add(Me.Label104) - Me.tbVersicherung.Controls.Add(Me.txtBankgarantieErhaltenAm) - Me.tbVersicherung.Controls.Add(Me.Label81) - Me.tbVersicherung.Controls.Add(Me.Label82) - Me.tbVersicherung.Controls.Add(Me.cbxInkassoUebergeben) - Me.tbVersicherung.Controls.Add(Me.Label1) - Me.tbVersicherung.Controls.Add(Me.Label35) - Me.tbVersicherung.Controls.Add(Me.Label27) - Me.tbVersicherung.Controls.Add(Me.Label24) - Me.tbVersicherung.Controls.Add(Me.cbxNichtVersicherbar) - Me.tbVersicherung.Controls.Add(Me.Label17) - Me.tbVersicherung.Controls.Add(Me.Label8) - Me.tbVersicherung.Controls.Add(Me.cbxAnerkVersFall) - Me.tbVersicherung.Controls.Add(Me.Label2) - Me.tbVersicherung.Controls.Add(Me.cbxVersicherungUebergeben) - Me.tbVersicherung.Controls.Add(Me.Label6) - Me.tbVersicherung.Controls.Add(Me.cbxDeckungsstopp) - Me.tbVersicherung.Controls.Add(Me.Label61) - Me.tbVersicherung.Controls.Add(Me.txtVers_Information) - Me.tbVersicherung.Controls.Add(Me.Label59) - Me.tbVersicherung.Controls.Add(Me.Label57) - Me.tbVersicherung.Controls.Add(Me.Label55) - Me.tbVersicherung.Controls.Add(Me.Label60) - Me.tbVersicherung.Controls.Add(Me.Label58) - Me.tbVersicherung.Controls.Add(Me.Label53) - Me.tbVersicherung.Controls.Add(Me.Label56) - Me.tbVersicherung.Controls.Add(Me.Label54) - Me.tbVersicherung.Controls.Add(Me.Label52) - Me.tbVersicherung.Controls.Add(Me.Label51) - Me.tbVersicherung.Controls.Add(Me.txtInkasso_GemeldeterBetrag) - Me.tbVersicherung.Controls.Add(Me.txtInkassoUebergebenAm) - Me.tbVersicherung.Controls.Add(Me.txtVers_EHNr) - Me.tbVersicherung.Controls.Add(Me.txtAnerkVersFallAb) - Me.tbVersicherung.Controls.Add(Me.txtVersicherung_GemeldeterBetrag) - Me.tbVersicherung.Controls.Add(Me.txtVersUebergebenOPSaldo) - Me.tbVersicherung.Controls.Add(Me.txtVersicherungDeckungsquote) - Me.tbVersicherung.Controls.Add(Me.txtAnerkVersFallAm) - Me.tbVersicherung.Controls.Add(Me.txtVersicherungUebergebenAm) - Me.tbVersicherung.Controls.Add(Me.txtDeckungsstoppDatum) - Me.tbVersicherung.Controls.Add(Me.txtVers_BankgarantiebetragGueltigBis) - Me.tbVersicherung.Controls.Add(Me.txtVers_KreditlimitVon) - Me.tbVersicherung.Controls.Add(Me.txtVers_Saldo) - Me.tbVersicherung.Controls.Add(Me.txtVers_VersicherungssummeVon) - Me.tbVersicherung.Controls.Add(Me.txtVers_Bankgarantiebetrag) - Me.tbVersicherung.Controls.Add(Me.txtVers_Kreditlimit) - Me.tbVersicherung.Controls.Add(Me.txtVers_AntragssummeVon) - Me.tbVersicherung.Controls.Add(Me.txtVers_Versicherungssumme) - Me.tbVersicherung.Controls.Add(Me.txtVers_Antragssumme) - Me.tbVersicherung.Controls.Add(Me.txtVers_HermesRefNr) - Me.tbVersicherung.Location = New System.Drawing.Point(4, 22) - Me.tbVersicherung.Name = "tbVersicherung" - Me.tbVersicherung.Padding = New System.Windows.Forms.Padding(3) - Me.tbVersicherung.Size = New System.Drawing.Size(672, 495) - Me.tbVersicherung.TabIndex = 1 - Me.tbVersicherung.Text = "Versicherung" - Me.tbVersicherung.UseVisualStyleBackColor = True - ' - 'cbxBlanko - ' - Me.cbxBlanko.AutoSize = True - Me.cbxBlanko.Location = New System.Drawing.Point(91, 280) - Me.cbxBlanko.Name = "cbxBlanko" - Me.cbxBlanko.Size = New System.Drawing.Size(59, 17) - Me.cbxBlanko.TabIndex = 55 - Me.cbxBlanko.Text = "Blanko" - Me.cbxBlanko.UseVisualStyleBackColor = True - ' - 'Label105 - ' - Me.Label105.AutoSize = True - Me.Label105.Location = New System.Drawing.Point(419, 280) - Me.Label105.Name = "Label105" - Me.Label105.Size = New System.Drawing.Size(65, 13) - Me.Label105.TabIndex = 53 - Me.Label105.Text = "erhalten am:" - ' 'txtWechselErhaltenAm ' Me.txtWechselErhaltenAm._DateTimeOnly = False @@ -2002,25 +4037,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.txtWechselErhaltenAm.TabIndex = 54 Me.txtWechselErhaltenAm.TextAlign = System.Windows.Forms.HorizontalAlignment.Right ' - 'Label106 - ' - Me.Label106.AutoSize = True - Me.Label106.Location = New System.Drawing.Point(281, 281) - Me.Label106.Name = "Label106" - Me.Label106.Size = New System.Drawing.Size(51, 13) - Me.Label106.TabIndex = 51 - Me.Label106.Text = "gültig bis:" - ' - 'Label107 - ' - Me.Label107.AutoSize = True - Me.Label107.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label107.Location = New System.Drawing.Point(4, 281) - Me.Label107.Name = "Label107" - Me.Label107.Size = New System.Drawing.Size(52, 13) - Me.Label107.TabIndex = 49 - Me.Label107.Text = "Wechsel:" - ' 'txtWechselGueltigBis ' Me.txtWechselGueltigBis._DateTimeOnly = False @@ -2070,15 +4086,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.txtWechsel.TabIndex = 50 Me.txtWechsel.TextAlign = System.Windows.Forms.HorizontalAlignment.Right ' - 'Label104 - ' - Me.Label104.AutoSize = True - Me.Label104.Location = New System.Drawing.Point(419, 255) - Me.Label104.Name = "Label104" - Me.Label104.Size = New System.Drawing.Size(65, 13) - Me.Label104.TabIndex = 47 - Me.Label104.Text = "erhalten am:" - ' 'txtBankgarantieErhaltenAm ' Me.txtBankgarantieErhaltenAm._DateTimeOnly = False @@ -2104,261 +4111,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.txtBankgarantieErhaltenAm.TabIndex = 48 Me.txtBankgarantieErhaltenAm.TextAlign = System.Windows.Forms.HorizontalAlignment.Right ' - 'Label81 - ' - Me.Label81.AutoSize = True - Me.Label81.Location = New System.Drawing.Point(419, 168) - Me.Label81.Name = "Label81" - Me.Label81.Size = New System.Drawing.Size(98, 13) - Me.Label81.TabIndex = 45 - Me.Label81.Text = "Gemeldeter Betrag:" - ' - 'Label82 - ' - Me.Label82.AutoSize = True - Me.Label82.Location = New System.Drawing.Point(311, 168) - Me.Label82.Name = "Label82" - Me.Label82.Size = New System.Drawing.Size(24, 13) - Me.Label82.TabIndex = 43 - Me.Label82.Text = "am:" - ' - 'cbxInkassoUebergeben - ' - Me.cbxInkassoUebergeben.AutoSize = True - Me.cbxInkassoUebergeben.Location = New System.Drawing.Point(159, 167) - Me.cbxInkassoUebergeben.Name = "cbxInkassoUebergeben" - Me.cbxInkassoUebergeben.Size = New System.Drawing.Size(156, 17) - Me.cbxInkassoUebergeben.TabIndex = 42 - Me.cbxInkassoUebergeben.Text = "Acredia Inkasso übergeben" - Me.cbxInkassoUebergeben.UseVisualStyleBackColor = True - ' - 'Label1 - ' - Me.Label1.AutoSize = True - Me.Label1.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label1.Location = New System.Drawing.Point(353, 9) - Me.Label1.Name = "Label1" - Me.Label1.Size = New System.Drawing.Size(67, 13) - Me.Label1.TabIndex = 40 - Me.Label1.Text = "EH-Nummer:" - ' - 'Label35 - ' - Me.Label35.AutoSize = True - Me.Label35.Location = New System.Drawing.Point(419, 142) - Me.Label35.Name = "Label35" - Me.Label35.Size = New System.Drawing.Size(22, 13) - Me.Label35.TabIndex = 22 - Me.Label35.Text = "ab:" - ' - 'Label27 - ' - Me.Label27.AutoSize = True - Me.Label27.Location = New System.Drawing.Point(419, 116) - Me.Label27.Name = "Label27" - Me.Label27.Size = New System.Drawing.Size(98, 13) - Me.Label27.TabIndex = 17 - Me.Label27.Text = "Gemeldeter Betrag:" - ' - 'Label24 - ' - Me.Label24.AutoSize = True - Me.Label24.Location = New System.Drawing.Point(419, 89) - Me.Label24.Name = "Label24" - Me.Label24.Size = New System.Drawing.Size(55, 13) - Me.Label24.TabIndex = 12 - Me.Label24.Text = "OP-Saldo:" - Me.Label24.Visible = False - ' - 'cbxNichtVersicherbar - ' - Me.cbxNichtVersicherbar.AutoSize = True - Me.cbxNichtVersicherbar.Location = New System.Drawing.Point(159, 39) - Me.cbxNichtVersicherbar.Name = "cbxNichtVersicherbar" - Me.cbxNichtVersicherbar.Size = New System.Drawing.Size(142, 17) - Me.cbxNichtVersicherbar.TabIndex = 2 - Me.cbxNichtVersicherbar.Text = "nicht (mehr) versicherbar" - Me.cbxNichtVersicherbar.UseVisualStyleBackColor = True - ' - 'Label17 - ' - Me.Label17.AutoSize = True - Me.Label17.Location = New System.Drawing.Point(419, 65) - Me.Label17.Name = "Label17" - Me.Label17.Size = New System.Drawing.Size(86, 13) - Me.Label17.TabIndex = 7 - Me.Label17.Text = "Deckungsquote:" - ' - 'Label8 - ' - Me.Label8.AutoSize = True - Me.Label8.Location = New System.Drawing.Point(311, 142) - Me.Label8.Name = "Label8" - Me.Label8.Size = New System.Drawing.Size(24, 13) - Me.Label8.TabIndex = 20 - Me.Label8.Text = "am:" - ' - 'cbxAnerkVersFall - ' - Me.cbxAnerkVersFall.AutoSize = True - Me.cbxAnerkVersFall.Location = New System.Drawing.Point(159, 141) - Me.cbxAnerkVersFall.Name = "cbxAnerkVersFall" - Me.cbxAnerkVersFall.Size = New System.Drawing.Size(130, 17) - Me.cbxAnerkVersFall.TabIndex = 19 - Me.cbxAnerkVersFall.Text = "Anerkennung Vers.fall" - Me.cbxAnerkVersFall.UseVisualStyleBackColor = True - ' - 'Label2 - ' - Me.Label2.AutoSize = True - Me.Label2.Location = New System.Drawing.Point(311, 116) - Me.Label2.Name = "Label2" - Me.Label2.Size = New System.Drawing.Size(24, 13) - Me.Label2.TabIndex = 15 - Me.Label2.Text = "am:" - ' - 'cbxVersicherungUebergeben - ' - Me.cbxVersicherungUebergeben.AutoSize = True - Me.cbxVersicherungUebergeben.Location = New System.Drawing.Point(159, 115) - Me.cbxVersicherungUebergeben.Name = "cbxVersicherungUebergeben" - Me.cbxVersicherungUebergeben.Size = New System.Drawing.Size(142, 17) - Me.cbxVersicherungUebergeben.TabIndex = 14 - Me.cbxVersicherungUebergeben.Text = "Versicherung übergeben" - Me.cbxVersicherungUebergeben.UseVisualStyleBackColor = True - ' - 'Label6 - ' - Me.Label6.AutoSize = True - Me.Label6.Location = New System.Drawing.Point(305, 89) - Me.Label6.Name = "Label6" - Me.Label6.Size = New System.Drawing.Size(30, 13) - Me.Label6.TabIndex = 10 - Me.Label6.Text = "vom:" - ' - 'cbxDeckungsstopp - ' - Me.cbxDeckungsstopp.AutoSize = True - Me.cbxDeckungsstopp.Location = New System.Drawing.Point(159, 88) - Me.cbxDeckungsstopp.Name = "cbxDeckungsstopp" - Me.cbxDeckungsstopp.Size = New System.Drawing.Size(101, 17) - Me.cbxDeckungsstopp.TabIndex = 9 - Me.cbxDeckungsstopp.Text = "Deckungsstopp" - Me.cbxDeckungsstopp.UseVisualStyleBackColor = True - ' - 'Label61 - ' - Me.Label61.AutoSize = True - Me.Label61.Location = New System.Drawing.Point(3, 330) - Me.Label61.Name = "Label61" - Me.Label61.Size = New System.Drawing.Size(62, 13) - Me.Label61.TabIndex = 38 - Me.Label61.Text = "Information:" - ' - 'txtVers_Information - ' - Me.txtVers_Information.Location = New System.Drawing.Point(6, 346) - Me.txtVers_Information.Name = "txtVers_Information" - Me.txtVers_Information.Size = New System.Drawing.Size(660, 93) - Me.txtVers_Information.TabIndex = 39 - Me.txtVers_Information.Text = "" - ' - 'Label59 - ' - Me.Label59.AutoSize = True - Me.Label59.Location = New System.Drawing.Point(281, 256) - Me.Label59.Name = "Label59" - Me.Label59.Size = New System.Drawing.Size(51, 13) - Me.Label59.TabIndex = 34 - Me.Label59.Text = "gültig bis:" - ' - 'Label57 - ' - Me.Label57.AutoSize = True - Me.Label57.Location = New System.Drawing.Point(302, 230) - Me.Label57.Name = "Label57" - Me.Label57.Size = New System.Drawing.Size(30, 13) - Me.Label57.TabIndex = 30 - Me.Label57.Text = "vom:" - ' - 'Label55 - ' - Me.Label55.AutoSize = True - Me.Label55.Location = New System.Drawing.Point(305, 65) - Me.Label55.Name = "Label55" - Me.Label55.Size = New System.Drawing.Size(30, 13) - Me.Label55.TabIndex = 5 - Me.Label55.Text = "vom:" - ' - 'Label60 - ' - Me.Label60.AutoSize = True - Me.Label60.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label60.Location = New System.Drawing.Point(3, 309) - Me.Label60.Name = "Label60" - Me.Label60.Size = New System.Drawing.Size(73, 13) - Me.Label60.TabIndex = 36 - Me.Label60.Text = "Saldo in Euro:" - ' - 'Label58 - ' - Me.Label58.AutoSize = True - Me.Label58.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label58.Location = New System.Drawing.Point(4, 256) - Me.Label58.Name = "Label58" - Me.Label58.Size = New System.Drawing.Size(103, 13) - Me.Label58.TabIndex = 32 - Me.Label58.Text = "Bankgarantiebetrag:" - ' - 'Label53 - ' - Me.Label53.AutoSize = True - Me.Label53.Location = New System.Drawing.Point(302, 204) - Me.Label53.Name = "Label53" - Me.Label53.Size = New System.Drawing.Size(30, 13) - Me.Label53.TabIndex = 26 - Me.Label53.Text = "vom:" - ' - 'Label56 - ' - Me.Label56.AutoSize = True - Me.Label56.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label56.Location = New System.Drawing.Point(4, 230) - Me.Label56.Name = "Label56" - Me.Label56.Size = New System.Drawing.Size(87, 13) - Me.Label56.TabIndex = 28 - Me.Label56.Text = "Keditlimit in Euro:" - ' - 'Label54 - ' - Me.Label54.AutoSize = True - Me.Label54.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label54.Location = New System.Drawing.Point(7, 65) - Me.Label54.Name = "Label54" - Me.Label54.Size = New System.Drawing.Size(110, 13) - Me.Label54.TabIndex = 3 - Me.Label54.Text = "Versicherungssumme:" - ' - 'Label52 - ' - Me.Label52.AutoSize = True - Me.Label52.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label52.Location = New System.Drawing.Point(4, 204) - Me.Label52.Name = "Label52" - Me.Label52.Size = New System.Drawing.Size(79, 13) - Me.Label52.TabIndex = 24 - Me.Label52.Text = "Antragssumme:" - ' - 'Label51 - ' - Me.Label51.AutoSize = True - Me.Label51.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label51.Location = New System.Drawing.Point(7, 9) - Me.Label51.Name = "Label51" - Me.Label51.Size = New System.Drawing.Size(133, 26) - Me.Label51.TabIndex = 0 - Me.Label51.Text = "Polizzennummer ACREDIA" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & ":" - ' 'txtInkasso_GemeldeterBetrag ' Me.txtInkasso_GemeldeterBetrag._DateTimeOnly = False @@ -2855,64 +4607,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.txtVers_HermesRefNr.Size = New System.Drawing.Size(189, 20) Me.txtVers_HermesRefNr.TabIndex = 1 ' - 'tbUmsatz - ' - Me.tbUmsatz.Controls.Add(Me.Label65) - Me.tbUmsatz.Controls.Add(Me.dgvUmsatzbericht) - Me.tbUmsatz.Location = New System.Drawing.Point(4, 22) - Me.tbUmsatz.Name = "tbUmsatz" - Me.tbUmsatz.Padding = New System.Windows.Forms.Padding(3) - Me.tbUmsatz.Size = New System.Drawing.Size(672, 495) - Me.tbUmsatz.TabIndex = 3 - Me.tbUmsatz.Text = "Umsatz" - Me.tbUmsatz.UseVisualStyleBackColor = True - ' - 'Label65 - ' - Me.Label65.AutoSize = True - Me.Label65.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label65.Location = New System.Drawing.Point(6, 9) - Me.Label65.Name = "Label65" - Me.Label65.Size = New System.Drawing.Size(77, 13) - Me.Label65.TabIndex = 0 - Me.Label65.Text = "Umsatzbericht:" - ' - 'dgvUmsatzbericht - ' - Me.dgvUmsatzbericht.AllowUserToAddRows = False - Me.dgvUmsatzbericht.AllowUserToDeleteRows = False - Me.dgvUmsatzbericht.AllowUserToOrderColumns = True - Me.dgvUmsatzbericht.AllowUserToResizeRows = False - DataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(CType(CType(240, Byte), Integer), CType(CType(245, Byte), Integer), CType(CType(255, Byte), Integer)) - Me.dgvUmsatzbericht.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle1 - Me.dgvUmsatzbericht.BackgroundColor = System.Drawing.Color.White - Me.dgvUmsatzbericht.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize - Me.dgvUmsatzbericht.Location = New System.Drawing.Point(6, 25) - Me.dgvUmsatzbericht.Name = "dgvUmsatzbericht" - Me.dgvUmsatzbericht.ReadOnly = True - Me.dgvUmsatzbericht.RowHeadersVisible = False - Me.dgvUmsatzbericht.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect - Me.dgvUmsatzbericht.Size = New System.Drawing.Size(660, 427) - Me.dgvUmsatzbericht.TabIndex = 1 - ' - 'tbOP - ' - Me.tbOP.Controls.Add(Me.txtHoechstkredit) - Me.tbOP.Controls.Add(Me.Label69) - Me.tbOP.Controls.Add(Me.lblbon) - Me.tbOP.Controls.Add(Me.Label67) - Me.tbOP.Controls.Add(Me.Label66) - Me.tbOP.Controls.Add(Me.dgvOffenePosten) - Me.tbOP.Controls.Add(Me.txtBonitaetsDatum) - Me.tbOP.Controls.Add(Me.txtBonitaet) - Me.tbOP.Location = New System.Drawing.Point(4, 22) - Me.tbOP.Name = "tbOP" - Me.tbOP.Padding = New System.Windows.Forms.Padding(3) - Me.tbOP.Size = New System.Drawing.Size(672, 495) - Me.tbOP.TabIndex = 4 - Me.tbOP.Text = "Offene Posten" - Me.tbOP.UseVisualStyleBackColor = True - ' 'txtHoechstkredit ' Me.txtHoechstkredit._DateTimeOnly = False @@ -2937,64 +4631,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.txtHoechstkredit.TabIndex = 5 Me.txtHoechstkredit.TextAlign = System.Windows.Forms.HorizontalAlignment.Right ' - 'Label69 - ' - Me.Label69.AutoSize = True - Me.Label69.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label69.Location = New System.Drawing.Point(514, 9) - Me.Label69.Name = "Label69" - Me.Label69.Size = New System.Drawing.Size(70, 13) - Me.Label69.TabIndex = 4 - Me.Label69.Text = "Höchstkredit:" - ' - 'lblbon - ' - Me.lblbon.AutoSize = True - Me.lblbon.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.lblbon.Location = New System.Drawing.Point(339, 9) - Me.lblbon.Name = "lblbon" - Me.lblbon.Size = New System.Drawing.Size(77, 13) - Me.lblbon.TabIndex = 2 - Me.lblbon.Text = "Bonitätsdatum:" - ' - 'Label67 - ' - Me.Label67.AutoSize = True - Me.Label67.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label67.Location = New System.Drawing.Point(225, 9) - Me.Label67.Name = "Label67" - Me.Label67.Size = New System.Drawing.Size(43, 13) - Me.Label67.TabIndex = 0 - Me.Label67.Text = "Bonität:" - ' - 'Label66 - ' - Me.Label66.AutoSize = True - Me.Label66.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label66.Location = New System.Drawing.Point(3, 19) - Me.Label66.Name = "Label66" - Me.Label66.Size = New System.Drawing.Size(160, 13) - Me.Label66.TabIndex = 6 - Me.Label66.Text = "Debitorenkonto - Offene Posten:" - ' - 'dgvOffenePosten - ' - Me.dgvOffenePosten.AllowUserToAddRows = False - Me.dgvOffenePosten.AllowUserToDeleteRows = False - Me.dgvOffenePosten.AllowUserToOrderColumns = True - Me.dgvOffenePosten.AllowUserToResizeRows = False - DataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(CType(CType(240, Byte), Integer), CType(CType(245, Byte), Integer), CType(CType(255, Byte), Integer)) - Me.dgvOffenePosten.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle2 - Me.dgvOffenePosten.BackgroundColor = System.Drawing.Color.White - Me.dgvOffenePosten.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize - Me.dgvOffenePosten.Location = New System.Drawing.Point(6, 38) - Me.dgvOffenePosten.Name = "dgvOffenePosten" - Me.dgvOffenePosten.ReadOnly = True - Me.dgvOffenePosten.RowHeadersVisible = False - Me.dgvOffenePosten.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect - Me.dgvOffenePosten.Size = New System.Drawing.Size(660, 414) - Me.dgvOffenePosten.TabIndex = 7 - ' 'txtBonitaetsDatum ' Me.txtBonitaetsDatum._DateTimeOnly = False @@ -3044,201 +4680,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.txtBonitaet.TabIndex = 1 Me.txtBonitaet.TextAlign = System.Windows.Forms.HorizontalAlignment.Right ' - 'tbBank - ' - Me.tbBank.Controls.Add(Me.Label21) - Me.tbBank.Controls.Add(Me.GroupBox4) - Me.tbBank.Controls.Add(Me.txtBank_Kto) - Me.tbBank.Controls.Add(Me.Label22) - Me.tbBank.Controls.Add(Me.txtBank_Blz) - Me.tbBank.Location = New System.Drawing.Point(4, 22) - Me.tbBank.Name = "tbBank" - Me.tbBank.Padding = New System.Windows.Forms.Padding(3) - Me.tbBank.Size = New System.Drawing.Size(672, 495) - Me.tbBank.TabIndex = 5 - Me.tbBank.Text = "Bankverb./Kreditkarten" - Me.tbBank.UseVisualStyleBackColor = True - ' - 'Label21 - ' - Me.Label21.AutoSize = True - Me.Label21.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label21.Location = New System.Drawing.Point(6, 34) - Me.Label21.Name = "Label21" - Me.Label21.Size = New System.Drawing.Size(24, 13) - Me.Label21.TabIndex = 2 - Me.Label21.Text = "BIC" - ' - 'GroupBox4 - ' - Me.GroupBox4.Controls.Add(Me.Button10) - Me.GroupBox4.Controls.Add(Me.Button9) - Me.GroupBox4.Controls.Add(Me.bntGOBOXUmstellung) - Me.GroupBox4.Controls.Add(Me.btnKKhinzufuegen) - Me.GroupBox4.Controls.Add(Me.dgvKreditkarten) - Me.GroupBox4.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.GroupBox4.Location = New System.Drawing.Point(9, 69) - Me.GroupBox4.Name = "GroupBox4" - Me.GroupBox4.Size = New System.Drawing.Size(657, 383) - Me.GroupBox4.TabIndex = 4 - Me.GroupBox4.TabStop = False - Me.GroupBox4.Text = "Kreditkarten" - ' - 'Button10 - ' - Me.Button10.Enabled = False - Me.Button10.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.Button10.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Button10.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft - Me.Button10.Location = New System.Drawing.Point(488, 338) - Me.Button10.Name = "Button10" - Me.Button10.Size = New System.Drawing.Size(163, 38) - Me.Button10.TabIndex = 4 - Me.Button10.Text = "Lohnrechner starten" - Me.Button10.UseVisualStyleBackColor = True - ' - 'Button9 - ' - Me.Button9.Enabled = False - Me.Button9.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.Button9.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Button9.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft - Me.Button9.Location = New System.Drawing.Point(351, 338) - Me.Button9.Name = "Button9" - Me.Button9.Size = New System.Drawing.Size(131, 38) - Me.Button9.TabIndex = 3 - Me.Button9.Text = "Contract List" - Me.Button9.UseVisualStyleBackColor = True - ' - 'bntGOBOXUmstellung - ' - Me.bntGOBOXUmstellung.Enabled = False - Me.bntGOBOXUmstellung.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.bntGOBOXUmstellung.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.bntGOBOXUmstellung.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft - Me.bntGOBOXUmstellung.Location = New System.Drawing.Point(193, 338) - Me.bntGOBOXUmstellung.Name = "bntGOBOXUmstellung" - Me.bntGOBOXUmstellung.Size = New System.Drawing.Size(152, 38) - Me.bntGOBOXUmstellung.TabIndex = 2 - Me.bntGOBOXUmstellung.Text = "GO-BOX-Umstellung" - Me.bntGOBOXUmstellung.UseVisualStyleBackColor = True - ' - 'btnKKhinzufuegen - ' - Me.btnKKhinzufuegen.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom - Me.btnKKhinzufuegen.Enabled = False - Me.btnKKhinzufuegen.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.btnKKhinzufuegen.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.btnKKhinzufuegen.Image = Global.SDL.My.Resources.Resources.plus - Me.btnKKhinzufuegen.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft - Me.btnKKhinzufuegen.Location = New System.Drawing.Point(9, 338) - Me.btnKKhinzufuegen.Name = "btnKKhinzufuegen" - Me.btnKKhinzufuegen.Size = New System.Drawing.Size(178, 38) - Me.btnKKhinzufuegen.TabIndex = 1 - Me.btnKKhinzufuegen.Text = "Kreditkarte hinzufügen" - Me.btnKKhinzufuegen.TextAlign = System.Drawing.ContentAlignment.MiddleRight - Me.btnKKhinzufuegen.UseVisualStyleBackColor = True - ' - 'dgvKreditkarten - ' - Me.dgvKreditkarten.AllowUserToAddRows = False - Me.dgvKreditkarten.AllowUserToDeleteRows = False - Me.dgvKreditkarten.AllowUserToOrderColumns = True - Me.dgvKreditkarten.AllowUserToResizeRows = False - DataGridViewCellStyle3.BackColor = System.Drawing.Color.FromArgb(CType(CType(240, Byte), Integer), CType(CType(245, Byte), Integer), CType(CType(255, Byte), Integer)) - Me.dgvKreditkarten.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle3 - Me.dgvKreditkarten.BackgroundColor = System.Drawing.Color.White - DataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft - DataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Control - DataGridViewCellStyle4.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - DataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.WindowText - DataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight - DataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText - DataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.[True] - Me.dgvKreditkarten.ColumnHeadersDefaultCellStyle = DataGridViewCellStyle4 - Me.dgvKreditkarten.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize - DataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft - DataGridViewCellStyle5.BackColor = System.Drawing.SystemColors.Window - DataGridViewCellStyle5.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - DataGridViewCellStyle5.ForeColor = System.Drawing.SystemColors.ControlText - DataGridViewCellStyle5.SelectionBackColor = System.Drawing.SystemColors.Highlight - DataGridViewCellStyle5.SelectionForeColor = System.Drawing.SystemColors.HighlightText - DataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.[False] - Me.dgvKreditkarten.DefaultCellStyle = DataGridViewCellStyle5 - Me.dgvKreditkarten.Location = New System.Drawing.Point(9, 20) - Me.dgvKreditkarten.MultiSelect = False - Me.dgvKreditkarten.Name = "dgvKreditkarten" - Me.dgvKreditkarten.ReadOnly = True - DataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft - DataGridViewCellStyle6.BackColor = System.Drawing.SystemColors.Control - DataGridViewCellStyle6.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - DataGridViewCellStyle6.ForeColor = System.Drawing.SystemColors.WindowText - DataGridViewCellStyle6.SelectionBackColor = System.Drawing.SystemColors.Highlight - DataGridViewCellStyle6.SelectionForeColor = System.Drawing.SystemColors.HighlightText - DataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.[True] - Me.dgvKreditkarten.RowHeadersDefaultCellStyle = DataGridViewCellStyle6 - Me.dgvKreditkarten.RowHeadersVisible = False - DataGridViewCellStyle7.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.dgvKreditkarten.RowsDefaultCellStyle = DataGridViewCellStyle7 - Me.dgvKreditkarten.RowTemplate.DefaultCellStyle.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.dgvKreditkarten.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect - Me.dgvKreditkarten.Size = New System.Drawing.Size(642, 312) - Me.dgvKreditkarten.TabIndex = 0 - ' - 'txtBank_Kto - ' - Me.txtBank_Kto.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.txtBank_Kto.Location = New System.Drawing.Point(100, 6) - Me.txtBank_Kto.MaxLength = 8 - Me.txtBank_Kto.Name = "txtBank_Kto" - Me.txtBank_Kto.Size = New System.Drawing.Size(270, 20) - Me.txtBank_Kto.TabIndex = 3 - ' - 'Label22 - ' - Me.Label22.AutoSize = True - Me.Label22.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label22.Location = New System.Drawing.Point(6, 9) - Me.Label22.Name = "Label22" - Me.Label22.Size = New System.Drawing.Size(32, 13) - Me.Label22.TabIndex = 0 - Me.Label22.Text = "IBAN" - ' - 'txtBank_Blz - ' - Me.txtBank_Blz.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.txtBank_Blz.Location = New System.Drawing.Point(100, 31) - Me.txtBank_Blz.MaxLength = 12 - Me.txtBank_Blz.Name = "txtBank_Blz" - Me.txtBank_Blz.Size = New System.Drawing.Size(270, 20) - Me.txtBank_Blz.TabIndex = 1 - ' - 'tbUmsatzsteuer - ' - Me.tbUmsatzsteuer.Controls.Add(Me.txtUStIDGeprueftAm) - Me.tbUmsatzsteuer.Controls.Add(Me.txtUStID) - Me.tbUmsatzsteuer.Controls.Add(Me.Button3) - Me.tbUmsatzsteuer.Controls.Add(Me.Label85) - Me.tbUmsatzsteuer.Controls.Add(Me.Button11) - Me.tbUmsatzsteuer.Controls.Add(Me.txtSteuernummer) - Me.tbUmsatzsteuer.Controls.Add(Me.dgvUstv_LaenderUndSteuernummern) - Me.tbUmsatzsteuer.Controls.Add(Me.Label90) - Me.tbUmsatzsteuer.Controls.Add(Me.Label19) - Me.tbUmsatzsteuer.Controls.Add(Me.Label88) - Me.tbUmsatzsteuer.Controls.Add(Me.Label89) - Me.tbUmsatzsteuer.Controls.Add(Me.Label87) - Me.tbUmsatzsteuer.Controls.Add(Me.Label86) - Me.tbUmsatzsteuer.Controls.Add(Me.btnUStVAendSpeichern) - Me.tbUmsatzsteuer.Controls.Add(Me.txtUSt_GVAusgestelltAm) - Me.tbUmsatzsteuer.Controls.Add(Me.txtUSt_GVAngefordertAm) - Me.tbUmsatzsteuer.Location = New System.Drawing.Point(4, 22) - Me.tbUmsatzsteuer.Name = "tbUmsatzsteuer" - Me.tbUmsatzsteuer.Padding = New System.Windows.Forms.Padding(3) - Me.tbUmsatzsteuer.Size = New System.Drawing.Size(672, 495) - Me.tbUmsatzsteuer.TabIndex = 6 - Me.tbUmsatzsteuer.Text = "Umsatzsteuer" - Me.tbUmsatzsteuer.UseVisualStyleBackColor = True - ' 'txtUStIDGeprueftAm ' Me.txtUStIDGeprueftAm._DateTimeOnly = False @@ -3265,144 +4706,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.txtUStIDGeprueftAm.Size = New System.Drawing.Size(96, 20) Me.txtUStIDGeprueftAm.TabIndex = 3 ' - 'txtUStID - ' - Me.txtUStID.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.txtUStID.Location = New System.Drawing.Point(115, 6) - Me.txtUStID.Name = "txtUStID" - Me.txtUStID.ReadOnly = True - Me.txtUStID.Size = New System.Drawing.Size(159, 20) - Me.txtUStID.TabIndex = 1 - ' - 'Button3 - ' - Me.Button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom - Me.Button3.FlatAppearance.BorderSize = 0 - Me.Button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.Button3.Location = New System.Drawing.Point(167, 421) - Me.Button3.Name = "Button3" - Me.Button3.Size = New System.Drawing.Size(51, 31) - Me.Button3.TabIndex = 15 - Me.Button3.UseVisualStyleBackColor = True - ' - 'Label85 - ' - Me.Label85.AutoSize = True - Me.Label85.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label85.Location = New System.Drawing.Point(6, 9) - Me.Label85.Name = "Label85" - Me.Label85.Size = New System.Drawing.Size(54, 13) - Me.Label85.TabIndex = 0 - Me.Label85.Text = "USt-Id-Nr:" - ' - 'Button11 - ' - Me.Button11.Enabled = False - Me.Button11.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.Button11.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft - Me.Button11.Location = New System.Drawing.Point(9, 421) - Me.Button11.Name = "Button11" - Me.Button11.Size = New System.Drawing.Size(152, 31) - Me.Button11.TabIndex = 14 - Me.Button11.Text = "UStV-Unterlagen" - Me.Button11.UseVisualStyleBackColor = True - ' - 'txtSteuernummer - ' - Me.txtSteuernummer.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.txtSteuernummer.Location = New System.Drawing.Point(543, 6) - Me.txtSteuernummer.Name = "txtSteuernummer" - Me.txtSteuernummer.ReadOnly = True - Me.txtSteuernummer.Size = New System.Drawing.Size(123, 20) - Me.txtSteuernummer.TabIndex = 5 - ' - 'dgvUstv_LaenderUndSteuernummern - ' - DataGridViewCellStyle8.BackColor = System.Drawing.Color.FromArgb(CType(CType(240, Byte), Integer), CType(CType(245, Byte), Integer), CType(CType(255, Byte), Integer)) - Me.dgvUstv_LaenderUndSteuernummern.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle8 - Me.dgvUstv_LaenderUndSteuernummern.BackgroundColor = System.Drawing.Color.White - DataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft - DataGridViewCellStyle9.BackColor = System.Drawing.SystemColors.Control - DataGridViewCellStyle9.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - DataGridViewCellStyle9.ForeColor = System.Drawing.SystemColors.WindowText - DataGridViewCellStyle9.SelectionBackColor = System.Drawing.SystemColors.Highlight - DataGridViewCellStyle9.SelectionForeColor = System.Drawing.SystemColors.HighlightText - DataGridViewCellStyle9.WrapMode = System.Windows.Forms.DataGridViewTriState.[True] - Me.dgvUstv_LaenderUndSteuernummern.ColumnHeadersDefaultCellStyle = DataGridViewCellStyle9 - Me.dgvUstv_LaenderUndSteuernummern.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize - DataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft - DataGridViewCellStyle10.BackColor = System.Drawing.SystemColors.Window - DataGridViewCellStyle10.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - DataGridViewCellStyle10.ForeColor = System.Drawing.SystemColors.ControlText - DataGridViewCellStyle10.SelectionBackColor = System.Drawing.SystemColors.Highlight - DataGridViewCellStyle10.SelectionForeColor = System.Drawing.SystemColors.HighlightText - DataGridViewCellStyle10.WrapMode = System.Windows.Forms.DataGridViewTriState.[False] - Me.dgvUstv_LaenderUndSteuernummern.DefaultCellStyle = DataGridViewCellStyle10 - Me.dgvUstv_LaenderUndSteuernummern.Location = New System.Drawing.Point(9, 94) - Me.dgvUstv_LaenderUndSteuernummern.Name = "dgvUstv_LaenderUndSteuernummern" - Me.dgvUstv_LaenderUndSteuernummern.Size = New System.Drawing.Size(657, 321) - Me.dgvUstv_LaenderUndSteuernummern.TabIndex = 13 - ' - 'Label90 - ' - Me.Label90.AutoSize = True - Me.Label90.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label90.Location = New System.Drawing.Point(6, 44) - Me.Label90.Name = "Label90" - Me.Label90.Size = New System.Drawing.Size(99, 13) - Me.Label90.TabIndex = 6 - Me.Label90.Text = "GV angefordert am:" - ' - 'Label19 - ' - Me.Label19.AutoSize = True - Me.Label19.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label19.Location = New System.Drawing.Point(280, 9) - Me.Label19.Name = "Label19" - Me.Label19.Size = New System.Drawing.Size(66, 13) - Me.Label19.TabIndex = 2 - Me.Label19.Text = ", geprüft am:" - ' - 'Label88 - ' - Me.Label88.AutoSize = True - Me.Label88.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label88.Location = New System.Drawing.Point(245, 44) - Me.Label88.Name = "Label88" - Me.Label88.Size = New System.Drawing.Size(83, 13) - Me.Label88.TabIndex = 8 - Me.Label88.Text = ", ausgestellt am:" - ' - 'Label89 - ' - Me.Label89.AutoSize = True - Me.Label89.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label89.Location = New System.Drawing.Point(6, 78) - Me.Label89.Name = "Label89" - Me.Label89.Size = New System.Drawing.Size(366, 13) - Me.Label89.TabIndex = 12 - Me.Label89.Text = "Länder und Steuernummern für den Antrag auf Vergütung der Umsatzsteuer:" - ' - 'Label87 - ' - Me.Label87.AutoSize = True - Me.Label87.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label87.Location = New System.Drawing.Point(6, 52) - Me.Label87.Name = "Label87" - Me.Label87.Size = New System.Drawing.Size(10, 13) - Me.Label87.TabIndex = 10 - Me.Label87.Text = " " - ' - 'Label86 - ' - Me.Label86.AutoSize = True - Me.Label86.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label86.Location = New System.Drawing.Point(459, 9) - Me.Label86.Name = "Label86" - Me.Label86.Size = New System.Drawing.Size(78, 13) - Me.Label86.TabIndex = 4 - Me.Label86.Text = "Steuernummer:" - ' 'btnUStVAendSpeichern ' Me.btnUStVAendSpeichern.allowBorder = False @@ -3471,49 +4774,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.txtUSt_GVAngefordertAm.TabIndex = 7 Me.txtUSt_GVAngefordertAm.TextAlign = System.Windows.Forms.HorizontalAlignment.Right ' - 'tbSonstiges - ' - Me.tbSonstiges.Controls.Add(Me.txtSumVerag) - Me.tbSonstiges.Controls.Add(Me.txtSonst_KdNrVerag) - Me.tbSonstiges.Controls.Add(Me.Label110) - Me.tbSonstiges.Controls.Add(Me.txtSumPLOSE) - Me.tbSonstiges.Controls.Add(Me.txtSumUTA) - Me.tbSonstiges.Controls.Add(Me.txtSumMSE) - Me.tbSonstiges.Controls.Add(Me.txtSumIDS) - Me.tbSonstiges.Controls.Add(Me.Label109) - Me.tbSonstiges.Controls.Add(Me.Label99) - Me.tbSonstiges.Controls.Add(Me.txtCreditsafe) - Me.tbSonstiges.Controls.Add(Me.txtSonst_KdNrTOBB) - Me.tbSonstiges.Controls.Add(Me.Label96) - Me.tbSonstiges.Controls.Add(Me.txtSonst_KdNrPLOSE) - Me.tbSonstiges.Controls.Add(Me.Label83) - Me.tbSonstiges.Controls.Add(Me.Label76) - Me.tbSonstiges.Controls.Add(Me.dgvSonst_IDSKunden) - Me.tbSonstiges.Controls.Add(Me.cbxSonst_CsvAsfinag) - Me.tbSonstiges.Controls.Add(Me.cbxSonst_CsvUTA) - Me.tbSonstiges.Controls.Add(Me.cbxSonst_CsvMSE) - Me.tbSonstiges.Controls.Add(Me.cbxSonst_CsvMautbericht) - Me.tbSonstiges.Controls.Add(Me.txtSonst_KdNrUTA) - Me.tbSonstiges.Controls.Add(Me.Label75) - Me.tbSonstiges.Controls.Add(Me.txtSonst_KdNrTelepass) - Me.tbSonstiges.Controls.Add(Me.Label74) - Me.tbSonstiges.Controls.Add(Me.txtSonst_KdNrMSE) - Me.tbSonstiges.Controls.Add(Me.Label73) - Me.tbSonstiges.Controls.Add(Me.txtSonst_KdNrWOELFL) - Me.tbSonstiges.Controls.Add(Me.Label72) - Me.tbSonstiges.Controls.Add(Me.txtSonst_KdNrIDS) - Me.tbSonstiges.Controls.Add(Me.Label70) - Me.tbSonstiges.Controls.Add(Me.Label71) - Me.tbSonstiges.Controls.Add(Me.btnSonstAendSpeichern) - Me.tbSonstiges.Controls.Add(Me.cboSonst_Rechnungsdruck) - Me.tbSonstiges.Location = New System.Drawing.Point(4, 22) - Me.tbSonstiges.Name = "tbSonstiges" - Me.tbSonstiges.Padding = New System.Windows.Forms.Padding(3) - Me.tbSonstiges.Size = New System.Drawing.Size(672, 495) - Me.tbSonstiges.TabIndex = 7 - Me.tbSonstiges.Text = "Sonstiges" - Me.tbSonstiges.UseVisualStyleBackColor = True - ' 'txtSumVerag ' Me.txtSumVerag._DateTimeOnly = False @@ -3537,25 +4797,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.txtSumVerag.Size = New System.Drawing.Size(100, 20) Me.txtSumVerag.TabIndex = 32 ' - 'txtSonst_KdNrVerag - ' - Me.txtSonst_KdNrVerag.Location = New System.Drawing.Point(119, 231) - Me.txtSonst_KdNrVerag.MaxLength = 20 - Me.txtSonst_KdNrVerag.Name = "txtSonst_KdNrVerag" - Me.txtSonst_KdNrVerag.Size = New System.Drawing.Size(122, 20) - Me.txtSonst_KdNrVerag.TabIndex = 31 - ' - 'Label110 - ' - Me.Label110.AutoSize = True - Me.Label110.Enabled = False - Me.Label110.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label110.Location = New System.Drawing.Point(6, 233) - Me.Label110.Name = "Label110" - Me.Label110.Size = New System.Drawing.Size(82, 13) - Me.Label110.TabIndex = 30 - Me.Label110.Text = "KdNr bei Verag:" - ' 'txtSumPLOSE ' Me.txtSumPLOSE._DateTimeOnly = False @@ -3648,247 +4889,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.txtSumIDS.Size = New System.Drawing.Size(100, 20) Me.txtSumIDS.TabIndex = 26 ' - 'Label109 - ' - Me.Label109.AutoSize = True - Me.Label109.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label109.Location = New System.Drawing.Point(262, 9) - Me.Label109.Name = "Label109" - Me.Label109.Size = New System.Drawing.Size(94, 13) - Me.Label109.TabIndex = 25 - Me.Label109.Text = "Vorschausummen:" - ' - 'Label99 - ' - Me.Label99.AutoSize = True - Me.Label99.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label99.Location = New System.Drawing.Point(6, 34) - Me.Label99.Name = "Label99" - Me.Label99.Size = New System.Drawing.Size(71, 13) - Me.Label99.TabIndex = 24 - Me.Label99.Text = "ID Creditsafe:" - ' - 'txtCreditsafe - ' - Me.txtCreditsafe.Location = New System.Drawing.Point(119, 31) - Me.txtCreditsafe.Name = "txtCreditsafe" - Me.txtCreditsafe.Size = New System.Drawing.Size(122, 20) - Me.txtCreditsafe.TabIndex = 23 - ' - 'txtSonst_KdNrTOBB - ' - Me.txtSonst_KdNrTOBB.Location = New System.Drawing.Point(119, 208) - Me.txtSonst_KdNrTOBB.MaxLength = 20 - Me.txtSonst_KdNrTOBB.Name = "txtSonst_KdNrTOBB" - Me.txtSonst_KdNrTOBB.Size = New System.Drawing.Size(122, 20) - Me.txtSonst_KdNrTOBB.TabIndex = 22 - ' - 'Label96 - ' - Me.Label96.AutoSize = True - Me.Label96.Enabled = False - Me.Label96.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label96.Location = New System.Drawing.Point(6, 211) - Me.Label96.Name = "Label96" - Me.Label96.Size = New System.Drawing.Size(83, 13) - Me.Label96.TabIndex = 21 - Me.Label96.Text = "KdNr bei TOBB:" - ' - 'txtSonst_KdNrPLOSE - ' - Me.txtSonst_KdNrPLOSE.Enabled = False - Me.txtSonst_KdNrPLOSE.Location = New System.Drawing.Point(119, 182) - Me.txtSonst_KdNrPLOSE.Name = "txtSonst_KdNrPLOSE" - Me.txtSonst_KdNrPLOSE.Size = New System.Drawing.Size(122, 20) - Me.txtSonst_KdNrPLOSE.TabIndex = 20 - ' - 'Label83 - ' - Me.Label83.AutoSize = True - Me.Label83.Enabled = False - Me.Label83.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label83.Location = New System.Drawing.Point(6, 185) - Me.Label83.Name = "Label83" - Me.Label83.Size = New System.Drawing.Size(89, 13) - Me.Label83.TabIndex = 19 - Me.Label83.Text = "KdNr bei PLOSE:" - ' - 'Label76 - ' - Me.Label76.AutoSize = True - Me.Label76.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label76.Location = New System.Drawing.Point(4, 262) - Me.Label76.Name = "Label76" - Me.Label76.Size = New System.Drawing.Size(65, 13) - Me.Label76.TabIndex = 17 - Me.Label76.Text = "IDS-Kunden" - ' - 'dgvSonst_IDSKunden - ' - Me.dgvSonst_IDSKunden.AllowUserToResizeRows = False - DataGridViewCellStyle11.BackColor = System.Drawing.Color.FromArgb(CType(CType(240, Byte), Integer), CType(CType(245, Byte), Integer), CType(CType(255, Byte), Integer)) - Me.dgvSonst_IDSKunden.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle11 - Me.dgvSonst_IDSKunden.BackgroundColor = System.Drawing.Color.White - DataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft - DataGridViewCellStyle12.BackColor = System.Drawing.SystemColors.Control - DataGridViewCellStyle12.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - DataGridViewCellStyle12.ForeColor = System.Drawing.SystemColors.WindowText - DataGridViewCellStyle12.SelectionBackColor = System.Drawing.SystemColors.Highlight - DataGridViewCellStyle12.SelectionForeColor = System.Drawing.SystemColors.HighlightText - DataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.[True] - Me.dgvSonst_IDSKunden.ColumnHeadersDefaultCellStyle = DataGridViewCellStyle12 - Me.dgvSonst_IDSKunden.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize - DataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft - DataGridViewCellStyle13.BackColor = System.Drawing.SystemColors.Window - DataGridViewCellStyle13.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - DataGridViewCellStyle13.ForeColor = System.Drawing.SystemColors.ControlText - DataGridViewCellStyle13.SelectionBackColor = System.Drawing.SystemColors.Highlight - DataGridViewCellStyle13.SelectionForeColor = System.Drawing.SystemColors.HighlightText - DataGridViewCellStyle13.WrapMode = System.Windows.Forms.DataGridViewTriState.[False] - Me.dgvSonst_IDSKunden.DefaultCellStyle = DataGridViewCellStyle13 - Me.dgvSonst_IDSKunden.Location = New System.Drawing.Point(9, 308) - Me.dgvSonst_IDSKunden.MultiSelect = False - Me.dgvSonst_IDSKunden.Name = "dgvSonst_IDSKunden" - Me.dgvSonst_IDSKunden.Size = New System.Drawing.Size(657, 144) - Me.dgvSonst_IDSKunden.TabIndex = 18 - ' - 'cbxSonst_CsvAsfinag - ' - Me.cbxSonst_CsvAsfinag.AutoSize = True - Me.cbxSonst_CsvAsfinag.Location = New System.Drawing.Point(114, 261) - Me.cbxSonst_CsvAsfinag.Name = "cbxSonst_CsvAsfinag" - Me.cbxSonst_CsvAsfinag.Size = New System.Drawing.Size(264, 17) - Me.cbxSonst_CsvAsfinag.TabIndex = 15 - Me.cbxSonst_CsvAsfinag.Text = "ASFINAG-Abrechnungsdaten als CSV bereitstellen" - Me.cbxSonst_CsvAsfinag.UseVisualStyleBackColor = True - ' - 'cbxSonst_CsvUTA - ' - Me.cbxSonst_CsvUTA.AutoSize = True - Me.cbxSonst_CsvUTA.Location = New System.Drawing.Point(429, 155) - Me.cbxSonst_CsvUTA.Name = "cbxSonst_CsvUTA" - Me.cbxSonst_CsvUTA.Size = New System.Drawing.Size(240, 17) - Me.cbxSonst_CsvUTA.TabIndex = 14 - Me.cbxSonst_CsvUTA.Text = "UTA-Abrechnungsdaten als CSV bereitstellen" - Me.cbxSonst_CsvUTA.UseVisualStyleBackColor = True - ' - 'cbxSonst_CsvMSE - ' - Me.cbxSonst_CsvMSE.AutoSize = True - Me.cbxSonst_CsvMSE.Location = New System.Drawing.Point(429, 103) - Me.cbxSonst_CsvMSE.Name = "cbxSonst_CsvMSE" - Me.cbxSonst_CsvMSE.Size = New System.Drawing.Size(241, 17) - Me.cbxSonst_CsvMSE.TabIndex = 9 - Me.cbxSonst_CsvMSE.Text = "MSE-Abrechnungsdaten als CSV bereitstellen" - Me.cbxSonst_CsvMSE.UseVisualStyleBackColor = True - ' - 'cbxSonst_CsvMautbericht - ' - Me.cbxSonst_CsvMautbericht.AutoSize = True - Me.cbxSonst_CsvMautbericht.Location = New System.Drawing.Point(429, 7) - Me.cbxSonst_CsvMautbericht.Name = "cbxSonst_CsvMautbericht" - Me.cbxSonst_CsvMautbericht.Size = New System.Drawing.Size(181, 17) - Me.cbxSonst_CsvMautbericht.TabIndex = 2 - Me.cbxSonst_CsvMautbericht.Text = "Mautbericht als CSV bereitstellen" - Me.cbxSonst_CsvMautbericht.UseVisualStyleBackColor = True - ' - 'txtSonst_KdNrUTA - ' - Me.txtSonst_KdNrUTA.Location = New System.Drawing.Point(119, 156) - Me.txtSonst_KdNrUTA.Name = "txtSonst_KdNrUTA" - Me.txtSonst_KdNrUTA.Size = New System.Drawing.Size(122, 20) - Me.txtSonst_KdNrUTA.TabIndex = 13 - ' - 'Label75 - ' - Me.Label75.AutoSize = True - Me.Label75.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label75.Location = New System.Drawing.Point(6, 159) - Me.Label75.Name = "Label75" - Me.Label75.Size = New System.Drawing.Size(76, 13) - Me.Label75.TabIndex = 12 - Me.Label75.Text = "KdNr bei UTA:" - ' - 'txtSonst_KdNrTelepass - ' - Me.txtSonst_KdNrTelepass.Location = New System.Drawing.Point(119, 130) - Me.txtSonst_KdNrTelepass.Name = "txtSonst_KdNrTelepass" - Me.txtSonst_KdNrTelepass.Size = New System.Drawing.Size(122, 20) - Me.txtSonst_KdNrTelepass.TabIndex = 11 - ' - 'Label74 - ' - Me.Label74.AutoSize = True - Me.Label74.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label74.Location = New System.Drawing.Point(6, 133) - Me.Label74.Name = "Label74" - Me.Label74.Size = New System.Drawing.Size(109, 13) - Me.Label74.TabIndex = 10 - Me.Label74.Text = "KdNr bei TELEPASS:" - ' - 'txtSonst_KdNrMSE - ' - Me.txtSonst_KdNrMSE.Location = New System.Drawing.Point(119, 104) - Me.txtSonst_KdNrMSE.Name = "txtSonst_KdNrMSE" - Me.txtSonst_KdNrMSE.Size = New System.Drawing.Size(122, 20) - Me.txtSonst_KdNrMSE.TabIndex = 8 - ' - 'Label73 - ' - Me.Label73.AutoSize = True - Me.Label73.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label73.Location = New System.Drawing.Point(6, 107) - Me.Label73.Name = "Label73" - Me.Label73.Size = New System.Drawing.Size(77, 13) - Me.Label73.TabIndex = 7 - Me.Label73.Text = "KdNr bei MSE:" - ' - 'txtSonst_KdNrWOELFL - ' - Me.txtSonst_KdNrWOELFL.Location = New System.Drawing.Point(119, 78) - Me.txtSonst_KdNrWOELFL.Name = "txtSonst_KdNrWOELFL" - Me.txtSonst_KdNrWOELFL.Size = New System.Drawing.Size(122, 20) - Me.txtSonst_KdNrWOELFL.TabIndex = 6 - ' - 'Label72 - ' - Me.Label72.AutoSize = True - Me.Label72.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label72.Location = New System.Drawing.Point(6, 81) - Me.Label72.Name = "Label72" - Me.Label72.Size = New System.Drawing.Size(78, 13) - Me.Label72.TabIndex = 5 - Me.Label72.Text = "KdNr bei Wölfl:" - ' - 'txtSonst_KdNrIDS - ' - Me.txtSonst_KdNrIDS.Enabled = False - Me.txtSonst_KdNrIDS.Location = New System.Drawing.Point(119, 52) - Me.txtSonst_KdNrIDS.Name = "txtSonst_KdNrIDS" - Me.txtSonst_KdNrIDS.Size = New System.Drawing.Size(122, 20) - Me.txtSonst_KdNrIDS.TabIndex = 4 - ' - 'Label70 - ' - Me.Label70.AutoSize = True - Me.Label70.Enabled = False - Me.Label70.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label70.Location = New System.Drawing.Point(6, 55) - Me.Label70.Name = "Label70" - Me.Label70.Size = New System.Drawing.Size(72, 13) - Me.Label70.TabIndex = 3 - Me.Label70.Text = "KdNr bei IDS:" - ' - 'Label71 - ' - Me.Label71.AutoSize = True - Me.Label71.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label71.Location = New System.Drawing.Point(6, 9) - Me.Label71.Name = "Label71" - Me.Label71.Size = New System.Drawing.Size(92, 13) - Me.Label71.TabIndex = 0 - Me.Label71.Text = "Rechnungsdruck:" - ' 'btnSonstAendSpeichern ' Me.btnSonstAendSpeichern.allowBorder = False @@ -3916,151 +4916,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.cboSonst_Rechnungsdruck.Size = New System.Drawing.Size(122, 21) Me.cboSonst_Rechnungsdruck.TabIndex = 1 ' - 'tbSchnittstellen - ' - Me.tbSchnittstellen.Controls.Add(Me.txtVERAG_Schnittstellen_ID) - Me.tbSchnittstellen.Controls.Add(Me.Label91) - Me.tbSchnittstellen.Controls.Add(Me.Label92) - Me.tbSchnittstellen.Controls.Add(Me.DataGridView1) - Me.tbSchnittstellen.Location = New System.Drawing.Point(4, 22) - Me.tbSchnittstellen.Name = "tbSchnittstellen" - Me.tbSchnittstellen.Padding = New System.Windows.Forms.Padding(3) - Me.tbSchnittstellen.Size = New System.Drawing.Size(672, 495) - Me.tbSchnittstellen.TabIndex = 10 - Me.tbSchnittstellen.Text = "Schnittstellen" - Me.tbSchnittstellen.UseVisualStyleBackColor = True - ' - 'txtVERAG_Schnittstellen_ID - ' - Me.txtVERAG_Schnittstellen_ID.Enabled = False - Me.txtVERAG_Schnittstellen_ID.Location = New System.Drawing.Point(131, 17) - Me.txtVERAG_Schnittstellen_ID.Name = "txtVERAG_Schnittstellen_ID" - Me.txtVERAG_Schnittstellen_ID.Size = New System.Drawing.Size(122, 20) - Me.txtVERAG_Schnittstellen_ID.TabIndex = 24 - ' - 'Label91 - ' - Me.Label91.AutoSize = True - Me.Label91.Enabled = False - Me.Label91.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label91.Location = New System.Drawing.Point(6, 20) - Me.Label91.Name = "Label91" - Me.Label91.Size = New System.Drawing.Size(119, 13) - Me.Label91.TabIndex = 23 - Me.Label91.Text = "VERAG Schnittellen-ID:" - ' - 'Label92 - ' - Me.Label92.AutoSize = True - Me.Label92.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label92.Location = New System.Drawing.Point(6, 77) - Me.Label92.Name = "Label92" - Me.Label92.Size = New System.Drawing.Size(110, 13) - Me.Label92.TabIndex = 21 - Me.Label92.Text = "VERAG-Schnittstellen" - ' - 'DataGridView1 - ' - Me.DataGridView1.AllowUserToResizeRows = False - DataGridViewCellStyle14.BackColor = System.Drawing.Color.FromArgb(CType(CType(240, Byte), Integer), CType(CType(245, Byte), Integer), CType(CType(255, Byte), Integer)) - Me.DataGridView1.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle14 - Me.DataGridView1.BackgroundColor = System.Drawing.Color.White - DataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft - DataGridViewCellStyle15.BackColor = System.Drawing.SystemColors.Control - DataGridViewCellStyle15.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - DataGridViewCellStyle15.ForeColor = System.Drawing.SystemColors.WindowText - DataGridViewCellStyle15.SelectionBackColor = System.Drawing.SystemColors.Highlight - DataGridViewCellStyle15.SelectionForeColor = System.Drawing.SystemColors.HighlightText - DataGridViewCellStyle15.WrapMode = System.Windows.Forms.DataGridViewTriState.[True] - Me.DataGridView1.ColumnHeadersDefaultCellStyle = DataGridViewCellStyle15 - Me.DataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize - DataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft - DataGridViewCellStyle16.BackColor = System.Drawing.SystemColors.Window - DataGridViewCellStyle16.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - DataGridViewCellStyle16.ForeColor = System.Drawing.SystemColors.ControlText - DataGridViewCellStyle16.SelectionBackColor = System.Drawing.SystemColors.Highlight - DataGridViewCellStyle16.SelectionForeColor = System.Drawing.SystemColors.HighlightText - DataGridViewCellStyle16.WrapMode = System.Windows.Forms.DataGridViewTriState.[False] - Me.DataGridView1.DefaultCellStyle = DataGridViewCellStyle16 - Me.DataGridView1.Enabled = False - Me.DataGridView1.Location = New System.Drawing.Point(6, 111) - Me.DataGridView1.MultiSelect = False - Me.DataGridView1.Name = "DataGridView1" - Me.DataGridView1.Size = New System.Drawing.Size(657, 358) - Me.DataGridView1.TabIndex = 22 - ' - 'tbZahlungsinfo - ' - Me.tbZahlungsinfo.Controls.Add(Me.Label102) - Me.tbZahlungsinfo.Controls.Add(Me.rtb_Zahlungsinfo) - Me.tbZahlungsinfo.Location = New System.Drawing.Point(4, 22) - Me.tbZahlungsinfo.Name = "tbZahlungsinfo" - Me.tbZahlungsinfo.Size = New System.Drawing.Size(672, 495) - Me.tbZahlungsinfo.TabIndex = 11 - Me.tbZahlungsinfo.Text = "Zahlungsinfo" - Me.tbZahlungsinfo.UseVisualStyleBackColor = True - ' - 'Label102 - ' - Me.Label102.AutoSize = True - Me.Label102.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label102.Location = New System.Drawing.Point(3, 18) - Me.Label102.Name = "Label102" - Me.Label102.Size = New System.Drawing.Size(66, 13) - Me.Label102.TabIndex = 132 - Me.Label102.Text = "Zahlunginfo:" - ' - 'rtb_Zahlungsinfo - ' - Me.rtb_Zahlungsinfo.Location = New System.Drawing.Point(6, 35) - Me.rtb_Zahlungsinfo.Name = "rtb_Zahlungsinfo" - Me.rtb_Zahlungsinfo.Size = New System.Drawing.Size(660, 412) - Me.rtb_Zahlungsinfo.TabIndex = 40 - Me.rtb_Zahlungsinfo.Text = "" - ' - 'tbBankverbindungen - ' - Me.tbBankverbindungen.Controls.Add(Me.dgvBankverbindungen) - Me.tbBankverbindungen.Controls.Add(Me.btnBankspeichern) - Me.tbBankverbindungen.Controls.Add(Me.cbxAlleBVanzeigen) - Me.tbBankverbindungen.Controls.Add(Me.Label108) - Me.tbBankverbindungen.Location = New System.Drawing.Point(4, 22) - Me.tbBankverbindungen.Name = "tbBankverbindungen" - Me.tbBankverbindungen.Size = New System.Drawing.Size(672, 495) - Me.tbBankverbindungen.TabIndex = 12 - Me.tbBankverbindungen.Text = "Bankverbindung" - Me.tbBankverbindungen.UseVisualStyleBackColor = True - ' - 'dgvBankverbindungen - ' - Me.dgvBankverbindungen.AllowUserToDeleteRows = False - Me.dgvBankverbindungen.AllowUserToResizeRows = False - DataGridViewCellStyle17.BackColor = System.Drawing.Color.FromArgb(CType(CType(240, Byte), Integer), CType(CType(245, Byte), Integer), CType(CType(255, Byte), Integer)) - Me.dgvBankverbindungen.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle17 - Me.dgvBankverbindungen.BackgroundColor = System.Drawing.Color.White - DataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft - DataGridViewCellStyle18.BackColor = System.Drawing.SystemColors.Control - DataGridViewCellStyle18.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - DataGridViewCellStyle18.ForeColor = System.Drawing.SystemColors.WindowText - DataGridViewCellStyle18.SelectionBackColor = System.Drawing.SystemColors.Highlight - DataGridViewCellStyle18.SelectionForeColor = System.Drawing.SystemColors.HighlightText - DataGridViewCellStyle18.WrapMode = System.Windows.Forms.DataGridViewTriState.[True] - Me.dgvBankverbindungen.ColumnHeadersDefaultCellStyle = DataGridViewCellStyle18 - Me.dgvBankverbindungen.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize - DataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft - DataGridViewCellStyle19.BackColor = System.Drawing.SystemColors.Window - DataGridViewCellStyle19.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - DataGridViewCellStyle19.ForeColor = System.Drawing.SystemColors.ControlText - DataGridViewCellStyle19.SelectionBackColor = System.Drawing.SystemColors.Highlight - DataGridViewCellStyle19.SelectionForeColor = System.Drawing.SystemColors.HighlightText - DataGridViewCellStyle19.WrapMode = System.Windows.Forms.DataGridViewTriState.[False] - Me.dgvBankverbindungen.DefaultCellStyle = DataGridViewCellStyle19 - Me.dgvBankverbindungen.Location = New System.Drawing.Point(3, 40) - Me.dgvBankverbindungen.MultiSelect = False - Me.dgvBankverbindungen.Name = "dgvBankverbindungen" - Me.dgvBankverbindungen.Size = New System.Drawing.Size(669, 243) - Me.dgvBankverbindungen.TabIndex = 137 - ' 'btnBankspeichern ' Me.btnBankspeichern.allowBorder = False @@ -4077,80 +4932,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.btnBankspeichern.TextAlign = System.Drawing.ContentAlignment.MiddleRight Me.btnBankspeichern.UseVisualStyleBackColor = True ' - 'cbxAlleBVanzeigen - ' - Me.cbxAlleBVanzeigen.AutoSize = True - Me.cbxAlleBVanzeigen.Location = New System.Drawing.Point(578, 14) - Me.cbxAlleBVanzeigen.Name = "cbxAlleBVanzeigen" - Me.cbxAlleBVanzeigen.Size = New System.Drawing.Size(88, 17) - Me.cbxAlleBVanzeigen.TabIndex = 135 - Me.cbxAlleBVanzeigen.Text = "alle anzeigen" - Me.cbxAlleBVanzeigen.UseVisualStyleBackColor = True - ' - 'Label108 - ' - Me.Label108.AutoSize = True - Me.Label108.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label108.Location = New System.Drawing.Point(12, 18) - Me.Label108.Name = "Label108" - Me.Label108.Size = New System.Drawing.Size(100, 13) - Me.Label108.TabIndex = 133 - Me.Label108.Text = "Bankverbindungen:" - ' - 'lblEORI - ' - Me.lblEORI.AutoSize = True - Me.lblEORI.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.lblEORI.Location = New System.Drawing.Point(8, 136) - Me.lblEORI.Name = "lblEORI" - Me.lblEORI.Size = New System.Drawing.Size(78, 13) - Me.lblEORI.TabIndex = 12 - Me.lblEORI.Text = "EORI / NL-Nr.:" - ' - 'Label84 - ' - Me.Label84.AutoSize = True - Me.Label84.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label84.Location = New System.Drawing.Point(259, 87) - Me.Label84.Name = "Label84" - Me.Label84.Size = New System.Drawing.Size(66, 13) - Me.Label84.TabIndex = 8 - Me.Label84.Text = ", geprüft am:" - ' - 'GroupBox3 - ' - Me.GroupBox3.Controls.Add(Me.txtGruendungsDatum) - Me.GroupBox3.Controls.Add(Me.Label33) - Me.GroupBox3.Controls.Add(Me.txtHandelsregisterNr) - Me.GroupBox3.Controls.Add(Me.PictureBox5) - Me.GroupBox3.Controls.Add(Me.cbxUIDMehrfachverwendung) - Me.GroupBox3.Controls.Add(Me.btnCreditsafe) - Me.GroupBox3.Controls.Add(Me.Button13) - Me.GroupBox3.Controls.Add(Me.btnUIDPruef) - Me.GroupBox3.Controls.Add(Me.txtEORINL) - Me.GroupBox3.Controls.Add(Me.Label5) - Me.GroupBox3.Controls.Add(Me.txtEORI) - Me.GroupBox3.Controls.Add(Me.lblEORI) - Me.GroupBox3.Controls.Add(Me.txtFirmenname1) - Me.GroupBox3.Controls.Add(Me.cboUSt_UstIdNrLand) - Me.GroupBox3.Controls.Add(Me.Label15) - Me.GroupBox3.Controls.Add(Me.Label3) - Me.GroupBox3.Controls.Add(Me.txtUSt_UstIdNrGeprueftAm) - Me.GroupBox3.Controls.Add(Me.txtKurzname) - Me.GroupBox3.Controls.Add(Me.txtUSt_UstIdNr) - Me.GroupBox3.Controls.Add(Me.txtFirmenname2) - Me.GroupBox3.Controls.Add(Me.Label16) - Me.GroupBox3.Controls.Add(Me.txtUSt_Steuernummer) - Me.GroupBox3.Controls.Add(Me.Label84) - Me.GroupBox3.Controls.Add(Me.lblHandelregisterNr) - Me.GroupBox3.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.GroupBox3.Location = New System.Drawing.Point(3, 3) - Me.GroupBox3.Name = "GroupBox3" - Me.GroupBox3.Size = New System.Drawing.Size(453, 189) - Me.GroupBox3.TabIndex = 0 - Me.GroupBox3.TabStop = False - Me.GroupBox3.Text = "Firma" - ' 'txtGruendungsDatum ' Me.txtGruendungsDatum._DateTimeOnly = False @@ -4176,16 +4957,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.txtGruendungsDatum.TabIndex = 135 Me.txtGruendungsDatum.TextAlign = System.Windows.Forms.HorizontalAlignment.Right ' - 'Label33 - ' - Me.Label33.AutoSize = True - Me.Label33.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label33.Location = New System.Drawing.Point(10, 161) - Me.Label33.Name = "Label33" - Me.Label33.Size = New System.Drawing.Size(75, 13) - Me.Label33.TabIndex = 134 - Me.Label33.Text = "gegründet am:" - ' 'txtHandelsregisterNr ' Me.txtHandelsregisterNr._DateTimeOnly = False @@ -4210,65 +4981,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.txtHandelsregisterNr.Size = New System.Drawing.Size(126, 20) Me.txtHandelsregisterNr.TabIndex = 133 ' - 'PictureBox5 - ' - Me.PictureBox5.BackgroundImage = Global.SDL.My.Resources.Resources.fragezeichen - Me.PictureBox5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom - Me.PictureBox5.Location = New System.Drawing.Point(88, 62) - Me.PictureBox5.Name = "PictureBox5" - Me.PictureBox5.Size = New System.Drawing.Size(18, 19) - Me.PictureBox5.TabIndex = 131 - Me.PictureBox5.TabStop = False - Me.PictureBox5.Visible = False - ' - 'cbxUIDMehrfachverwendung - ' - Me.cbxUIDMehrfachverwendung.AutoSize = True - Me.cbxUIDMehrfachverwendung.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.cbxUIDMehrfachverwendung.Location = New System.Drawing.Point(292, 159) - Me.cbxUIDMehrfachverwendung.Name = "cbxUIDMehrfachverwendung" - Me.cbxUIDMehrfachverwendung.Size = New System.Drawing.Size(152, 17) - Me.cbxUIDMehrfachverwendung.TabIndex = 25 - Me.cbxUIDMehrfachverwendung.Text = "UID-Mehrfachverwendung" - Me.cbxUIDMehrfachverwendung.UseVisualStyleBackColor = True - ' - 'btnCreditsafe - ' - Me.btnCreditsafe.BackgroundImage = Global.SDL.My.Resources.Resources.creditsafe_add1 - Me.btnCreditsafe.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom - Me.btnCreditsafe.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.btnCreditsafe.Location = New System.Drawing.Point(9, 57) - Me.btnCreditsafe.Name = "btnCreditsafe" - Me.btnCreditsafe.Size = New System.Drawing.Size(77, 27) - Me.btnCreditsafe.TabIndex = 25 - Me.btnCreditsafe.UseVisualStyleBackColor = True - Me.btnCreditsafe.Visible = False - ' - 'Button13 - ' - Me.Button13.BackgroundImage = Global.SDL.My.Resources.Resources.list - Me.Button13.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom - Me.Button13.FlatAppearance.BorderSize = 0 - Me.Button13.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.Button13.Location = New System.Drawing.Point(419, 84) - Me.Button13.Name = "Button13" - Me.Button13.Size = New System.Drawing.Size(25, 20) - Me.Button13.TabIndex = 16 - Me.Button13.UseVisualStyleBackColor = True - ' - 'btnUIDPruef - ' - Me.btnUIDPruef.BackgroundImage = Global.SDL.My.Resources.Resources.fragezeichen - Me.btnUIDPruef.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom - Me.btnUIDPruef.FlatAppearance.BorderSize = 0 - Me.btnUIDPruef.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.btnUIDPruef.Location = New System.Drawing.Point(397, 84) - Me.btnUIDPruef.Name = "btnUIDPruef" - Me.btnUIDPruef.Size = New System.Drawing.Size(25, 20) - Me.btnUIDPruef.TabIndex = 15 - Me.btnUIDPruef.UseVisualStyleBackColor = True - Me.btnUIDPruef.Visible = False - ' 'txtEORINL ' Me.txtEORINL._DateTimeOnly = False @@ -4293,16 +5005,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.txtEORINL.Size = New System.Drawing.Size(87, 20) Me.txtEORINL.TabIndex = 14 ' - 'Label5 - ' - Me.Label5.AutoSize = True - Me.Label5.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label5.Location = New System.Drawing.Point(6, 19) - Me.Label5.Name = "Label5" - Me.Label5.Size = New System.Drawing.Size(57, 13) - Me.Label5.TabIndex = 0 - Me.Label5.Text = "Kurzname:" - ' 'txtEORI ' Me.txtEORI._DateTimeOnly = False @@ -4327,15 +5029,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.txtEORI.Size = New System.Drawing.Size(248, 20) Me.txtEORI.TabIndex = 13 ' - 'txtFirmenname1 - ' - Me.txtFirmenname1.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.txtFirmenname1.Location = New System.Drawing.Point(110, 40) - Me.txtFirmenname1.MaxLength = 40 - Me.txtFirmenname1.Name = "txtFirmenname1" - Me.txtFirmenname1.Size = New System.Drawing.Size(334, 20) - Me.txtFirmenname1.TabIndex = 3 - ' 'cboUSt_UstIdNrLand ' Me.cboUSt_UstIdNrLand._allowedValuesFreiText = Nothing @@ -4351,26 +5044,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.cboUSt_UstIdNrLand.Size = New System.Drawing.Size(43, 21) Me.cboUSt_UstIdNrLand.TabIndex = 6 ' - 'Label15 - ' - Me.Label15.AutoSize = True - Me.Label15.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label15.Location = New System.Drawing.Point(8, 87) - Me.Label15.Name = "Label15" - Me.Label15.Size = New System.Drawing.Size(39, 13) - Me.Label15.TabIndex = 5 - Me.Label15.Text = "UStID:" - ' - 'Label3 - ' - Me.Label3.AutoSize = True - Me.Label3.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label3.Location = New System.Drawing.Point(6, 43) - Me.Label3.Name = "Label3" - Me.Label3.Size = New System.Drawing.Size(67, 13) - Me.Label3.TabIndex = 2 - Me.Label3.Text = "Firmenname:" - ' 'txtUSt_UstIdNrGeprueftAm ' Me.txtUSt_UstIdNrGeprueftAm._DateTimeOnly = False @@ -4396,15 +5069,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.txtUSt_UstIdNrGeprueftAm.TabIndex = 9 Me.txtUSt_UstIdNrGeprueftAm.TextAlign = System.Windows.Forms.HorizontalAlignment.Right ' - 'txtKurzname - ' - Me.txtKurzname.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.txtKurzname.Location = New System.Drawing.Point(110, 16) - Me.txtKurzname.MaxLength = 50 - Me.txtKurzname.Name = "txtKurzname" - Me.txtKurzname.Size = New System.Drawing.Size(334, 20) - Me.txtKurzname.TabIndex = 1 - ' 'txtUSt_UstIdNr ' Me.txtUSt_UstIdNr._DateTimeOnly = False @@ -4430,25 +5094,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.txtUSt_UstIdNr.TabIndex = 7 Me.txtUSt_UstIdNr.TextAlign = System.Windows.Forms.HorizontalAlignment.Right ' - 'txtFirmenname2 - ' - Me.txtFirmenname2.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.txtFirmenname2.Location = New System.Drawing.Point(110, 59) - Me.txtFirmenname2.MaxLength = 40 - Me.txtFirmenname2.Name = "txtFirmenname2" - Me.txtFirmenname2.Size = New System.Drawing.Size(334, 20) - Me.txtFirmenname2.TabIndex = 4 - ' - 'Label16 - ' - Me.Label16.AutoSize = True - Me.Label16.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label16.Location = New System.Drawing.Point(240, 112) - Me.Label16.Name = "Label16" - Me.Label16.Size = New System.Drawing.Size(78, 13) - Me.Label16.TabIndex = 10 - Me.Label16.Text = "Steuernummer:" - ' 'txtUSt_Steuernummer ' Me.txtUSt_Steuernummer._DateTimeOnly = False @@ -4473,56 +5118,6 @@ Partial Class usrcntlKundeBearbeitenFull Me.txtUSt_Steuernummer.TabIndex = 11 Me.txtUSt_Steuernummer.TextAlign = System.Windows.Forms.HorizontalAlignment.Right ' - 'lblHandelregisterNr - ' - Me.lblHandelregisterNr.AutoSize = True - Me.lblHandelregisterNr.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.lblHandelregisterNr.Location = New System.Drawing.Point(8, 112) - Me.lblHandelregisterNr.Name = "lblHandelregisterNr" - Me.lblHandelregisterNr.Size = New System.Drawing.Size(100, 13) - Me.lblHandelregisterNr.TabIndex = 132 - Me.lblHandelregisterNr.Text = "Handelsregister-Nr.:" - ' - 'Label100 - ' - Me.Label100.AutoSize = True - Me.Label100.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label100.Location = New System.Drawing.Point(6, 47) - Me.Label100.Name = "Label100" - Me.Label100.Size = New System.Drawing.Size(77, 13) - Me.Label100.TabIndex = 27 - Me.Label100.Text = "Adress-Zusatz:" - ' - 'txtAdresseZusatz - ' - Me.txtAdresseZusatz.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.txtAdresseZusatz.Location = New System.Drawing.Point(110, 44) - Me.txtAdresseZusatz.MaxLength = 50 - Me.txtAdresseZusatz.Name = "txtAdresseZusatz" - Me.txtAdresseZusatz.Size = New System.Drawing.Size(334, 20) - Me.txtAdresseZusatz.TabIndex = 26 - ' - 'GroupBox1 - ' - Me.GroupBox1.Controls.Add(Me.cbxLandKz) - Me.GroupBox1.Controls.Add(Me.Label14) - Me.GroupBox1.Controls.Add(Me.txtPostfachOrt) - Me.GroupBox1.Controls.Add(Me.txtOrt) - Me.GroupBox1.Controls.Add(Me.Label100) - Me.GroupBox1.Controls.Add(Me.Label12) - Me.GroupBox1.Controls.Add(Me.txtPostfachPlz) - Me.GroupBox1.Controls.Add(Me.txtAdresseZusatz) - Me.GroupBox1.Controls.Add(Me.txtPlz) - Me.GroupBox1.Controls.Add(Me.Label4) - Me.GroupBox1.Controls.Add(Me.txtStrasse) - Me.GroupBox1.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.GroupBox1.Location = New System.Drawing.Point(3, 198) - Me.GroupBox1.Name = "GroupBox1" - Me.GroupBox1.Size = New System.Drawing.Size(453, 139) - Me.GroupBox1.TabIndex = 1 - Me.GroupBox1.TabStop = False - Me.GroupBox1.Text = "Adresse" - ' 'cbxLandKz ' Me.cbxLandKz._allowedValuesFreiText = Nothing @@ -4539,349 +5134,11 @@ Partial Class usrcntlKundeBearbeitenFull Me.cbxLandKz.Size = New System.Drawing.Size(50, 21) Me.cbxLandKz.TabIndex = 3 ' - 'Label14 + 'DataGridViewTextBoxColumn2 ' - Me.Label14.AutoSize = True - Me.Label14.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label14.Location = New System.Drawing.Point(6, 99) - Me.Label14.Name = "Label14" - Me.Label14.Size = New System.Drawing.Size(100, 13) - Me.Label14.TabIndex = 6 - Me.Label14.Text = "Postfach PLZ / Ort:" - ' - 'txtPostfachOrt - ' - Me.txtPostfachOrt.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.txtPostfachOrt.Location = New System.Drawing.Point(243, 96) - Me.txtPostfachOrt.MaxLength = 40 - Me.txtPostfachOrt.Name = "txtPostfachOrt" - Me.txtPostfachOrt.Size = New System.Drawing.Size(201, 20) - Me.txtPostfachOrt.TabIndex = 8 - ' - 'txtOrt - ' - Me.txtOrt.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.txtOrt.Location = New System.Drawing.Point(243, 70) - Me.txtOrt.MaxLength = 40 - Me.txtOrt.Name = "txtOrt" - Me.txtOrt.Size = New System.Drawing.Size(201, 20) - Me.txtOrt.TabIndex = 5 - ' - 'Label12 - ' - Me.Label12.AutoSize = True - Me.Label12.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label12.Location = New System.Drawing.Point(6, 73) - Me.Label12.Name = "Label12" - Me.Label12.Size = New System.Drawing.Size(90, 13) - Me.Label12.TabIndex = 2 - Me.Label12.Text = "Land / PLZ / Ort:" - ' - 'txtPostfachPlz - ' - Me.txtPostfachPlz.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.txtPostfachPlz.Location = New System.Drawing.Point(110, 96) - Me.txtPostfachPlz.MaxLength = 7 - Me.txtPostfachPlz.Name = "txtPostfachPlz" - Me.txtPostfachPlz.Size = New System.Drawing.Size(127, 20) - Me.txtPostfachPlz.TabIndex = 7 - ' - 'txtPlz - ' - Me.txtPlz.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.txtPlz.Location = New System.Drawing.Point(166, 70) - Me.txtPlz.MaxLength = 7 - Me.txtPlz.Name = "txtPlz" - Me.txtPlz.Size = New System.Drawing.Size(71, 20) - Me.txtPlz.TabIndex = 4 - ' - 'Label4 - ' - Me.Label4.AutoSize = True - Me.Label4.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label4.Location = New System.Drawing.Point(6, 25) - Me.Label4.Name = "Label4" - Me.Label4.Size = New System.Drawing.Size(41, 13) - Me.Label4.TabIndex = 0 - Me.Label4.Text = "Straße:" - ' - 'txtStrasse - ' - Me.txtStrasse.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.txtStrasse.Location = New System.Drawing.Point(110, 22) - Me.txtStrasse.MaxLength = 40 - Me.txtStrasse.Name = "txtStrasse" - Me.txtStrasse.Size = New System.Drawing.Size(334, 20) - Me.txtStrasse.TabIndex = 1 - ' - 'txtAnsprechpartnerAnrede - ' - Me.txtAnsprechpartnerAnrede.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.txtAnsprechpartnerAnrede.Location = New System.Drawing.Point(107, 148) - Me.txtAnsprechpartnerAnrede.MaxLength = 4 - Me.txtAnsprechpartnerAnrede.Name = "txtAnsprechpartnerAnrede" - Me.txtAnsprechpartnerAnrede.Size = New System.Drawing.Size(55, 20) - Me.txtAnsprechpartnerAnrede.TabIndex = 11 - ' - 'Label20 - ' - Me.Label20.AutoSize = True - Me.Label20.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label20.Location = New System.Drawing.Point(3, 66) - Me.Label20.Name = "Label20" - Me.Label20.Size = New System.Drawing.Size(67, 13) - Me.Label20.TabIndex = 4 - Me.Label20.Text = "Mobiltelefon:" - ' - 'txtMobil - ' - Me.txtMobil.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.txtMobil.Location = New System.Drawing.Point(107, 63) - Me.txtMobil.MaxLength = 50 - Me.txtMobil.Name = "txtMobil" - Me.txtMobil.Size = New System.Drawing.Size(333, 20) - Me.txtMobil.TabIndex = 5 - ' - 'Label10 - ' - Me.Label10.AutoSize = True - Me.Label10.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label10.Location = New System.Drawing.Point(3, 151) - Me.Label10.Name = "Label10" - Me.Label10.Size = New System.Drawing.Size(88, 13) - Me.Label10.TabIndex = 10 - Me.Label10.Text = "Ansprechpartner:" - ' - 'txtAnsprechpartner - ' - Me.txtAnsprechpartner.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.txtAnsprechpartner.Location = New System.Drawing.Point(168, 148) - Me.txtAnsprechpartner.MaxLength = 40 - Me.txtAnsprechpartner.Name = "txtAnsprechpartner" - Me.txtAnsprechpartner.Size = New System.Drawing.Size(272, 20) - Me.txtAnsprechpartner.TabIndex = 12 - ' - 'Label13 - ' - Me.Label13.AutoSize = True - Me.Label13.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label13.Location = New System.Drawing.Point(3, 123) - Me.Label13.Name = "Label13" - Me.Label13.Size = New System.Drawing.Size(48, 13) - Me.Label13.TabIndex = 8 - Me.Label13.Text = "E-Mail 2:" - ' - 'Label11 - ' - Me.Label11.AutoSize = True - Me.Label11.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label11.Location = New System.Drawing.Point(3, 97) - Me.Label11.Name = "Label11" - Me.Label11.Size = New System.Drawing.Size(39, 13) - Me.Label11.TabIndex = 6 - Me.Label11.Text = "E-Mail:" - ' - 'txtEmail2 - ' - Me.txtEmail2.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.txtEmail2.Location = New System.Drawing.Point(107, 120) - Me.txtEmail2.MaxLength = 40 - Me.txtEmail2.Name = "txtEmail2" - Me.txtEmail2.Size = New System.Drawing.Size(333, 20) - Me.txtEmail2.TabIndex = 9 - ' - 'txtEmail - ' - Me.txtEmail.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.txtEmail.Location = New System.Drawing.Point(107, 94) - Me.txtEmail.MaxLength = 40 - Me.txtEmail.Name = "txtEmail" - Me.txtEmail.Size = New System.Drawing.Size(333, 20) - Me.txtEmail.TabIndex = 7 - ' - 'Label7 - ' - Me.Label7.AutoSize = True - Me.Label7.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label7.Location = New System.Drawing.Point(3, 40) - Me.Label7.Name = "Label7" - Me.Label7.Size = New System.Drawing.Size(27, 13) - Me.Label7.TabIndex = 2 - Me.Label7.Text = "Fax:" - ' - 'txtFax - ' - Me.txtFax.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.txtFax.Location = New System.Drawing.Point(107, 37) - Me.txtFax.MaxLength = 20 - Me.txtFax.Name = "txtFax" - Me.txtFax.Size = New System.Drawing.Size(333, 20) - Me.txtFax.TabIndex = 3 - ' - 'Label9 - ' - Me.Label9.AutoSize = True - Me.Label9.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label9.Location = New System.Drawing.Point(3, 14) - Me.Label9.Name = "Label9" - Me.Label9.Size = New System.Drawing.Size(46, 13) - Me.Label9.TabIndex = 0 - Me.Label9.Text = "Telefon:" - ' - 'txtTel - ' - Me.txtTel.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.txtTel.Location = New System.Drawing.Point(107, 11) - Me.txtTel.MaxLength = 20 - Me.txtTel.Name = "txtTel" - Me.txtTel.Size = New System.Drawing.Size(333, 20) - Me.txtTel.TabIndex = 1 - ' - 'btnFirmendatenFormularSpeichern - ' - Me.btnFirmendatenFormularSpeichern.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.btnFirmendatenFormularSpeichern.Location = New System.Drawing.Point(1081, 540) - Me.btnFirmendatenFormularSpeichern.Name = "btnFirmendatenFormularSpeichern" - Me.btnFirmendatenFormularSpeichern.Size = New System.Drawing.Size(71, 52) - Me.btnFirmendatenFormularSpeichern.TabIndex = 16 - Me.btnFirmendatenFormularSpeichern.Text = "Speichern" - Me.btnFirmendatenFormularSpeichern.UseVisualStyleBackColor = True - ' - 'lblSachbearbeiter - ' - Me.lblSachbearbeiter.AutoSize = True - Me.lblSachbearbeiter.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.lblSachbearbeiter.Location = New System.Drawing.Point(131, 562) - Me.lblSachbearbeiter.Name = "lblSachbearbeiter" - Me.lblSachbearbeiter.Size = New System.Drawing.Size(10, 13) - Me.lblSachbearbeiter.TabIndex = 13 - Me.lblSachbearbeiter.Text = "-" - ' - 'lblErfassung - ' - Me.lblErfassung.AutoSize = True - Me.lblErfassung.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.lblErfassung.Location = New System.Drawing.Point(130, 536) - Me.lblErfassung.Name = "lblErfassung" - Me.lblErfassung.Size = New System.Drawing.Size(10, 13) - Me.lblErfassung.TabIndex = 5 - Me.lblErfassung.Text = "-" - ' - 'lblAenderung - ' - Me.lblAenderung.AutoSize = True - Me.lblAenderung.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.lblAenderung.Location = New System.Drawing.Point(131, 549) - Me.lblAenderung.Name = "lblAenderung" - Me.lblAenderung.Size = New System.Drawing.Size(10, 13) - Me.lblAenderung.TabIndex = 11 - Me.lblAenderung.Text = "-" - ' - 'Label26 - ' - Me.Label26.AutoSize = True - Me.Label26.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label26.Location = New System.Drawing.Point(10, 562) - Me.Label26.Name = "Label26" - Me.Label26.Size = New System.Drawing.Size(117, 13) - Me.Label26.TabIndex = 12 - Me.Label26.Text = "Letzter Sachbearbeiter:" - ' - 'Label25 - ' - Me.Label25.AutoSize = True - Me.Label25.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label25.Location = New System.Drawing.Point(9, 536) - Me.Label25.Name = "Label25" - Me.Label25.Size = New System.Drawing.Size(91, 13) - Me.Label25.TabIndex = 4 - Me.Label25.Text = "Erfassungsdatum:" - ' - 'Label23 - ' - Me.Label23.AutoSize = True - Me.Label23.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label23.Location = New System.Drawing.Point(10, 549) - Me.Label23.Name = "Label23" - Me.Label23.Size = New System.Drawing.Size(90, 13) - Me.Label23.TabIndex = 10 - Me.Label23.Text = "Änderungsdatum:" - ' - 'Button1 - ' - Me.Button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.Button1.Location = New System.Drawing.Point(573, 546) - Me.Button1.Name = "Button1" - Me.Button1.Size = New System.Drawing.Size(98, 38) - Me.Button1.TabIndex = 14 - Me.Button1.Text = "Kundenstamm jetzt übertragen" - Me.Button1.UseVisualStyleBackColor = True - Me.Button1.Visible = False - ' - 'Label28 - ' - Me.Label28.AutoSize = True - Me.Label28.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label28.Location = New System.Drawing.Point(585, 587) - Me.Label28.Name = "Label28" - Me.Label28.Size = New System.Drawing.Size(10, 13) - Me.Label28.TabIndex = 9 - Me.Label28.Text = "-" - Me.Label28.Visible = False - ' - 'Label29 - ' - Me.Label29.AutoSize = True - Me.Label29.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label29.Location = New System.Drawing.Point(567, 530) - Me.Label29.Name = "Label29" - Me.Label29.Size = New System.Drawing.Size(109, 13) - Me.Label29.TabIndex = 8 - Me.Label29.Text = "Übertrag in DAKOSY:" - Me.Label29.Visible = False - ' - 'tbKontakt - ' - Me.tbKontakt.Controls.Add(Me.TabPage10) - Me.tbKontakt.Controls.Add(Me.TabPage11) - Me.tbKontakt.Location = New System.Drawing.Point(3, 321) - Me.tbKontakt.Name = "tbKontakt" - Me.tbKontakt.SelectedIndex = 0 - Me.tbKontakt.Size = New System.Drawing.Size(453, 201) - Me.tbKontakt.TabIndex = 2 - ' - 'TabPage10 - ' - Me.TabPage10.Controls.Add(Me.txtAnsprechpartnerAnrede) - Me.TabPage10.Controls.Add(Me.Label9) - Me.TabPage10.Controls.Add(Me.Label20) - Me.TabPage10.Controls.Add(Me.txtTel) - Me.TabPage10.Controls.Add(Me.txtMobil) - Me.TabPage10.Controls.Add(Me.txtFax) - Me.TabPage10.Controls.Add(Me.Label10) - Me.TabPage10.Controls.Add(Me.Label7) - Me.TabPage10.Controls.Add(Me.txtAnsprechpartner) - Me.TabPage10.Controls.Add(Me.txtEmail) - Me.TabPage10.Controls.Add(Me.Label13) - Me.TabPage10.Controls.Add(Me.txtEmail2) - Me.TabPage10.Controls.Add(Me.Label11) - Me.TabPage10.Location = New System.Drawing.Point(4, 22) - Me.TabPage10.Name = "TabPage10" - Me.TabPage10.Size = New System.Drawing.Size(445, 175) - Me.TabPage10.TabIndex = 2 - Me.TabPage10.Text = "Kontakt" - Me.TabPage10.UseVisualStyleBackColor = True - ' - 'TabPage11 - ' - Me.TabPage11.Controls.Add(Me.ucKundenKontakte) - Me.TabPage11.Location = New System.Drawing.Point(4, 22) - Me.TabPage11.Name = "TabPage11" - Me.TabPage11.Padding = New System.Windows.Forms.Padding(3) - Me.TabPage11.Size = New System.Drawing.Size(445, 175) - Me.TabPage11.TabIndex = 3 - Me.TabPage11.Text = "Spezifisch" - Me.TabPage11.UseVisualStyleBackColor = True + Me.DataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill + Me.DataGridViewTextBoxColumn2.HeaderText = "E-Mail" + Me.DataGridViewTextBoxColumn2.Name = "DataGridViewTextBoxColumn2" ' 'ucKundenKontakte ' @@ -4891,285 +5148,41 @@ Partial Class usrcntlKundeBearbeitenFull Me.ucKundenKontakte.Size = New System.Drawing.Size(439, 169) Me.ucKundenKontakte.TabIndex = 0 ' - 'Label50 + 'UsrCntlKundenBesonderheiten1 ' - Me.Label50.AutoSize = True - Me.Label50.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label50.Location = New System.Drawing.Point(6, 16) - Me.Label50.Name = "Label50" - Me.Label50.Size = New System.Drawing.Size(92, 13) - Me.Label50.TabIndex = 0 - Me.Label50.Text = "Zuständige Filiale:" + Me.UsrCntlKundenBesonderheiten1.BackColor = System.Drawing.Color.White + Me.UsrCntlKundenBesonderheiten1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle + Me.UsrCntlKundenBesonderheiten1.Location = New System.Drawing.Point(6, 25) + Me.UsrCntlKundenBesonderheiten1.Name = "UsrCntlKundenBesonderheiten1" + Me.UsrCntlKundenBesonderheiten1.Size = New System.Drawing.Size(107, 52) + Me.UsrCntlKundenBesonderheiten1.TabIndex = 235 + Me.UsrCntlKundenBesonderheiten1.Visible = False ' - 'Label68 + 'UsrCntlKundenAvisoMailBenachrichtigung1 ' - Me.Label68.AutoSize = True - Me.Label68.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label68.Location = New System.Drawing.Point(6, 46) - Me.Label68.Name = "Label68" - Me.Label68.Size = New System.Drawing.Size(69, 13) - Me.Label68.TabIndex = 2 - Me.Label68.Text = "Kundenkreis:" + Me.UsrCntlKundenAvisoMailBenachrichtigung1.AutoScroll = True + Me.UsrCntlKundenAvisoMailBenachrichtigung1.BackColor = System.Drawing.Color.White + Me.UsrCntlKundenAvisoMailBenachrichtigung1.Location = New System.Drawing.Point(0, 6) + Me.UsrCntlKundenAvisoMailBenachrichtigung1.Name = "UsrCntlKundenAvisoMailBenachrichtigung1" + Me.UsrCntlKundenAvisoMailBenachrichtigung1.Size = New System.Drawing.Size(479, 172) + Me.UsrCntlKundenAvisoMailBenachrichtigung1.TabIndex = 6 ' - 'pnlNeukunde + 'usrCntlAufschubkonten ' - Me.pnlNeukunde.Controls.Add(Me.Button2) - Me.pnlNeukunde.Controls.Add(Me.Label50) - Me.pnlNeukunde.Controls.Add(Me.cboFiliale) - Me.pnlNeukunde.Controls.Add(Me.cboKundenkreis) - Me.pnlNeukunde.Controls.Add(Me.Label68) - Me.pnlNeukunde.Location = New System.Drawing.Point(776, 530) - Me.pnlNeukunde.Name = "pnlNeukunde" - Me.pnlNeukunde.Size = New System.Drawing.Size(303, 74) - Me.pnlNeukunde.TabIndex = 15 - Me.pnlNeukunde.Visible = False + Me.usrCntlAufschubkonten.Dock = System.Windows.Forms.DockStyle.Fill + Me.usrCntlAufschubkonten.Location = New System.Drawing.Point(3, 3) + Me.usrCntlAufschubkonten.Name = "usrCntlAufschubkonten" + Me.usrCntlAufschubkonten.Size = New System.Drawing.Size(652, 172) + Me.usrCntlAufschubkonten.TabIndex = 0 ' - 'Button2 + 'UsrCntlKundeFiskaldaten1 ' - Me.Button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.Button2.Location = New System.Drawing.Point(194, 7) - Me.Button2.Name = "Button2" - Me.Button2.Size = New System.Drawing.Size(105, 30) - Me.Button2.TabIndex = 19 - Me.Button2.Text = "Wunsch-KdNr" - Me.Button2.UseVisualStyleBackColor = True - ' - 'cboFiliale - ' - Me.cboFiliale._allowedValuesFreiText = Nothing - Me.cboFiliale._allowFreiText = False - Me.cboFiliale._value = "" - Me.cboFiliale.BackColor = System.Drawing.Color.FromArgb(CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer)) - Me.cboFiliale.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.cboFiliale.DropDownWidth = 400 - Me.cboFiliale.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.cboFiliale.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.cboFiliale.FormattingEnabled = True - Me.cboFiliale.Location = New System.Drawing.Point(104, 8) - Me.cboFiliale.Name = "cboFiliale" - Me.cboFiliale.Size = New System.Drawing.Size(84, 28) - Me.cboFiliale.TabIndex = 1 - ' - 'cboKundenkreis - ' - Me.cboKundenkreis._allowedValuesFreiText = Nothing - Me.cboKundenkreis._allowFreiText = False - Me.cboKundenkreis._value = "" - Me.cboKundenkreis.BackColor = System.Drawing.Color.FromArgb(CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer)) - Me.cboKundenkreis.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.cboKundenkreis.DropDownWidth = 400 - Me.cboKundenkreis.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.cboKundenkreis.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.cboKundenkreis.FormattingEnabled = True - Me.cboKundenkreis.Items.AddRange(New Object() {"", "100000-199999: XXXXXX", "200000-299999: XXXXXX", "300000-399999: XXXXXX", "400000-499999: XXXXXX", "500000-599999: XXXXXX", "600000-699999: XXXXXX", "700000-799999: XXXXXX", "800000-899999: XXXXXX", "900000-999999: XXXXXX"}) - Me.cboKundenkreis.Location = New System.Drawing.Point(104, 38) - Me.cboKundenkreis.Name = "cboKundenkreis" - Me.cboKundenkreis.Size = New System.Drawing.Size(195, 28) - Me.cboKundenkreis.TabIndex = 3 - ' - 'Label77 - ' - Me.Label77.AutoSize = True - Me.Label77.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label77.Location = New System.Drawing.Point(780, 571) - Me.Label77.Name = "Label77" - Me.Label77.Size = New System.Drawing.Size(64, 13) - Me.Label77.TabIndex = 6 - Me.Label77.Text = "Kunden-Nr.:" - ' - 'lblKundennr - ' - Me.lblKundennr.AutoSize = True - Me.lblKundennr.Font = New System.Drawing.Font("Microsoft Sans Serif", 10.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.lblKundennr.Location = New System.Drawing.Point(850, 569) - Me.lblKundennr.Name = "lblKundennr" - Me.lblKundennr.Size = New System.Drawing.Size(14, 17) - Me.lblKundennr.TabIndex = 7 - Me.lblKundennr.Text = "-" - ' - 'Label79 - ' - Me.Label79.AutoSize = True - Me.Label79.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label79.Location = New System.Drawing.Point(780, 541) - Me.Label79.Name = "Label79" - Me.Label79.Size = New System.Drawing.Size(40, 13) - Me.Label79.TabIndex = 4 - Me.Label79.Text = "Status:" - ' - 'Label80 - ' - Me.Label80.AutoSize = True - Me.Label80.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label80.Location = New System.Drawing.Point(278, 541) - Me.Label80.Name = "Label80" - Me.Label80.Size = New System.Drawing.Size(59, 13) - Me.Label80.TabIndex = 4 - Me.Label80.Text = "Firma FiBu:" - ' - 'cbxFiBu - ' - Me.cbxFiBu.AutoSize = True - Me.cbxFiBu.Enabled = False - Me.cbxFiBu.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.cbxFiBu.Location = New System.Drawing.Point(400, 540) - Me.cbxFiBu.Name = "cbxFiBu" - Me.cbxFiBu.Size = New System.Drawing.Size(47, 17) - Me.cbxFiBu.TabIndex = 17 - Me.cbxFiBu.Text = "FiBu" - Me.cbxFiBu.UseVisualStyleBackColor = True - ' - 'cbxFiBuLG - ' - Me.cbxFiBuLG.AutoSize = True - Me.cbxFiBuLG.Enabled = False - Me.cbxFiBuLG.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.cbxFiBuLG.Location = New System.Drawing.Point(400, 561) - Me.cbxFiBuLG.Name = "cbxFiBuLG" - Me.cbxFiBuLG.Size = New System.Drawing.Size(64, 17) - Me.cbxFiBuLG.TabIndex = 18 - Me.cbxFiBuLG.Text = "FiBu LG" - Me.cbxFiBuLG.UseVisualStyleBackColor = True - Me.cbxFiBuLG.Visible = False - ' - 'Label97 - ' - Me.Label97.AutoSize = True - Me.Label97.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label97.Location = New System.Drawing.Point(463, 530) - Me.Label97.Name = "Label97" - Me.Label97.Size = New System.Drawing.Size(100, 13) - Me.Label97.TabIndex = 19 - Me.Label97.Text = "Übertrag in SYSKA:" - Me.Label97.Visible = False - ' - 'Button4 - ' - Me.Button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.Button4.Location = New System.Drawing.Point(466, 546) - Me.Button4.Name = "Button4" - Me.Button4.Size = New System.Drawing.Size(101, 38) - Me.Button4.TabIndex = 21 - Me.Button4.Text = "Kundenstamm jetzt übertragen" - Me.Button4.UseVisualStyleBackColor = True - Me.Button4.Visible = False - ' - 'CheckBox1 - ' - Me.CheckBox1.AutoSize = True - Me.CheckBox1.Checked = True - Me.CheckBox1.CheckState = System.Windows.Forms.CheckState.Checked - Me.CheckBox1.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.CheckBox1.Location = New System.Drawing.Point(466, 586) - Me.CheckBox1.Name = "CheckBox1" - Me.CheckBox1.Size = New System.Drawing.Size(101, 17) - Me.CheckBox1.TabIndex = 22 - Me.CheckBox1.Text = "zuvor speichern" - Me.CheckBox1.UseVisualStyleBackColor = True - Me.CheckBox1.Visible = False - ' - 'txtERROR - ' - Me.txtERROR.BackColor = System.Drawing.SystemColors.Window - Me.txtERROR.BorderStyle = System.Windows.Forms.BorderStyle.None - Me.txtERROR.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.txtERROR.ForeColor = System.Drawing.Color.Red - Me.txtERROR.Location = New System.Drawing.Point(13, 577) - Me.txtERROR.MaxLength = 9999 - Me.txtERROR.Multiline = True - Me.txtERROR.Name = "txtERROR" - Me.txtERROR.Size = New System.Drawing.Size(443, 30) - Me.txtERROR.TabIndex = 17 - ' - 'btnDatevExport - ' - Me.btnDatevExport.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.btnDatevExport.Location = New System.Drawing.Point(678, 546) - Me.btnDatevExport.Name = "btnDatevExport" - Me.btnDatevExport.Size = New System.Drawing.Size(93, 38) - Me.btnDatevExport.TabIndex = 23 - Me.btnDatevExport.Text = "Kundenstamm jetzt übertragen" - Me.btnDatevExport.UseVisualStyleBackColor = True - Me.btnDatevExport.Visible = False - ' - 'Label98 - ' - Me.Label98.AutoSize = True - Me.Label98.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label98.Location = New System.Drawing.Point(675, 530) - Me.Label98.Name = "Label98" - Me.Label98.Size = New System.Drawing.Size(101, 13) - Me.Label98.TabIndex = 24 - Me.Label98.Text = "Übertrag in DATEV:" - Me.Label98.Visible = False - ' - 'cboFirma - ' - Me.cboFirma._allowedValuesFreiText = Nothing - Me.cboFirma._allowFreiText = False - Me.cboFirma._value = "" - Me.cboFirma.BackColor = System.Drawing.Color.FromArgb(CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer)) - Me.cboFirma.DropDownHeight = 350 - Me.cboFirma.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.cboFirma.DropDownWidth = 400 - Me.cboFirma.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.cboFirma.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.cboFirma.FormattingEnabled = True - Me.cboFirma.IntegralHeight = False - Me.cboFirma.Location = New System.Drawing.Point(342, 533) - Me.cboFirma.Name = "cboFirma" - Me.cboFirma.Size = New System.Drawing.Size(49, 28) - Me.cboFirma.TabIndex = 5 - ' - 'cboAuswahl - ' - Me.cboAuswahl._allowedValuesFreiText = Nothing - Me.cboAuswahl._allowFreiText = False - Me.cboAuswahl._value = "" - Me.cboAuswahl.BackColor = System.Drawing.Color.FromArgb(CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer)) - Me.cboAuswahl.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.cboAuswahl.DropDownWidth = 400 - Me.cboAuswahl.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.cboAuswahl.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.cboAuswahl.FormattingEnabled = True - Me.cboAuswahl.Location = New System.Drawing.Point(826, 533) - Me.cboAuswahl.Name = "cboAuswahl" - Me.cboAuswahl.Size = New System.Drawing.Size(124, 28) - Me.cboAuswahl.TabIndex = 5 - ' - 'DataGridViewTextBoxColumn2 - ' - Me.DataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill - Me.DataGridViewTextBoxColumn2.HeaderText = "E-Mail" - Me.DataGridViewTextBoxColumn2.Name = "DataGridViewTextBoxColumn2" - ' - 'cnsBankverbindungen - ' - Me.cnsBankverbindungen.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ArchivierenToolStripMenuItem, Me.DokumentHinzufügenToolStripMenuItem, Me.DokumentLöschenToolStripMenuItem}) - Me.cnsBankverbindungen.Name = "cnsBankverbindungen" - Me.cnsBankverbindungen.Size = New System.Drawing.Size(194, 70) - ' - 'ArchivierenToolStripMenuItem - ' - Me.ArchivierenToolStripMenuItem.Image = Global.SDL.My.Resources.Resources.stift1 - Me.ArchivierenToolStripMenuItem.Name = "ArchivierenToolStripMenuItem" - Me.ArchivierenToolStripMenuItem.Size = New System.Drawing.Size(193, 22) - Me.ArchivierenToolStripMenuItem.Text = "Bank schließen" - Me.ArchivierenToolStripMenuItem.Visible = False - ' - 'DokumentHinzufügenToolStripMenuItem - ' - Me.DokumentHinzufügenToolStripMenuItem.Image = Global.SDL.My.Resources.Resources.pdf_s - Me.DokumentHinzufügenToolStripMenuItem.Name = "DokumentHinzufügenToolStripMenuItem" - Me.DokumentHinzufügenToolStripMenuItem.Size = New System.Drawing.Size(193, 22) - Me.DokumentHinzufügenToolStripMenuItem.Text = "Dokument hinzufügen" - ' - 'DokumentLöschenToolStripMenuItem - ' - Me.DokumentLöschenToolStripMenuItem.Image = Global.SDL.My.Resources.Resources.del - Me.DokumentLöschenToolStripMenuItem.Name = "DokumentLöschenToolStripMenuItem" - Me.DokumentLöschenToolStripMenuItem.Size = New System.Drawing.Size(193, 22) - Me.DokumentLöschenToolStripMenuItem.Text = "Dokument löschen" + Me.UsrCntlKundeFiskaldaten1.BackColor = System.Drawing.Color.White + Me.UsrCntlKundeFiskaldaten1.Dock = System.Windows.Forms.DockStyle.Fill + Me.UsrCntlKundeFiskaldaten1.Location = New System.Drawing.Point(0, 0) + Me.UsrCntlKundeFiskaldaten1.Name = "UsrCntlKundeFiskaldaten1" + Me.UsrCntlKundeFiskaldaten1.Size = New System.Drawing.Size(672, 495) + Me.UsrCntlKundeFiskaldaten1.TabIndex = 0 ' 'usrcntlKundeBearbeitenFull ' @@ -5206,7 +5219,7 @@ Partial Class usrcntlKundeBearbeitenFull Me.Controls.Add(Me.Label77) Me.Controls.Add(Me.Label97) Me.Name = "usrcntlKundeBearbeitenFull" - Me.Size = New System.Drawing.Size(1152, 607) + Me.Size = New System.Drawing.Size(1152, 628) Me.tbcntrDetails.ResumeLayout(False) Me.tbAbfertigung.ResumeLayout(False) Me.tbAbfertigung.PerformLayout() @@ -5603,4 +5616,5 @@ Partial Class usrcntlKundeBearbeitenFull Friend WithEvents txtSumVerag As VERAG_PROG_ALLGEMEIN.MyTextBox Friend WithEvents txtSonst_KdNrVerag As TextBox Friend WithEvents Label110 As Label + Friend WithEvents cbxkeineMWSt As CheckBox End Class diff --git a/SDL/kunden/usrcntlKundeBearbeitenFull.vb b/SDL/kunden/usrcntlKundeBearbeitenFull.vb index b333d0d6..ed2c99ba 100644 --- a/SDL/kunden/usrcntlKundeBearbeitenFull.vb +++ b/SDL/kunden/usrcntlKundeBearbeitenFull.vb @@ -110,6 +110,7 @@ Public Class usrcntlKundeBearbeitenFull bntGOBOXUmstellung.Enabled = isVerag360 btnKKhinzufuegen.Enabled = isVerag360 Button9.Enabled = isVerag360 + cbxkeineMWSt.Visible = isVerag360 usrCntlAufschubkonten.initMe(kdnr) @@ -360,6 +361,7 @@ Public Class usrcntlKundeBearbeitenFull cbxSonst_CsvMSE.Checked = loadValue(ADRESSE.MSEExportCSV, False) cbxSonst_CsvUTA.Checked = loadValue(ADRESSE.UTAExportCSV, False) cbxUIDMehrfachverwendung.Checked = KUNDE_ERW.kde_UIDMehrfachverwendung + cbxkeineMWSt.Checked = KUNDE_ERW.kde_keineMWSt txtAbf_ZollVmVom.Enabled = cbxAbf_ZollVM.Checked @@ -1856,6 +1858,7 @@ Public Class usrcntlKundeBearbeitenFull Private Sub dgvBankverbindungen_CellMouseClick(sender As Object, e As DataGridViewCellMouseEventArgs) Handles dgvBankverbindungen.CellMouseClick If e.RowIndex < 0 Then Exit Sub 'Es wurde außerhalb einer gültigen Datenzeile geklickt + If e.ColumnIndex < 0 Then Exit Sub DirectCast(sender, DataGridView).Rows(e.RowIndex).Selected = True If e.Button = MouseButtons.Right Then @@ -1864,7 +1867,7 @@ Public Class usrcntlKundeBearbeitenFull If sender Is dgvBankverbindungen Then If Not bankverbindungBearbeiten Then Exit Sub - If dgvBankverbindungen.SelectedRows.Count = 0 Then Exit Sub 'Es wurde außerhalb einer gültigen Datenzeile geklickt + If dgvBankverbindungen.SelectedCells.Count = 0 Then Exit Sub 'Es wurde außerhalb einer gültigen Datenzeile geklickt dgvBankverbindungen.CurrentCell = dgvBankverbindungen.Rows(e.RowIndex).Cells(e.ColumnIndex) If dgvBankverbindungen.CurrentRow.Cells("bnk_archiv").Value Is Nothing OrElse (Not IsDBNull(dgvBankverbindungen.CurrentRow.Cells("bnk_archiv").Value) AndAlso dgvBankverbindungen.CurrentRow.Cells("bnk_archiv").Value) AndAlso dgvBankverbindungen.CurrentRow.Cells("bnk_id").Value IsNot Nothing Then @@ -2163,4 +2166,23 @@ Public Class usrcntlKundeBearbeitenFull End Sub + Private Sub cbxkeineMWSt_Click(sender As Object, e As EventArgs) Handles cbxkeineMWSt.Click + If cbxkeineMWSt.Checked Then + + Dim sqlStringSteuerNr = "SELECT count(*) from tblSteuernummern where UStV = 1 and tblSteuernummern.AdressenNr = " & ADRESSE.AdressenNr + Dim aktiveSteuerNr As Integer = CInt((New SQL).getValueTxtBySql(sqlStringSteuerNr, "FMZOLL")) + + If aktiveSteuerNr > 0 Then + If vbYes = MsgBox("Der Kunde hat aktuell " & aktiveSteuerNr & " aktive Steuer-Nummern!" & vbNewLine & "Trotzdem setzen? ", vbYesNoCancel) Then + cbxkeineMWSt.Checked = True + Else + cbxkeineMWSt.Checked = False + End If + + End If + + + + End If + End Sub End Class diff --git a/SDL/mdm/frmMDMDatenverarbetiung.vb b/SDL/mdm/frmMDMDatenverarbetiung.vb index c9172a42..daf3f6a2 100644 --- a/SDL/mdm/frmMDMDatenverarbetiung.vb +++ b/SDL/mdm/frmMDMDatenverarbetiung.vb @@ -4318,7 +4318,7 @@ Public Class frmMDMDatenverarbetiung From [VERAG].[dbo].[tblMSESettlements] as bills inner join [VERAG].[dbo].[tblMSETransactions] as trans on bills.[transaction_id] = trans.[transaction_id] inner join [VERAG].[dbo].[tblMSECustomers] as cust on cust.partner_customer_number = trans.partner_haulier_id - where bills.invoice_date = '" & DateTimePicker2.Text & "' and trans.chargedDatetime is not null and isnull(trans.charged) = 0 ", "FMZOLL") Then + where bills.invoice_date = '" & DateTimePicker2.Text & "' and trans.chargedDatetime is not null and isnull(trans.charged,0) = 0 ", "FMZOLL") Then PictureBox1.Visible = True End If diff --git a/SDL/packages.config b/SDL/packages.config index 55b73867..2cefbb64 100644 --- a/SDL/packages.config +++ b/SDL/packages.config @@ -13,5 +13,5 @@ - + \ No newline at end of file diff --git a/VERAG_PROG_ALLGEMEIN/Classes/cEZB_Waehrungskurse.vb b/VERAG_PROG_ALLGEMEIN/Classes/cEZB_Waehrungskurse.vb index 52436fef..2c4e5744 100644 --- a/VERAG_PROG_ALLGEMEIN/Classes/cEZB_Waehrungskurse.vb +++ b/VERAG_PROG_ALLGEMEIN/Classes/cEZB_Waehrungskurse.vb @@ -147,12 +147,17 @@ Public Class cEZB_Waehrungskurse End Function Shared Function GET_KURS(ezb_waehrungscode As String, datum As Date) As Double - Dim sqlstr = " SELECT TOP 1 [ezb_kurs] FROM [tblEZB_Waehrungskurse] where ezb_waehrungscode='" & ezb_waehrungscode & "' and ezb_datum<='" & datum.ToShortTimeString & "' order by ezb_datum desc" + Dim sqlstr = " SELECT TOP 1 [ezb_kurs] FROM [tblEZB_Waehrungskurse] where ezb_waehrungscode='" & ezb_waehrungscode & "' and ezb_datum<='" & datum.ToShortDateString & "' order by ezb_datum desc" Return (New SQL).getValueTxtBySql(sqlstr, "FMZOLL",,, 0) End Function - Shared Function EXCHANGE(betrag As Double, waehrungscode As String, datum As Date) As Double - Dim sqlstr = " SELECT TOP 1 [ezb_kurs] FROM [tblEZB_Waehrungskurse] where ezb_waehrungscode='" & waehrungscode & "' and ezb_datum<='" & datum.ToShortTimeString & "' order by ezb_datum desc" + Shared Function EXCHANGE_CURTOEUR(betrag As Double, waehrungscode As String, datum As Date) As Double + Dim sqlstr = " SELECT TOP 1 [ezb_kurs] FROM [tblEZB_Waehrungskurse] where ezb_waehrungscode='" & waehrungscode & "' and ezb_datum<='" & datum.ToShortDateString & "' order by ezb_datum desc" + Return betrag / (New SQL).getValueTxtBySql(sqlstr, "FMZOLL",,, 0) + End Function + + Shared Function EXCHANGE_EURTOCUR(betrag As Double, waehrungscode As String, datum As Date) As Double + Dim sqlstr = " SELECT TOP 1 [ezb_kurs] FROM [tblEZB_Waehrungskurse] where ezb_waehrungscode='" & waehrungscode & "' and ezb_datum<='" & datum.ToShortDateString & "' order by ezb_datum desc" Return (New SQL).getValueTxtBySql(sqlstr, "FMZOLL",,, 0) * betrag End Function diff --git a/VERAG_PROG_ALLGEMEIN/Classes/cKundenErweitert.vb b/VERAG_PROG_ALLGEMEIN/Classes/cKundenErweitert.vb index b1cac90c..097a9453 100644 --- a/VERAG_PROG_ALLGEMEIN/Classes/cKundenErweitert.vb +++ b/VERAG_PROG_ALLGEMEIN/Classes/cKundenErweitert.vb @@ -87,9 +87,7 @@ Public Class cKundenErweitert Property kde_BankgarantielErhaltenAm As Object = Nothing Property kde_WechselBlanko As Boolean = False Property kde_UStV_SummeVorschaubetragEUR_PLOSE As Object = Nothing - - - + Property kde_keineMWSt As Boolean = False Dim SQL As New SQL @@ -179,6 +177,7 @@ Public Class cKundenErweitert list.Add(New VERAG_PROG_ALLGEMEIN.SQLVariable("kde_BankgarantielErhaltenAm", kde_BankgarantielErhaltenAm)) list.Add(New VERAG_PROG_ALLGEMEIN.SQLVariable("kde_WechselBlanko", kde_WechselBlanko)) list.Add(New VERAG_PROG_ALLGEMEIN.SQLVariable("kde_UStV_SummeVorschaubetragEUR_PLOSE", kde_UStV_SummeVorschaubetragEUR_PLOSE)) + list.Add(New VERAG_PROG_ALLGEMEIN.SQLVariable("kde_keineMWSt", kde_keineMWSt)) Return list End Function diff --git a/VERAG_PROG_ALLGEMEIN/Classes/cUTA.vb b/VERAG_PROG_ALLGEMEIN/Classes/cUTA.vb index 3256be86..f2d44dd2 100644 --- a/VERAG_PROG_ALLGEMEIN/Classes/cUTA.vb +++ b/VERAG_PROG_ALLGEMEIN/Classes/cUTA.vb @@ -10,12 +10,6 @@ Public Class cUTA Dim SQL As New VERAG_PROG_ALLGEMEIN.SQL - Public Function clearimporttable() As Boolean - - Return SQL.doSQL("DELETE FROM tblUTAImportNew", "FMZOLL") - - End Function - Public Function importUTALeistungen() As Boolean 'Einträge in tblUTALeistungen machen, wenn Fakturierwarenart und Lieferland noch nicht in der Tabelle enthalten sind.