From fd43887f58a0cc87f973d1c16c58d2471a78c490 Mon Sep 17 00:00:00 2001 From: "d.breimaier" Date: Fri, 13 Jun 2025 10:05:53 +0200 Subject: [PATCH] Proc, etc. --- MDM_Worker/cPLOSE_Inv_Data.vb | 62 +- UID/usrCntlAPI.vb | 2 + UID/usrctlProcedures.Designer.vb | 28 +- UID/usrctlProcedures.vb | 104 + .../frmStartOptions.Designer.vb | 2875 +++++++++-------- initATLASAufschubkonten/frmStartOptions.vb | 36 +- 6 files changed, 1666 insertions(+), 1441 deletions(-) diff --git a/MDM_Worker/cPLOSE_Inv_Data.vb b/MDM_Worker/cPLOSE_Inv_Data.vb index 5a22d5f..0f9d05d 100644 --- a/MDM_Worker/cPLOSE_Inv_Data.vb +++ b/MDM_Worker/cPLOSE_Inv_Data.vb @@ -331,7 +331,7 @@ Public Class cPLOSE_Inv_Data For Each r As DataRow In dtREohneWahrung.Rows - Dim Waehrungtabelle As DataTable = SQL.loadDgvBySql("Select plose_WaehrungAbbuchung, plose_WaehrungLandDiesntleistung, plp_Land from tblPLOSE_Details INNER JOIN tblPLOSE_Produktbeschreibung ON [plp_ProductCode]=[plose_ProduktCode] WHERE plose_RechnungsNr = '" & r.Item("plInv_SupplierRechnungsNr") & "' And plose_RechnungsDatum = '" & r.Item("plInv_SupplierRechnungsDatum") & "' group by plose_WaehrungAbbuchung, plose_WaehrungLandDiesntleistung, plp_Land", "FMZOLL") + Dim Waehrungtabelle As DataTable = SQL.loadDgvBySql("Select plose_WaehrungAbbuchung, plose_WaehrungLandDiesntleistung, plp_Land from tblPLOSE_Details INNER JOIN tblPLOSE_Produktbeschreibung ON [plp_ProductCode]=[plose_ProduktCode] WHERE plose_SupplierRechnungsNr = '" & r.Item("plInv_SupplierRechnungsNr") & "' And plose_SupplierRechnungsDatum = '" & r.Item("plInv_SupplierRechnungsDatum") & "' group by plose_WaehrungAbbuchung, plose_WaehrungLandDiesntleistung, plp_Land", "FMZOLL") If Waehrungtabelle.Rows.Count = 1 Then If Waehrungtabelle.Rows(0).Item("plose_WaehrungAbbuchung") = Waehrungtabelle.Rows(0).Item("plose_WaehrungLandDiesntleistung") And Waehrungtabelle.Rows(0).Item("plp_Land").ToString.Trim = r.Item("plInv_SupplierCountry").ToString.Trim Then @@ -359,6 +359,66 @@ Public Class cPLOSE_Inv_Data End Function + Public Shared Function checkAndsetArchivFromUSTVAPos(jahr As Integer, Optional message As Boolean = False, Optional kdNr As Integer = -1) As Boolean + + If jahr > Now.Year Then Return False + If jahr < 2020 Then Return False + + + Dim nichtEingearbetieteEintrage As String = "select * from tblPLOSE_Details where Year(plose_RechnungsDatum) = " & jahr & " and UStVAn_ID is null and plose_ArchiviertDatum is null and plose_Archiv = 0 " & IIf(kdNr > 0, " And plose_POLSEKundennummer = " & kdNr, "") + + + Dim REohneWaehrung As String = "SELECT [plInv_SupplierRechnungsDatum],[plInv_SupplierRechnungsNr],[plInv_SupplierCountry],[plInv_Lieferant] + FROM [VERAG].[dbo].[tblPLOSE_Inv_Data] + where YEAR( [plInv_SupplierRechnungsDatum]) = " & jahr & " and plInv_Currency is null " & " + Group by [plInv_SupplierCountry],[plInv_Lieferant],[plInv_SupplierRechnungsDatum],[plInv_SupplierRechnungsNr]" + + Dim SQL As New VERAG_PROG_ALLGEMEIN.SQL + Dim dtREohneWahrung As DataTable = SQL.loadDgvBySql(REohneWaehrung, "FMZOLL") + + 'TODO: umbauen auf checkAndSet + + + 'If dtREohneWahrung.Rows.Count > 0 Then + + ' If vbYes = MsgBox("Details der fehlenden Währungen anzeigen?", vbYesNo) Then + ' cProgramFunctions.genExcelFromDT_NEW(dtREohneWahrung,,, "Fehlende Währung in Rechnungen: " & jahr) + ' End If + + + ' If IIf(message, vbYes = MsgBox("Bei " & dtREohneWahrung.Rows.Count & " PLOSE-Rechnungen fehlt die Währungsbezeichnung in den Rechnungen." & vbNewLine & "Währung setzen?", vbYesNoCancel), True) Then + + ' For Each r As DataRow In dtREohneWahrung.Rows + + ' Dim Waehrungtabelle As DataTable = SQL.loadDgvBySql("Select plose_WaehrungAbbuchung, plose_WaehrungLandDiesntleistung, plp_Land from tblPLOSE_Details INNER JOIN tblPLOSE_Produktbeschreibung ON [plp_ProductCode]=[plose_ProduktCode] WHERE plose_SupplierRechnungsNr = '" & r.Item("plInv_SupplierRechnungsNr") & "' And plose_SupplierRechnungsDatum = '" & r.Item("plInv_SupplierRechnungsDatum") & "' group by plose_WaehrungAbbuchung, plose_WaehrungLandDiesntleistung, plp_Land", "FMZOLL") + + ' If Waehrungtabelle.Rows.Count = 1 Then + ' If Waehrungtabelle.Rows(0).Item("plose_WaehrungAbbuchung") = Waehrungtabelle.Rows(0).Item("plose_WaehrungLandDiesntleistung") And Waehrungtabelle.Rows(0).Item("plp_Land").ToString.Trim = r.Item("plInv_SupplierCountry").ToString.Trim Then + ' Dim Waehrung As String = IIf(IsDBNull(Waehrungtabelle.Rows(0).Item("plose_WaehrungAbbuchung")), "", Waehrungtabelle.Rows(0).Item("plose_WaehrungAbbuchung")) + ' If Waehrung <> "" Then + ' SQL.doSQL("UPDATE [tblPLOSE_Inv_Data] SET plInv_Currency = '" & Waehrung & "' WHERE plInv_Currency is null and [plInv_SupplierRechnungsDatum] = '" & r.Item("plInv_SupplierRechnungsDatum") & "' AND [plInv_SupplierRechnungsNr] = '" & r.Item("plInv_SupplierRechnungsNr") & "' and [plInv_SupplierCountry] ='" & r.Item("plInv_SupplierCountry") & "'", "FMZOLL") + ' End If + ' End If + ' End If + + ' Next + + + ' If message Then MsgBox("alle Währungen gesetzt!") + ' Return True + ' End If + + 'Else + ' If message Then MsgBox("keine fehlenden Währungen vorhanden!") + ' Return False + 'End If + + + + + End Function + + End Class diff --git a/UID/usrCntlAPI.vb b/UID/usrCntlAPI.vb index 21ed976..7a78a3f 100644 --- a/UID/usrCntlAPI.vb +++ b/UID/usrCntlAPI.vb @@ -46,6 +46,8 @@ Public Class usrCntlAPI cboAPIArt.Items.Add(New VERAG_PROG_ALLGEMEIN.MyListItem("AVISO_OUT_BELEGMAIL", VERAG_PROG_ALLGEMEIN.cAPI_ART.AVISO_OUT_BELEGMAIL)) cboAPIArt.Items.Add(New VERAG_PROG_ALLGEMEIN.MyListItem("VERAG_OUT_EZA", VERAG_PROG_ALLGEMEIN.cAPI_ART.VERAG_OUT_EZA)) cboAPIArt.Items.Add(New VERAG_PROG_ALLGEMEIN.MyListItem("VERAG_OUT_NCTS", VERAG_PROG_ALLGEMEIN.cAPI_ART.VERAG_OUT_NCTS)) + cboAPIArt.Items.Add(New VERAG_PROG_ALLGEMEIN.MyListItem("MSE", VERAG_PROG_ALLGEMEIN.cAPI_ART.AVISO_IN_MSE)) + cboAPIArt.Items.Add(New VERAG_PROG_ALLGEMEIN.MyListItem("MDM SAMMELRECHNUNG", VERAG_PROG_ALLGEMEIN.cAPI_ART.SDL_OUT_SAMMELRECHNUNG)) cboAPIArt.changeItem("") diff --git a/UID/usrctlProcedures.Designer.vb b/UID/usrctlProcedures.Designer.vb index 591b232..9d3be35 100644 --- a/UID/usrctlProcedures.Designer.vb +++ b/UID/usrctlProcedures.Designer.vb @@ -83,6 +83,7 @@ Partial Class usrctlProcedures Me.tctModalTEstLRN = New System.Windows.Forms.TextBox() Me.Button45 = New System.Windows.Forms.Button() Me.TabPage5 = New System.Windows.Forms.TabPage() + Me.Button48 = New System.Windows.Forms.Button() Me.Button47 = New System.Windows.Forms.Button() Me.Button18 = New System.Windows.Forms.Button() Me.TextBox1 = New System.Windows.Forms.TextBox() @@ -137,7 +138,7 @@ Partial Class usrctlProcedures Me.Button43 = New System.Windows.Forms.Button() Me.DataGridViewTextBoxColumn1 = New System.Windows.Forms.DataGridViewTextBoxColumn() Me.DataGridViewTextBoxColumn2 = New System.Windows.Forms.DataGridViewTextBoxColumn() - Me.Button48 = New System.Windows.Forms.Button() + Me.Button49 = New System.Windows.Forms.Button() Me.TabControl1.SuspendLayout() Me.TabPage3.SuspendLayout() Me.TabPage1.SuspendLayout() @@ -740,6 +741,15 @@ Partial Class usrctlProcedures Me.TabPage5.Text = "Teleotec" Me.TabPage5.UseVisualStyleBackColor = True ' + 'Button48 + ' + Me.Button48.Location = New System.Drawing.Point(209, 24) + Me.Button48.Name = "Button48" + Me.Button48.Size = New System.Drawing.Size(145, 49) + Me.Button48.TabIndex = 63 + Me.Button48.Text = "getTAD File" + Me.Button48.UseVisualStyleBackColor = True + ' 'Button47 ' Me.Button47.Location = New System.Drawing.Point(20, 24) @@ -1228,19 +1238,20 @@ Partial Class usrctlProcedures Me.DataGridViewTextBoxColumn2.HeaderText = "anz" Me.DataGridViewTextBoxColumn2.Name = "DataGridViewTextBoxColumn2" ' - 'Button48 + 'Button49 ' - Me.Button48.Location = New System.Drawing.Point(209, 24) - Me.Button48.Name = "Button48" - Me.Button48.Size = New System.Drawing.Size(145, 49) - Me.Button48.TabIndex = 63 - Me.Button48.Text = "getTAD File" - Me.Button48.UseVisualStyleBackColor = True + Me.Button49.Location = New System.Drawing.Point(547, 29) + Me.Button49.Name = "Button49" + Me.Button49.Size = New System.Drawing.Size(145, 49) + Me.Button49.TabIndex = 66 + Me.Button49.Text = "Kundenkontakte imp." + Me.Button49.UseVisualStyleBackColor = True ' 'usrctlProcedures ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font + Me.Controls.Add(Me.Button49) Me.Controls.Add(Me.Button43) Me.Controls.Add(Me.Button33) Me.Controls.Add(Me.lblStatus) @@ -1429,4 +1440,5 @@ Partial Class usrctlProcedures Friend WithEvents TabPage5 As TabPage Friend WithEvents Button47 As Button Friend WithEvents Button48 As Button + Friend WithEvents Button49 As Button End Class diff --git a/UID/usrctlProcedures.vb b/UID/usrctlProcedures.vb index 4c0f7bc..a90bc04 100644 --- a/UID/usrctlProcedures.vb +++ b/UID/usrctlProcedures.vb @@ -3965,6 +3965,110 @@ Public Class usrctlProcedures End Using + End Sub + + Private Sub Button49_Click(sender As Object, e As EventArgs) Handles Button49.Click + + + Dim cnt = 0 + + Dim sql As New VERAG_PROG_ALLGEMEIN.SQL + Dim kdnr_tmp = "" + + VERAG_PROG_ALLGEMEIN.cAllgemein.TESTSYSTEM = CheckBox3.Checked + + Try + + Dim fd As New OpenFileDialog + If fd.ShowDialog = DialogResult.OK Then + If fd.FileName.ToLower.EndsWith(".csv") Then + + ' fd.FileName.EndsWith(".csv") + Using MyReader As New Microsoft.VisualBasic.FileIO.TextFieldParser(fd.FileName, Encoding.Default) + MyReader.TextFieldType = FileIO.FieldType.Delimited + MyReader.SetDelimiters(";") + Dim currentRow As String() + While Not MyReader.EndOfData + Try + ' + currentRow = MyReader.ReadFields() + + If currentRow.Length > 2 Then + If Not (currentRow(0).Trim() = "aktiv") Then + If currentRow.Length > 12 Then + + Dim kundenNr = isleernothing((currentRow(1))) + + If kundenNr IsNot Nothing Then + kdnr_tmp = kundenNr + + 'Mahnung an + If isleernothing((currentRow(9))) IsNot Nothing Then + + + + Dim KDKont As New VERAG_PROG_ALLGEMEIN.cKundenKontakte(10, kundenNr) + KDKont.kkd_Email = isleernothing((currentRow(9))) + KDKont.kkd_kkaId = 10 'Mahnung an + KDKont.kkd_kkaBez = "Mahnung an" + + If KDKont.SAVE() Then + TextBox10.Text &= KDKont.kkd_id & vbNewLine + Else + MsgBox("FEHLER: " & currentRow(2).Trim() & " - " & currentRow(3).Trim()) + End If + End If + + + 'Rechnung an + If isleernothing((currentRow(10))) IsNot Nothing Then + + Dim KDKont As New VERAG_PROG_ALLGEMEIN.cKundenKontakte(8, kundenNr) + KDKont.kkd_Email = isleernothing((currentRow(10))) + KDKont.kkd_kkaId = 8 'Rechnung an + KDKont.kkd_kkaBez = "Rechnung an" + + If KDKont.SAVE() Then + TextBox10.Text &= KDKont.kkd_id & vbNewLine + Else + MsgBox("FEHLER: " & currentRow(2).Trim() & " - " & currentRow(3).Trim()) + End If + End If + + + End If + + + If cnt Mod 10 = 0 Then + Application.DoEvents() + + Label10.Text = (cnt + 1) + End If + + Else + 'MsgBox(currentRow(2)) + End If + End If + End If + + 'For Each currentField In currentRow + cnt += 1 + 'Next + Catch ex As Exception + MsgBox(kdnr_tmp & " " & ex.Message & ex.StackTrace) + End Try + End While + End Using + End If + End If + + Catch ex As Exception + MessageBox.Show("Datei nicht vorhanden.") + Finally + + End Try + + End Sub diff --git a/initATLASAufschubkonten/frmStartOptions.Designer.vb b/initATLASAufschubkonten/frmStartOptions.Designer.vb index 40f8a69..66e62fd 100644 --- a/initATLASAufschubkonten/frmStartOptions.Designer.vb +++ b/initATLASAufschubkonten/frmStartOptions.Designer.vb @@ -188,106 +188,114 @@ Partial Class frmStartOptions Me.datTranscodeBis = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.datTranscodeVon = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.TabPage4 = New System.Windows.Forms.TabPage() + Me.TabControl1 = New System.Windows.Forms.TabControl() + Me.Asfinag = New System.Windows.Forms.TabPage() + Me.Label28 = New System.Windows.Forms.Label() + Me.txtTWLNr = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtTBLNr = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.Label24 = New System.Windows.Forms.Label() + Me.LinkLabel44 = New System.Windows.Forms.LinkLabel() + Me.LinkLabel43 = New System.Windows.Forms.LinkLabel() + Me.Label23 = New System.Windows.Forms.Label() + Me.LinkLabel42 = New System.Windows.Forms.LinkLabel() + Me.LinkLabel41 = New System.Windows.Forms.LinkLabel() + Me.PictureBox18 = New System.Windows.Forms.PictureBox() + Me.PictureBox19 = New System.Windows.Forms.PictureBox() + Me.LinkLabel46 = New System.Windows.Forms.LinkLabel() + Me.LinkLabel47 = New System.Windows.Forms.LinkLabel() + Me.PictureBox21 = New System.Windows.Forms.PictureBox() + Me.Label25 = New System.Windows.Forms.Label() + Me.LinkLabel49 = New System.Windows.Forms.LinkLabel() + Me.IDS = New System.Windows.Forms.TabPage() Me.IDSUpdateDAID = New System.Windows.Forms.LinkLabel() - Me.LinkLabel52 = New System.Windows.Forms.LinkLabel() - Me.cbxPloseNeu = New System.Windows.Forms.CheckBox() - Me.Label52 = New System.Windows.Forms.Label() + Me.Label32 = New System.Windows.Forms.Label() + Me.txtIDSYear = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.Label35 = New System.Windows.Forms.Label() + Me.IDS_import = New System.Windows.Forms.LinkLabel() Me.IDS_REDetails = New System.Windows.Forms.LinkLabel() - Me.Label51 = New System.Windows.Forms.Label() + Me.IDS_Laendercode = New System.Windows.Forms.LinkLabel() + Me.IDS_RE = New System.Windows.Forms.LinkLabel() + Me.cbxIDSUmbenenen = New System.Windows.Forms.CheckBox() + Me.TextBox3 = New System.Windows.Forms.TextBox() + Me.MSE = New System.Windows.Forms.TabPage() + Me.Label33 = New System.Windows.Forms.Label() + Me.txtTransactionID = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.cbxMSEBatchNr = New VERAG_PROG_ALLGEMEIN.MyComboBox() + Me.txtBatchNr = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtBatchNrofTransaction = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.Label36 = New System.Windows.Forms.Label() + Me.MSE_Transaktions = New System.Windows.Forms.LinkLabel() + Me.MSE_RE = New System.Windows.Forms.LinkLabel() + Me.datVon = New System.Windows.Forms.DateTimePicker() + Me.MSETransakt = New System.Windows.Forms.LinkLabel() + Me.DateTimePicker1 = New System.Windows.Forms.DateTimePicker() + Me.DateTimePicker2 = New System.Windows.Forms.DateTimePicker() + Me.LinkLabel57 = New System.Windows.Forms.LinkLabel() + Me.MSE_Kunden = New System.Windows.Forms.LinkLabel() + Me.Label37 = New System.Windows.Forms.Label() + Me.Label38 = New System.Windows.Forms.Label() + Me.Label39 = New System.Windows.Forms.Label() + Me.MSETransID = New System.Windows.Forms.LinkLabel() + Me.Label40 = New System.Windows.Forms.Label() + Me.MSE_missingTrans = New System.Windows.Forms.LinkLabel() + Me.MSE_Settlements = New System.Windows.Forms.LinkLabel() + Me.MSE_not_billed_Trans = New System.Windows.Forms.LinkLabel() + Me.Label42 = New System.Windows.Forms.Label() + Me.cbxOnlyBilledTransactions = New System.Windows.Forms.CheckBox() + Me.cbxUploadDA = New System.Windows.Forms.CheckBox() + Me.RMC = New System.Windows.Forms.TabPage() + Me.Label29 = New System.Windows.Forms.Label() + Me.cbxRMC = New VERAG_PROG_ALLGEMEIN.MyComboBox() + Me.Label30 = New System.Windows.Forms.Label() + Me.RMC_import = New System.Windows.Forms.LinkLabel() + Me.cbxDateienlöschenRMC = New System.Windows.Forms.CheckBox() + Me.TextBox2 = New System.Windows.Forms.TextBox() + Me.UTA = New System.Windows.Forms.TabPage() + Me.Label31 = New System.Windows.Forms.Label() + Me.txtUTAYear = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.txtUTADate = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.Label34 = New System.Windows.Forms.Label() Me.lblJahrUTA = New System.Windows.Forms.Label() + Me.UTA_imports = New System.Windows.Forms.LinkLabel() Me.UTAREPdf = New System.Windows.Forms.LinkLabel() - Me.KN8_DESTAT = New System.Windows.Forms.LinkLabel() + Me.cbxDateienlöschenUTA = New System.Windows.Forms.CheckBox() + Me.TextBox1 = New System.Windows.Forms.TextBox() + Me.UTA_Laender = New System.Windows.Forms.LinkLabel() + Me.lblUTAPDFvollst = New System.Windows.Forms.LinkLabel() + Me.PLOSE = New System.Windows.Forms.TabPage() + Me.LinkLabel52 = New System.Windows.Forms.LinkLabel() + Me.Label5 = New System.Windows.Forms.Label() + Me.txtPloseJahr = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.Label52 = New System.Windows.Forms.Label() + Me.txtPLoseKdNr = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.Label51 = New System.Windows.Forms.Label() + Me.LinkLabel24 = New System.Windows.Forms.LinkLabel() + Me.LinkLabel23 = New System.Windows.Forms.LinkLabel() Me.Laender_Steuercode = New System.Windows.Forms.LinkLabel() Me.PlosePdfRE = New System.Windows.Forms.LinkLabel() - Me.lblUTAPDFvollst = New System.Windows.Forms.LinkLabel() - Me.TextBox3 = New System.Windows.Forms.TextBox() - Me.cbxIDSUmbenenen = New System.Windows.Forms.CheckBox() - Me.IDS_RE = New System.Windows.Forms.LinkLabel() - Me.IDS_Laendercode = New System.Windows.Forms.LinkLabel() - Me.cbxITalt = New System.Windows.Forms.CheckBox() - Me.cbxPlose = New System.Windows.Forms.CheckBox() - Me.Label46 = New System.Windows.Forms.Label() - Me.Label45 = New System.Windows.Forms.Label() + Me.TabPage5 = New System.Windows.Forms.TabPage() + Me.cbxPloseNeu = New System.Windows.Forms.CheckBox() Me.Label44 = New System.Windows.Forms.Label() - Me.cbxMSEneu = New System.Windows.Forms.CheckBox() - Me.Button24 = New System.Windows.Forms.Button() - Me.cbxMSEalt = New System.Windows.Forms.CheckBox() - Me.IDS_import = New System.Windows.Forms.LinkLabel() - Me.cbxUTANeu = New System.Windows.Forms.CheckBox() - Me.UTA_Laender = New System.Windows.Forms.LinkLabel() - Me.cbxUTAalt = New System.Windows.Forms.CheckBox() - Me.Label42 = New System.Windows.Forms.Label() - Me.cbxIDSneu = New System.Windows.Forms.CheckBox() - Me.cbxUploadDA = New System.Windows.Forms.CheckBox() - Me.cbxIDSalt = New System.Windows.Forms.CheckBox() - Me.Label5 = New System.Windows.Forms.Label() - Me.LinkLabel23 = New System.Windows.Forms.LinkLabel() - Me.LinkLabel24 = New System.Windows.Forms.LinkLabel() - Me.Button25 = New System.Windows.Forms.Button() - Me.cbxOnlyBilledTransactions = New System.Windows.Forms.CheckBox() - Me.MSE_not_billed_Trans = New System.Windows.Forms.LinkLabel() - Me.CheckBox8 = New System.Windows.Forms.CheckBox() - Me.MSE_Settlements = New System.Windows.Forms.LinkLabel() - Me.Label43 = New System.Windows.Forms.Label() - Me.MSE_missingTrans = New System.Windows.Forms.LinkLabel() - Me.Label40 = New System.Windows.Forms.Label() - Me.PictureBox25 = New System.Windows.Forms.PictureBox() - Me.MSETransID = New System.Windows.Forms.LinkLabel() + Me.txtKdNr = New VERAG_PROG_ALLGEMEIN.MyTextBox() + Me.cbxITalt = New System.Windows.Forms.CheckBox() Me.Button23 = New System.Windows.Forms.Button() - Me.Label39 = New System.Windows.Forms.Label() - Me.Label38 = New System.Windows.Forms.Label() - Me.Label37 = New System.Windows.Forms.Label() - Me.MSE_Kunden = New System.Windows.Forms.LinkLabel() - Me.LinkLabel57 = New System.Windows.Forms.LinkLabel() - Me.DateTimePicker2 = New System.Windows.Forms.DateTimePicker() - Me.DateTimePicker1 = New System.Windows.Forms.DateTimePicker() - Me.MSETransakt = New System.Windows.Forms.LinkLabel() - Me.datVon = New System.Windows.Forms.DateTimePicker() - Me.MSE_RE = New System.Windows.Forms.LinkLabel() - Me.MSE_Transaktions = New System.Windows.Forms.LinkLabel() - Me.TextBox2 = New System.Windows.Forms.TextBox() - Me.TextBox1 = New System.Windows.Forms.TextBox() - Me.cbxDateienlöschenUTA = New System.Windows.Forms.CheckBox() - Me.cbxDateienlöschenRMC = New System.Windows.Forms.CheckBox() - Me.UTA_imports = New System.Windows.Forms.LinkLabel() - Me.Label36 = New System.Windows.Forms.Label() - Me.Label35 = New System.Windows.Forms.Label() - Me.Label34 = New System.Windows.Forms.Label() - Me.Label33 = New System.Windows.Forms.Label() - Me.Label32 = New System.Windows.Forms.Label() - Me.Label31 = New System.Windows.Forms.Label() - Me.RMC_import = New System.Windows.Forms.LinkLabel() - Me.Label30 = New System.Windows.Forms.Label() - Me.Label29 = New System.Windows.Forms.Label() - Me.Label28 = New System.Windows.Forms.Label() - Me.LinkLabel49 = New System.Windows.Forms.LinkLabel() - Me.Label25 = New System.Windows.Forms.Label() + Me.cbxPlose = New System.Windows.Forms.CheckBox() + Me.PictureBox25 = New System.Windows.Forms.PictureBox() + Me.Label46 = New System.Windows.Forms.Label() + Me.Label43 = New System.Windows.Forms.Label() + Me.Label45 = New System.Windows.Forms.Label() + Me.CheckBox8 = New System.Windows.Forms.CheckBox() + Me.Button25 = New System.Windows.Forms.Button() + Me.cbxMSEneu = New System.Windows.Forms.CheckBox() + Me.cbxIDSalt = New System.Windows.Forms.CheckBox() + Me.cbxIDSneu = New System.Windows.Forms.CheckBox() + Me.cbxMSEalt = New System.Windows.Forms.CheckBox() + Me.cbxUTAalt = New System.Windows.Forms.CheckBox() + Me.cbxUTANeu = New System.Windows.Forms.CheckBox() + Me.KN8_DESTAT = New System.Windows.Forms.LinkLabel() + Me.Button24 = New System.Windows.Forms.Button() Me.cbxTestFTP = New System.Windows.Forms.CheckBox() Me.cbxTestsystem = New System.Windows.Forms.CheckBox() - Me.PictureBox21 = New System.Windows.Forms.PictureBox() - Me.LinkLabel47 = New System.Windows.Forms.LinkLabel() - Me.LinkLabel46 = New System.Windows.Forms.LinkLabel() - Me.PictureBox19 = New System.Windows.Forms.PictureBox() - Me.PictureBox18 = New System.Windows.Forms.PictureBox() - Me.LinkLabel41 = New System.Windows.Forms.LinkLabel() - Me.LinkLabel42 = New System.Windows.Forms.LinkLabel() - Me.Label23 = New System.Windows.Forms.Label() - Me.LinkLabel43 = New System.Windows.Forms.LinkLabel() - Me.LinkLabel44 = New System.Windows.Forms.LinkLabel() - Me.Label24 = New System.Windows.Forms.Label() - Me.txtPLoseKdNr = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtPloseJahr = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtUTADate = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtIDSYear = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtUTAYear = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtKdNr = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtBatchNrofTransaction = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtBatchNr = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.cbxMSEBatchNr = New VERAG_PROG_ALLGEMEIN.MyComboBox() - Me.txtTransactionID = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.cbxRMC = New VERAG_PROG_ALLGEMEIN.MyComboBox() - Me.txtTBLNr = New VERAG_PROG_ALLGEMEIN.MyTextBox() - Me.txtTWLNr = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.CheckBox2 = New System.Windows.Forms.CheckBox() Me.LinkLabel25 = New System.Windows.Forms.LinkLabel() Me.CheckBox1 = New System.Windows.Forms.CheckBox() @@ -314,14 +322,7 @@ Partial Class frmStartOptions Me.txtGJ_UNISPED = New VERAG_PROG_ALLGEMEIN.MyTextBox() Me.Button21 = New System.Windows.Forms.Button() Me.DataGridViewTextBoxColumn1 = New System.Windows.Forms.DataGridViewTextBoxColumn() - Me.TabControl1 = New System.Windows.Forms.TabControl() - Me.Asfinag = New System.Windows.Forms.TabPage() - Me.IDS = New System.Windows.Forms.TabPage() - Me.MSE = New System.Windows.Forms.TabPage() - Me.RMC = New System.Windows.Forms.TabPage() - Me.UTA = New System.Windows.Forms.TabPage() - Me.PLOSE = New System.Windows.Forms.TabPage() - Me.TabPage5 = New System.Windows.Forms.TabPage() + Me.LinkLabel53 = New System.Windows.Forms.LinkLabel() Me.pnl.SuspendLayout() CType(Me.PictureBox24, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.PictureBox23, System.ComponentModel.ISupportInitialize).BeginInit() @@ -350,22 +351,22 @@ Partial Class frmStartOptions CType(Me.dgvMRN, System.ComponentModel.ISupportInitialize).BeginInit() Me.TabPage3.SuspendLayout() Me.TabPage4.SuspendLayout() - CType(Me.PictureBox25, System.ComponentModel.ISupportInitialize).BeginInit() - CType(Me.PictureBox21, System.ComponentModel.ISupportInitialize).BeginInit() - CType(Me.PictureBox19, System.ComponentModel.ISupportInitialize).BeginInit() - CType(Me.PictureBox18, System.ComponentModel.ISupportInitialize).BeginInit() - CType(Me.PictureBox12, System.ComponentModel.ISupportInitialize).BeginInit() - CType(Me.PictureBox11, System.ComponentModel.ISupportInitialize).BeginInit() - CType(Me.PictureBox10, System.ComponentModel.ISupportInitialize).BeginInit() - CType(Me.PictureBox9, System.ComponentModel.ISupportInitialize).BeginInit() Me.TabControl1.SuspendLayout() Me.Asfinag.SuspendLayout() + CType(Me.PictureBox18, System.ComponentModel.ISupportInitialize).BeginInit() + CType(Me.PictureBox19, System.ComponentModel.ISupportInitialize).BeginInit() + CType(Me.PictureBox21, System.ComponentModel.ISupportInitialize).BeginInit() Me.IDS.SuspendLayout() Me.MSE.SuspendLayout() Me.RMC.SuspendLayout() Me.UTA.SuspendLayout() Me.PLOSE.SuspendLayout() Me.TabPage5.SuspendLayout() + CType(Me.PictureBox25, System.ComponentModel.ISupportInitialize).BeginInit() + CType(Me.PictureBox12, System.ComponentModel.ISupportInitialize).BeginInit() + CType(Me.PictureBox11, System.ComponentModel.ISupportInitialize).BeginInit() + CType(Me.PictureBox10, System.ComponentModel.ISupportInitialize).BeginInit() + CType(Me.PictureBox9, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'pnl @@ -2539,783 +2540,46 @@ Partial Class frmStartOptions Me.TabPage4.Text = "VERAG 360" Me.TabPage4.UseVisualStyleBackColor = True ' - 'IDSUpdateDAID - ' - Me.IDSUpdateDAID.AutoSize = True - Me.IDSUpdateDAID.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.IDSUpdateDAID.Location = New System.Drawing.Point(5, 174) - Me.IDSUpdateDAID.Name = "IDSUpdateDAID" - Me.IDSUpdateDAID.Size = New System.Drawing.Size(141, 13) - Me.IDSUpdateDAID.TabIndex = 169 - Me.IDSUpdateDAID.TabStop = True - Me.IDSUpdateDAID.Text = "IDS-Schnittstellen DAID akt." - ' - 'LinkLabel52 - ' - Me.LinkLabel52.AutoSize = True - Me.LinkLabel52.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.LinkLabel52.Location = New System.Drawing.Point(22, 181) - Me.LinkLabel52.Name = "LinkLabel52" - Me.LinkLabel52.Size = New System.Drawing.Size(151, 13) - Me.LinkLabel52.TabIndex = 168 - Me.LinkLabel52.TabStop = True - Me.LinkLabel52.Text = "Währung setzen (wenn NULL)" - ' - 'cbxPloseNeu - ' - Me.cbxPloseNeu.AutoSize = True - Me.cbxPloseNeu.Checked = True - Me.cbxPloseNeu.CheckState = System.Windows.Forms.CheckState.Checked - Me.cbxPloseNeu.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.cbxPloseNeu.Location = New System.Drawing.Point(144, 219) - Me.cbxPloseNeu.Name = "cbxPloseNeu" - Me.cbxPloseNeu.Size = New System.Drawing.Size(108, 17) - Me.cbxPloseNeu.TabIndex = 167 - Me.cbxPloseNeu.Text = "Plose_neueLogik" - Me.cbxPloseNeu.UseVisualStyleBackColor = True - ' - '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(22, 114) - Me.Label52.Name = "Label52" - Me.Label52.Size = New System.Drawing.Size(27, 13) - Me.Label52.TabIndex = 166 - Me.Label52.Text = "Jahr" - ' - 'IDS_REDetails - ' - Me.IDS_REDetails.AutoSize = True - Me.IDS_REDetails.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.IDS_REDetails.Location = New System.Drawing.Point(4, 156) - Me.IDS_REDetails.Name = "IDS_REDetails" - Me.IDS_REDetails.Size = New System.Drawing.Size(176, 13) - Me.IDS_REDetails.TabIndex = 165 - Me.IDS_REDetails.TabStop = True - Me.IDS_REDetails.Text = "Rechnungsdetaildaten aktualisieren" - ' - '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(19, 137) - Me.Label51.Name = "Label51" - Me.Label51.Size = New System.Drawing.Size(55, 13) - Me.Label51.TabIndex = 164 - Me.Label51.Text = "(opt) KdNr" - ' - 'lblJahrUTA - ' - Me.lblJahrUTA.AutoSize = True - Me.lblJahrUTA.Location = New System.Drawing.Point(14, 116) - Me.lblJahrUTA.Name = "lblJahrUTA" - Me.lblJahrUTA.Size = New System.Drawing.Size(30, 13) - Me.lblJahrUTA.TabIndex = 149 - Me.lblJahrUTA.Text = "Jahr:" - ' - 'UTAREPdf - ' - Me.UTAREPdf.AutoSize = True - Me.UTAREPdf.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.UTAREPdf.Location = New System.Drawing.Point(88, 208) - Me.UTAREPdf.Name = "UTAREPdf" - Me.UTAREPdf.Size = New System.Drawing.Size(119, 13) - Me.UTAREPdf.TabIndex = 161 - Me.UTAREPdf.TabStop = True - Me.UTAREPdf.Text = "PDF mit RE verknüpfen" - ' - 'KN8_DESTAT - ' - Me.KN8_DESTAT.AutoSize = True - Me.KN8_DESTAT.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.KN8_DESTAT.Location = New System.Drawing.Point(1039, 105) - Me.KN8_DESTAT.Name = "KN8_DESTAT" - Me.KN8_DESTAT.Size = New System.Drawing.Size(148, 13) - Me.KN8_DESTAT.TabIndex = 152 - Me.KN8_DESTAT.TabStop = True - Me.KN8_DESTAT.Text = "KN8 EZT DE Stat.Bundesamt" - ' - 'Laender_Steuercode - ' - Me.Laender_Steuercode.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.Laender_Steuercode.Location = New System.Drawing.Point(22, 198) - Me.Laender_Steuercode.Name = "Laender_Steuercode" - Me.Laender_Steuercode.Size = New System.Drawing.Size(132, 23) - Me.Laender_Steuercode.TabIndex = 0 - Me.Laender_Steuercode.TabStop = True - Me.Laender_Steuercode.Text = "Land in Steuernr setzen" - ' - 'PlosePdfRE - ' - Me.PlosePdfRE.AutoSize = True - Me.PlosePdfRE.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.PlosePdfRE.Location = New System.Drawing.Point(22, 161) - Me.PlosePdfRE.Name = "PlosePdfRE" - Me.PlosePdfRE.Size = New System.Drawing.Size(119, 13) - Me.PlosePdfRE.TabIndex = 159 - Me.PlosePdfRE.TabStop = True - Me.PlosePdfRE.Text = "PDF mit RE verknüpfen" - ' - 'lblUTAPDFvollst - ' - Me.lblUTAPDFvollst.AutoSize = True - Me.lblUTAPDFvollst.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.lblUTAPDFvollst.Location = New System.Drawing.Point(88, 185) - Me.lblUTAPDFvollst.Name = "lblUTAPDFvollst" - Me.lblUTAPDFvollst.Size = New System.Drawing.Size(113, 13) - Me.lblUTAPDFvollst.TabIndex = 157 - Me.lblUTAPDFvollst.TabStop = True - Me.lblUTAPDFvollst.Text = "PDF Daten vollständig" - ' - 'TextBox3 - ' - Me.TextBox3.BackColor = System.Drawing.SystemColors.Menu - Me.TextBox3.Location = New System.Drawing.Point(84, 32) - Me.TextBox3.Multiline = True - Me.TextBox3.Name = "TextBox3" - Me.TextBox3.Size = New System.Drawing.Size(89, 51) - Me.TextBox3.TabIndex = 154 - Me.TextBox3.Text = "Dateien nach Import von FTP umbenennen" - ' - 'cbxIDSUmbenenen - ' - Me.cbxIDSUmbenenen.AutoSize = True - Me.cbxIDSUmbenenen.Checked = True - Me.cbxIDSUmbenenen.CheckState = System.Windows.Forms.CheckState.Checked - Me.cbxIDSUmbenenen.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.cbxIDSUmbenenen.Location = New System.Drawing.Point(63, 41) - Me.cbxIDSUmbenenen.Name = "cbxIDSUmbenenen" - Me.cbxIDSUmbenenen.Size = New System.Drawing.Size(15, 14) - Me.cbxIDSUmbenenen.TabIndex = 153 - Me.cbxIDSUmbenenen.UseVisualStyleBackColor = True - ' - 'IDS_RE - ' - Me.IDS_RE.AutoSize = True - Me.IDS_RE.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.IDS_RE.Location = New System.Drawing.Point(4, 138) - Me.IDS_RE.Name = "IDS_RE" - Me.IDS_RE.Size = New System.Drawing.Size(151, 13) - Me.IDS_RE.TabIndex = 152 - Me.IDS_RE.TabStop = True - Me.IDS_RE.Text = "Rechnungsdaten aktualisieren" - ' - 'IDS_Laendercode - ' - Me.IDS_Laendercode.AutoSize = True - Me.IDS_Laendercode.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.IDS_Laendercode.Location = New System.Drawing.Point(4, 107) - Me.IDS_Laendercode.Name = "IDS_Laendercode" - Me.IDS_Laendercode.Size = New System.Drawing.Size(135, 13) - Me.IDS_Laendercode.TabIndex = 151 - Me.IDS_Laendercode.TabStop = True - Me.IDS_Laendercode.Text = "Ländercode ISO2 einfügen" - ' - 'cbxITalt - ' - Me.cbxITalt.AutoSize = True - Me.cbxITalt.Checked = True - Me.cbxITalt.CheckState = System.Windows.Forms.CheckState.Checked - Me.cbxITalt.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.cbxITalt.Location = New System.Drawing.Point(26, 195) - Me.cbxITalt.Name = "cbxITalt" - Me.cbxITalt.Size = New System.Drawing.Size(36, 17) - Me.cbxITalt.TabIndex = 149 - Me.cbxITalt.Text = "IT" - Me.cbxITalt.UseVisualStyleBackColor = True - ' - 'cbxPlose - ' - Me.cbxPlose.AutoSize = True - Me.cbxPlose.Checked = True - Me.cbxPlose.CheckState = System.Windows.Forms.CheckState.Checked - Me.cbxPlose.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.cbxPlose.Location = New System.Drawing.Point(144, 196) - Me.cbxPlose.Name = "cbxPlose" - Me.cbxPlose.Size = New System.Drawing.Size(101, 17) - Me.cbxPlose.TabIndex = 148 - Me.cbxPlose.Text = "Plose_alteLogik" - Me.cbxPlose.UseVisualStyleBackColor = True - ' - 'Label46 - ' - Me.Label46.AutoSize = True - Me.Label46.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label46.Location = New System.Drawing.Point(141, 106) - Me.Label46.Name = "Label46" - Me.Label46.Size = New System.Drawing.Size(111, 13) - Me.Label46.TabIndex = 147 - Me.Label46.Text = "Schnittstellen Neu" - ' - 'Label45 - ' - Me.Label45.AutoSize = True - Me.Label45.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label45.Location = New System.Drawing.Point(23, 106) - Me.Label45.Name = "Label45" - Me.Label45.Size = New System.Drawing.Size(103, 13) - Me.Label45.TabIndex = 146 - Me.Label45.Text = "Schnittstellen Alt" - ' - 'Label44 - ' - Me.Label44.AutoSize = True - Me.Label44.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label44.ForeColor = System.Drawing.Color.Red - Me.Label44.Location = New System.Drawing.Point(23, 14) - Me.Label44.Name = "Label44" - Me.Label44.Size = New System.Drawing.Size(204, 13) - Me.Label44.TabIndex = 145 - Me.Label44.Text = "USTVA-Summen berechnen (MDM)" - ' - 'cbxMSEneu - ' - Me.cbxMSEneu.AutoSize = True - Me.cbxMSEneu.Checked = True - Me.cbxMSEneu.CheckState = System.Windows.Forms.CheckState.Checked - Me.cbxMSEneu.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.cbxMSEneu.Location = New System.Drawing.Point(144, 172) - Me.cbxMSEneu.Name = "cbxMSEneu" - Me.cbxMSEneu.Size = New System.Drawing.Size(49, 17) - Me.cbxMSEneu.TabIndex = 144 - Me.cbxMSEneu.Text = "MSE" - Me.cbxMSEneu.UseVisualStyleBackColor = True - ' - 'Button24 - ' - Me.Button24.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.Button24.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.Button24.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft - Me.Button24.Location = New System.Drawing.Point(1010, 54) - Me.Button24.Name = "Button24" - Me.Button24.Size = New System.Drawing.Size(187, 38) - Me.Button24.TabIndex = 134 - Me.Button24.Text = "test" - Me.Button24.UseVisualStyleBackColor = True - ' - 'cbxMSEalt - ' - Me.cbxMSEalt.AutoSize = True - Me.cbxMSEalt.Checked = True - Me.cbxMSEalt.CheckState = System.Windows.Forms.CheckState.Checked - Me.cbxMSEalt.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.cbxMSEalt.Location = New System.Drawing.Point(26, 172) - Me.cbxMSEalt.Name = "cbxMSEalt" - Me.cbxMSEalt.Size = New System.Drawing.Size(49, 17) - Me.cbxMSEalt.TabIndex = 143 - Me.cbxMSEalt.Text = "MSE" - Me.cbxMSEalt.UseVisualStyleBackColor = True - ' - 'IDS_import - ' - Me.IDS_import.AutoSize = True - Me.IDS_import.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.IDS_import.Location = New System.Drawing.Point(9, 86) - Me.IDS_import.Name = "IDS_import" - Me.IDS_import.Size = New System.Drawing.Size(115, 13) - Me.IDS_import.TabIndex = 132 - Me.IDS_import.TabStop = True - Me.IDS_import.Text = "CSV + PDF importieren" - ' - 'cbxUTANeu - ' - Me.cbxUTANeu.AutoSize = True - Me.cbxUTANeu.Checked = True - Me.cbxUTANeu.CheckState = System.Windows.Forms.CheckState.Checked - Me.cbxUTANeu.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.cbxUTANeu.Location = New System.Drawing.Point(144, 151) - Me.cbxUTANeu.Name = "cbxUTANeu" - Me.cbxUTANeu.Size = New System.Drawing.Size(48, 17) - Me.cbxUTANeu.TabIndex = 142 - Me.cbxUTANeu.Text = "UTA" - Me.cbxUTANeu.UseVisualStyleBackColor = True - ' - 'UTA_Laender - ' - Me.UTA_Laender.AutoSize = True - Me.UTA_Laender.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.UTA_Laender.Location = New System.Drawing.Point(13, 159) - Me.UTA_Laender.Name = "UTA_Laender" - Me.UTA_Laender.Size = New System.Drawing.Size(135, 13) - Me.UTA_Laender.TabIndex = 131 - Me.UTA_Laender.TabStop = True - Me.UTA_Laender.Text = "Ländercode ISO2 einfügen" - ' - 'cbxUTAalt - ' - Me.cbxUTAalt.AutoSize = True - Me.cbxUTAalt.Checked = True - Me.cbxUTAalt.CheckState = System.Windows.Forms.CheckState.Checked - Me.cbxUTAalt.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.cbxUTAalt.Location = New System.Drawing.Point(26, 151) - Me.cbxUTAalt.Name = "cbxUTAalt" - Me.cbxUTAalt.Size = New System.Drawing.Size(48, 17) - Me.cbxUTAalt.TabIndex = 141 - Me.cbxUTAalt.Text = "UTA" - Me.cbxUTAalt.UseVisualStyleBackColor = True - ' - 'Label42 - ' - Me.Label42.AutoSize = True - Me.Label42.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label42.Location = New System.Drawing.Point(132, 210) - Me.Label42.Name = "Label42" - Me.Label42.Size = New System.Drawing.Size(40, 13) - Me.Label42.TabIndex = 130 - Me.Label42.Text = "Batch" - ' - 'cbxIDSneu - ' - Me.cbxIDSneu.AutoSize = True - Me.cbxIDSneu.Checked = True - Me.cbxIDSneu.CheckState = System.Windows.Forms.CheckState.Checked - Me.cbxIDSneu.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.cbxIDSneu.Location = New System.Drawing.Point(144, 131) - Me.cbxIDSneu.Name = "cbxIDSneu" - Me.cbxIDSneu.Size = New System.Drawing.Size(44, 17) - Me.cbxIDSneu.TabIndex = 140 - Me.cbxIDSneu.Text = "IDS" - Me.cbxIDSneu.UseVisualStyleBackColor = True - ' - 'cbxUploadDA - ' - Me.cbxUploadDA.AutoSize = True - Me.cbxUploadDA.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.cbxUploadDA.Location = New System.Drawing.Point(132, 280) - Me.cbxUploadDA.Name = "cbxUploadDA" - Me.cbxUploadDA.Size = New System.Drawing.Size(81, 17) - Me.cbxUploadDA.TabIndex = 128 - Me.cbxUploadDA.Text = "PDF ins DS" - Me.cbxUploadDA.UseVisualStyleBackColor = True - ' - 'cbxIDSalt - ' - Me.cbxIDSalt.AutoSize = True - Me.cbxIDSalt.Checked = True - Me.cbxIDSalt.CheckState = System.Windows.Forms.CheckState.Checked - Me.cbxIDSalt.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.cbxIDSalt.Location = New System.Drawing.Point(26, 131) - Me.cbxIDSalt.Name = "cbxIDSalt" - Me.cbxIDSalt.Size = New System.Drawing.Size(44, 17) - Me.cbxIDSalt.TabIndex = 139 - Me.cbxIDSalt.Text = "IDS" - Me.cbxIDSalt.UseVisualStyleBackColor = True - ' - 'Label5 - ' - Me.Label5.AutoSize = True - Me.Label5.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label5.ForeColor = System.Drawing.Color.Red - Me.Label5.Location = New System.Drawing.Point(13, 19) - Me.Label5.Name = "Label5" - Me.Label5.Size = New System.Drawing.Size(56, 16) - Me.Label5.TabIndex = 126 - Me.Label5.Text = "PLOSE" - ' - 'LinkLabel23 - ' - Me.LinkLabel23.AutoSize = True - Me.LinkLabel23.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.LinkLabel23.Location = New System.Drawing.Point(13, 81) - Me.LinkLabel23.Name = "LinkLabel23" - Me.LinkLabel23.Size = New System.Drawing.Size(180, 13) - Me.LinkLabel23.TabIndex = 125 - Me.LinkLabel23.TabStop = True - Me.LinkLabel23.Text = "Eingangsnachrichten abrufen PROD" - ' - 'LinkLabel24 - ' - Me.LinkLabel24.AutoSize = True - Me.LinkLabel24.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.LinkLabel24.Location = New System.Drawing.Point(13, 56) - Me.LinkLabel24.Name = "LinkLabel24" - Me.LinkLabel24.Size = New System.Drawing.Size(177, 13) - Me.LinkLabel24.TabIndex = 124 - Me.LinkLabel24.TabStop = True - Me.LinkLabel24.Text = "Eingangsnachrichten abrufen TEST" - ' - 'Button25 - ' - Me.Button25.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.Button25.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.Button25.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft - Me.Button25.Location = New System.Drawing.Point(26, 283) - Me.Button25.Name = "Button25" - Me.Button25.Size = New System.Drawing.Size(187, 38) - Me.Button25.TabIndex = 135 - Me.Button25.Text = "Summen anzeigen" - Me.Button25.UseVisualStyleBackColor = True - ' - 'cbxOnlyBilledTransactions - ' - Me.cbxOnlyBilledTransactions.AutoSize = True - Me.cbxOnlyBilledTransactions.Checked = True - Me.cbxOnlyBilledTransactions.CheckState = System.Windows.Forms.CheckState.Checked - Me.cbxOnlyBilledTransactions.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.cbxOnlyBilledTransactions.Location = New System.Drawing.Point(30, 59) - Me.cbxOnlyBilledTransactions.Name = "cbxOnlyBilledTransactions" - Me.cbxOnlyBilledTransactions.Size = New System.Drawing.Size(172, 17) - Me.cbxOnlyBilledTransactions.TabIndex = 121 - Me.cbxOnlyBilledTransactions.Text = "nur verrechnete Transaktionen" - Me.cbxOnlyBilledTransactions.UseVisualStyleBackColor = True - ' - 'MSE_not_billed_Trans - ' - Me.MSE_not_billed_Trans.AutoSize = True - Me.MSE_not_billed_Trans.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.MSE_not_billed_Trans.Location = New System.Drawing.Point(18, 322) - Me.MSE_not_billed_Trans.Name = "MSE_not_billed_Trans" - Me.MSE_not_billed_Trans.Size = New System.Drawing.Size(226, 13) - Me.MSE_not_billed_Trans.TabIndex = 120 - Me.MSE_not_billed_Trans.TabStop = True - Me.MSE_not_billed_Trans.Text = "nicht abgerechete Transaktionen aktualisieren" - ' - 'CheckBox8 - ' - Me.CheckBox8.AutoSize = True - Me.CheckBox8.Checked = True - Me.CheckBox8.CheckState = System.Windows.Forms.CheckState.Checked - Me.CheckBox8.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.CheckBox8.Location = New System.Drawing.Point(134, 49) - Me.CheckBox8.Name = "CheckBox8" - Me.CheckBox8.Size = New System.Drawing.Size(79, 17) - Me.CheckBox8.TabIndex = 133 - Me.CheckBox8.Text = "Testsystem" - Me.CheckBox8.UseVisualStyleBackColor = True - ' - 'MSE_Settlements - ' - Me.MSE_Settlements.AutoSize = True - Me.MSE_Settlements.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.MSE_Settlements.Location = New System.Drawing.Point(22, 106) - Me.MSE_Settlements.Name = "MSE_Settlements" - Me.MSE_Settlements.Size = New System.Drawing.Size(144, 13) - Me.MSE_Settlements.TabIndex = 119 - Me.MSE_Settlements.TabStop = True - Me.MSE_Settlements.Text = "Neueste Settlements abrufen" - ' - 'Label43 - ' - Me.Label43.AutoSize = True - Me.Label43.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label43.Location = New System.Drawing.Point(23, 76) - Me.Label43.Name = "Label43" - Me.Label43.Size = New System.Drawing.Size(35, 13) - Me.Label43.TabIndex = 132 - Me.Label43.Text = "KdNr" - ' - 'MSE_missingTrans - ' - Me.MSE_missingTrans.AutoSize = True - Me.MSE_missingTrans.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.MSE_missingTrans.Location = New System.Drawing.Point(18, 300) - Me.MSE_missingTrans.Name = "MSE_missingTrans" - Me.MSE_missingTrans.Size = New System.Drawing.Size(158, 13) - Me.MSE_missingTrans.TabIndex = 118 - Me.MSE_missingTrans.TabStop = True - Me.MSE_missingTrans.Text = "fehlende Transaktionen abrufen" - ' - 'Label40 - ' - Me.Label40.AutoSize = True - Me.Label40.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label40.Location = New System.Drawing.Point(18, 210) - Me.Label40.Name = "Label40" - Me.Label40.Size = New System.Drawing.Size(20, 13) - Me.Label40.TabIndex = 116 - Me.Label40.Text = "ID" - ' - 'PictureBox25 - ' - Me.PictureBox25.BackgroundImage = CType(resources.GetObject("PictureBox25.BackgroundImage"), System.Drawing.Image) - Me.PictureBox25.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom - Me.PictureBox25.Location = New System.Drawing.Point(234, 254) - Me.PictureBox25.Name = "PictureBox25" - Me.PictureBox25.Size = New System.Drawing.Size(18, 18) - Me.PictureBox25.TabIndex = 94 - Me.PictureBox25.TabStop = False - Me.PictureBox25.Visible = False - ' - 'MSETransID - ' - Me.MSETransID.AutoSize = True - Me.MSETransID.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.MSETransID.Location = New System.Drawing.Point(30, 230) - Me.MSETransID.Name = "MSETransID" - Me.MSETransID.Size = New System.Drawing.Size(149, 13) - Me.MSETransID.TabIndex = 114 - Me.MSETransID.TabStop = True - Me.MSETransID.Text = "Transaktionen von ID abrufen" - ' - 'Button23 - ' - Me.Button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat - Me.Button23.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.Button23.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft - Me.Button23.Location = New System.Drawing.Point(26, 238) - Me.Button23.Name = "Button23" - Me.Button23.Size = New System.Drawing.Size(187, 38) - Me.Button23.TabIndex = 93 - Me.Button23.Text = "Summen aktualisieren (USTV-Anträge)" - Me.Button23.UseVisualStyleBackColor = True - ' - 'Label39 - ' - Me.Label39.AutoSize = True - Me.Label39.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label39.Location = New System.Drawing.Point(17, 252) - Me.Label39.Name = "Label39" - Me.Label39.Size = New System.Drawing.Size(28, 13) - Me.Label39.TabIndex = 113 - Me.Label39.Text = "von" - ' - 'Label38 - ' - Me.Label38.AutoSize = True - Me.Label38.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label38.Location = New System.Drawing.Point(17, 366) - Me.Label38.Name = "Label38" - Me.Label38.Size = New System.Drawing.Size(23, 13) - Me.Label38.TabIndex = 112 - Me.Label38.Text = "bis" - ' - 'Label37 - ' - Me.Label37.AutoSize = True - Me.Label37.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label37.Location = New System.Drawing.Point(17, 347) - Me.Label37.Name = "Label37" - Me.Label37.Size = New System.Drawing.Size(28, 13) - Me.Label37.TabIndex = 111 - Me.Label37.Text = "von" - ' - 'MSE_Kunden - ' - Me.MSE_Kunden.AutoSize = True - Me.MSE_Kunden.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.MSE_Kunden.Location = New System.Drawing.Point(23, 131) - Me.MSE_Kunden.Name = "MSE_Kunden" - Me.MSE_Kunden.Size = New System.Drawing.Size(126, 13) - Me.MSE_Kunden.TabIndex = 110 - Me.MSE_Kunden.TabStop = True - Me.MSE_Kunden.Text = "Neueste Kunden abrufen" - ' - 'LinkLabel57 - ' - Me.LinkLabel57.AutoSize = True - Me.LinkLabel57.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.LinkLabel57.Location = New System.Drawing.Point(23, 180) - Me.LinkLabel57.Name = "LinkLabel57" - Me.LinkLabel57.Size = New System.Drawing.Size(166, 13) - Me.LinkLabel57.TabIndex = 108 - Me.LinkLabel57.TabStop = True - Me.LinkLabel57.Text = "Transaktionen von Batch abrufen" - ' - 'DateTimePicker2 - ' - Me.DateTimePicker2.Format = System.Windows.Forms.DateTimePickerFormat.[Short] - Me.DateTimePicker2.Location = New System.Drawing.Point(52, 360) - Me.DateTimePicker2.Name = "DateTimePicker2" - Me.DateTimePicker2.Size = New System.Drawing.Size(85, 20) - Me.DateTimePicker2.TabIndex = 107 - ' - 'DateTimePicker1 - ' - Me.DateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.[Short] - Me.DateTimePicker1.Location = New System.Drawing.Point(52, 341) - Me.DateTimePicker1.Name = "DateTimePicker1" - Me.DateTimePicker1.Size = New System.Drawing.Size(85, 20) - Me.DateTimePicker1.TabIndex = 106 - ' - 'MSETransakt - ' - Me.MSETransakt.AutoSize = True - Me.MSETransakt.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.MSETransakt.Location = New System.Drawing.Point(17, 383) - Me.MSETransakt.Name = "MSETransakt" - Me.MSETransakt.Size = New System.Drawing.Size(114, 13) - Me.MSETransakt.TabIndex = 105 - Me.MSETransakt.TabStop = True - Me.MSETransakt.Text = "Transaktionen abrufen" - ' - 'datVon - ' - Me.datVon.Format = System.Windows.Forms.DateTimePickerFormat.[Short] - Me.datVon.Location = New System.Drawing.Point(51, 252) - Me.datVon.Name = "datVon" - Me.datVon.Size = New System.Drawing.Size(85, 20) - Me.datVon.TabIndex = 104 - ' - 'MSE_RE - ' - Me.MSE_RE.AutoSize = True - Me.MSE_RE.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.MSE_RE.Location = New System.Drawing.Point(18, 280) - Me.MSE_RE.Name = "MSE_RE" - Me.MSE_RE.Size = New System.Drawing.Size(108, 13) - Me.MSE_RE.TabIndex = 103 - Me.MSE_RE.TabStop = True - Me.MSE_RE.Text = "Rechnungen abrufen" - ' - 'MSE_Transaktions - ' - Me.MSE_Transaktions.AutoSize = True - Me.MSE_Transaktions.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.MSE_Transaktions.Location = New System.Drawing.Point(23, 81) - Me.MSE_Transaktions.Name = "MSE_Transaktions" - Me.MSE_Transaktions.Size = New System.Drawing.Size(157, 13) - Me.MSE_Transaktions.TabIndex = 102 - Me.MSE_Transaktions.TabStop = True - Me.MSE_Transaktions.Text = "Neueste Transaktionen abrufen" - ' - 'TextBox2 - ' - Me.TextBox2.BackColor = System.Drawing.SystemColors.Menu - Me.TextBox2.Location = New System.Drawing.Point(36, 68) - Me.TextBox2.Multiline = True - Me.TextBox2.Name = "TextBox2" - Me.TextBox2.Size = New System.Drawing.Size(72, 55) - Me.TextBox2.TabIndex = 101 - Me.TextBox2.Text = "Dateien nach Import von FTP löschen" - ' - 'TextBox1 - ' - Me.TextBox1.BackColor = System.Drawing.SystemColors.Menu - Me.TextBox1.Location = New System.Drawing.Point(37, 52) - Me.TextBox1.Multiline = True - Me.TextBox1.Name = "TextBox1" - Me.TextBox1.Size = New System.Drawing.Size(89, 51) - Me.TextBox1.TabIndex = 100 - Me.TextBox1.Text = "Dateien nach Import von FTP löschen" - ' - 'cbxDateienlöschenUTA - ' - Me.cbxDateienlöschenUTA.AutoSize = True - Me.cbxDateienlöschenUTA.Checked = True - Me.cbxDateienlöschenUTA.CheckState = System.Windows.Forms.CheckState.Checked - Me.cbxDateienlöschenUTA.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.cbxDateienlöschenUTA.Location = New System.Drawing.Point(16, 66) - Me.cbxDateienlöschenUTA.Name = "cbxDateienlöschenUTA" - Me.cbxDateienlöschenUTA.Size = New System.Drawing.Size(15, 14) - Me.cbxDateienlöschenUTA.TabIndex = 99 - Me.cbxDateienlöschenUTA.UseVisualStyleBackColor = True - ' - 'cbxDateienlöschenRMC - ' - Me.cbxDateienlöschenRMC.AutoSize = True - Me.cbxDateienlöschenRMC.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.cbxDateienlöschenRMC.Location = New System.Drawing.Point(14, 92) - Me.cbxDateienlöschenRMC.Name = "cbxDateienlöschenRMC" - Me.cbxDateienlöschenRMC.Size = New System.Drawing.Size(15, 14) - Me.cbxDateienlöschenRMC.TabIndex = 98 - Me.cbxDateienlöschenRMC.UseVisualStyleBackColor = True - ' - 'UTA_imports - ' - Me.UTA_imports.AutoSize = True - Me.UTA_imports.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.UTA_imports.Location = New System.Drawing.Point(13, 138) - Me.UTA_imports.Name = "UTA_imports" - Me.UTA_imports.Size = New System.Drawing.Size(119, 13) - Me.UTA_imports.TabIndex = 97 - Me.UTA_imports.TabStop = True - Me.UTA_imports.Text = ".UTA + PDF importieren" - ' - 'Label36 - ' - Me.Label36.AutoSize = True - Me.Label36.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label36.Location = New System.Drawing.Point(23, 40) - Me.Label36.Name = "Label36" - Me.Label36.Size = New System.Drawing.Size(42, 13) - Me.Label36.TabIndex = 96 - Me.Label36.Text = "Import" - ' - 'Label35 - ' - Me.Label35.AutoSize = True - Me.Label35.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label35.Location = New System.Drawing.Point(6, 31) - Me.Label35.Name = "Label35" - Me.Label35.Size = New System.Drawing.Size(42, 13) - Me.Label35.TabIndex = 95 - Me.Label35.Text = "Import" - ' - 'Label34 - ' - Me.Label34.AutoSize = True - Me.Label34.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label34.Location = New System.Drawing.Point(13, 36) - Me.Label34.Name = "Label34" - Me.Label34.Size = New System.Drawing.Size(42, 13) - Me.Label34.TabIndex = 94 - Me.Label34.Text = "Import" - ' - 'Label33 - ' - Me.Label33.AutoSize = True - Me.Label33.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label33.ForeColor = System.Drawing.Color.Red - Me.Label33.Location = New System.Drawing.Point(23, 14) - Me.Label33.Name = "Label33" - Me.Label33.Size = New System.Drawing.Size(39, 16) - Me.Label33.TabIndex = 93 - Me.Label33.Text = "MSE" - ' - 'Label32 - ' - Me.Label32.AutoSize = True - Me.Label32.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label32.ForeColor = System.Drawing.Color.Red - Me.Label32.Location = New System.Drawing.Point(6, 10) - Me.Label32.Name = "Label32" - Me.Label32.Size = New System.Drawing.Size(32, 16) - Me.Label32.TabIndex = 92 - Me.Label32.Text = "IDS" - ' - 'Label31 - ' - Me.Label31.AutoSize = True - Me.Label31.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label31.ForeColor = System.Drawing.Color.Red - Me.Label31.Location = New System.Drawing.Point(13, 10) - Me.Label31.Name = "Label31" - Me.Label31.Size = New System.Drawing.Size(38, 16) - Me.Label31.TabIndex = 91 - Me.Label31.Text = "UTA" - ' - 'RMC_import - ' - Me.RMC_import.AutoSize = True - Me.RMC_import.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.RMC_import.Location = New System.Drawing.Point(11, 126) - Me.RMC_import.Name = "RMC_import" - Me.RMC_import.Size = New System.Drawing.Size(115, 13) - Me.RMC_import.TabIndex = 84 - Me.RMC_import.TabStop = True - Me.RMC_import.Text = "CSV + PDF importieren" - ' - 'Label30 - ' - Me.Label30.AutoSize = True - Me.Label30.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label30.Location = New System.Drawing.Point(11, 52) - Me.Label30.Name = "Label30" - Me.Label30.Size = New System.Drawing.Size(42, 13) - Me.Label30.TabIndex = 83 - Me.Label30.Text = "Import" - ' - 'Label29 - ' - Me.Label29.AutoSize = True - Me.Label29.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label29.ForeColor = System.Drawing.Color.Red - Me.Label29.Location = New System.Drawing.Point(13, 15) - Me.Label29.Name = "Label29" - Me.Label29.Size = New System.Drawing.Size(40, 16) - Me.Label29.TabIndex = 82 - Me.Label29.Text = "RMC" + 'TabControl1 + ' + Me.TabControl1.Controls.Add(Me.Asfinag) + Me.TabControl1.Controls.Add(Me.IDS) + Me.TabControl1.Controls.Add(Me.MSE) + Me.TabControl1.Controls.Add(Me.RMC) + Me.TabControl1.Controls.Add(Me.UTA) + Me.TabControl1.Controls.Add(Me.PLOSE) + Me.TabControl1.Controls.Add(Me.TabPage5) + Me.TabControl1.Location = New System.Drawing.Point(16, 31) + Me.TabControl1.Name = "TabControl1" + Me.TabControl1.SelectedIndex = 0 + Me.TabControl1.Size = New System.Drawing.Size(945, 466) + Me.TabControl1.TabIndex = 170 + ' + 'Asfinag + ' + Me.Asfinag.Controls.Add(Me.Label28) + Me.Asfinag.Controls.Add(Me.txtTWLNr) + Me.Asfinag.Controls.Add(Me.txtTBLNr) + Me.Asfinag.Controls.Add(Me.Label24) + Me.Asfinag.Controls.Add(Me.LinkLabel44) + Me.Asfinag.Controls.Add(Me.LinkLabel43) + Me.Asfinag.Controls.Add(Me.Label23) + Me.Asfinag.Controls.Add(Me.LinkLabel42) + Me.Asfinag.Controls.Add(Me.LinkLabel41) + Me.Asfinag.Controls.Add(Me.PictureBox18) + Me.Asfinag.Controls.Add(Me.PictureBox19) + Me.Asfinag.Controls.Add(Me.LinkLabel46) + Me.Asfinag.Controls.Add(Me.LinkLabel47) + Me.Asfinag.Controls.Add(Me.PictureBox21) + Me.Asfinag.Controls.Add(Me.Label25) + Me.Asfinag.Controls.Add(Me.LinkLabel49) + Me.Asfinag.Location = New System.Drawing.Point(4, 22) + Me.Asfinag.Name = "Asfinag" + Me.Asfinag.Padding = New System.Windows.Forms.Padding(3) + Me.Asfinag.Size = New System.Drawing.Size(937, 440) + Me.Asfinag.TabIndex = 0 + Me.Asfinag.Text = "Asfinag" + Me.Asfinag.UseVisualStyleBackColor = True ' 'Label28 ' @@ -3328,148 +2592,63 @@ Partial Class frmStartOptions Me.Label28.TabIndex = 81 Me.Label28.Text = "ASFINAG" ' - 'LinkLabel49 + 'txtTWLNr ' - Me.LinkLabel49.AutoSize = True - Me.LinkLabel49.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.LinkLabel49.Location = New System.Drawing.Point(19, 206) - Me.LinkLabel49.Name = "LinkLabel49" - Me.LinkLabel49.Size = New System.Drawing.Size(136, 13) - Me.LinkLabel49.TabIndex = 80 - Me.LinkLabel49.TabStop = True - Me.LinkLabel49.Text = "6. Black-List und White List" + Me.txtTWLNr._DateTimeOnly = False + Me.txtTWLNr._numbersOnly = True + Me.txtTWLNr._numbersOnlyKommastellen = "" + Me.txtTWLNr._numbersOnlyTrennzeichen = False + Me.txtTWLNr._Prozent = False + Me.txtTWLNr._ShortDateNew = False + Me.txtTWLNr._ShortDateOnly = False + Me.txtTWLNr._TimeOnly = False + Me.txtTWLNr._TimeOnly_Seconds = False + Me.txtTWLNr._value = "" + Me.txtTWLNr._Waehrung = False + Me.txtTWLNr._WaehrungZeichen = True + Me.txtTWLNr.ForeColor = System.Drawing.Color.Red + Me.txtTWLNr.Location = New System.Drawing.Point(168, 152) + Me.txtTWLNr.MaxLineLength = -1 + Me.txtTWLNr.MaxLines_Warning = "" + Me.txtTWLNr.MaxLines_Warning_Label = Nothing + Me.txtTWLNr.Name = "txtTWLNr" + Me.txtTWLNr.ReadOnly = True + Me.txtTWLNr.Size = New System.Drawing.Size(53, 20) + Me.txtTWLNr.TabIndex = 78 ' - 'Label25 + 'txtTBLNr ' - Me.Label25.AutoSize = True - Me.Label25.Location = New System.Drawing.Point(168, 136) - Me.Label25.Name = "Label25" - Me.Label25.Size = New System.Drawing.Size(32, 13) - Me.Label25.TabIndex = 78 - Me.Label25.Text = "lfd Nr" + Me.txtTBLNr._DateTimeOnly = False + Me.txtTBLNr._numbersOnly = True + Me.txtTBLNr._numbersOnlyKommastellen = "" + Me.txtTBLNr._numbersOnlyTrennzeichen = False + Me.txtTBLNr._Prozent = False + Me.txtTBLNr._ShortDateNew = False + Me.txtTBLNr._ShortDateOnly = False + Me.txtTBLNr._TimeOnly = False + Me.txtTBLNr._TimeOnly_Seconds = False + Me.txtTBLNr._value = "" + Me.txtTBLNr._Waehrung = False + Me.txtTBLNr._WaehrungZeichen = True + Me.txtTBLNr.ForeColor = System.Drawing.Color.Red + Me.txtTBLNr.Location = New System.Drawing.Point(168, 180) + Me.txtTBLNr.MaxLineLength = -1 + Me.txtTBLNr.MaxLines_Warning = "" + Me.txtTBLNr.MaxLines_Warning_Label = Nothing + Me.txtTBLNr.Name = "txtTBLNr" + Me.txtTBLNr.ReadOnly = True + Me.txtTBLNr.Size = New System.Drawing.Size(53, 20) + Me.txtTBLNr.TabIndex = 79 ' - 'cbxTestFTP + 'Label24 ' - Me.cbxTestFTP.AutoSize = True - Me.cbxTestFTP.Checked = True - Me.cbxTestFTP.CheckState = System.Windows.Forms.CheckState.Checked - Me.cbxTestFTP.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.cbxTestFTP.Location = New System.Drawing.Point(145, 10) - Me.cbxTestFTP.Name = "cbxTestFTP" - Me.cbxTestFTP.Size = New System.Drawing.Size(123, 17) - Me.cbxTestFTP.TabIndex = 77 - Me.cbxTestFTP.Text = "Import von Test-FTP" - Me.cbxTestFTP.UseVisualStyleBackColor = True - ' - 'cbxTestsystem - ' - Me.cbxTestsystem.AutoSize = True - Me.cbxTestsystem.Checked = True - Me.cbxTestsystem.CheckState = System.Windows.Forms.CheckState.Checked - Me.cbxTestsystem.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.cbxTestsystem.Location = New System.Drawing.Point(19, 8) - Me.cbxTestsystem.Name = "cbxTestsystem" - Me.cbxTestsystem.Size = New System.Drawing.Size(122, 17) - Me.cbxTestsystem.TabIndex = 76 - Me.cbxTestsystem.Text = "Import in Testsystem" - Me.cbxTestsystem.UseVisualStyleBackColor = True - ' - 'PictureBox21 - ' - Me.PictureBox21.BackgroundImage = CType(resources.GetObject("PictureBox21.BackgroundImage"), System.Drawing.Image) - Me.PictureBox21.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom - Me.PictureBox21.Location = New System.Drawing.Point(101, 88) - Me.PictureBox21.Name = "PictureBox21" - Me.PictureBox21.Size = New System.Drawing.Size(18, 18) - Me.PictureBox21.TabIndex = 40 - Me.PictureBox21.TabStop = False - Me.PictureBox21.Visible = False - ' - 'LinkLabel47 - ' - Me.LinkLabel47.AutoSize = True - Me.LinkLabel47.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.LinkLabel47.Location = New System.Drawing.Point(19, 89) - Me.LinkLabel47.Name = "LinkLabel47" - Me.LinkLabel47.Size = New System.Drawing.Size(84, 13) - Me.LinkLabel47.TabIndex = 39 - Me.LinkLabel47.TabStop = True - Me.LinkLabel47.Text = "3. Import to SDL" - ' - 'LinkLabel46 - ' - Me.LinkLabel46.AutoSize = True - Me.LinkLabel46.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.LinkLabel46.Location = New System.Drawing.Point(19, 109) - Me.LinkLabel46.Name = "LinkLabel46" - Me.LinkLabel46.Size = New System.Drawing.Size(120, 13) - Me.LinkLabel46.TabIndex = 38 - Me.LinkLabel46.TabStop = True - Me.LinkLabel46.Text = "Contractdaten anzeigen" - ' - 'PictureBox19 - ' - Me.PictureBox19.BackgroundImage = CType(resources.GetObject("PictureBox19.BackgroundImage"), System.Drawing.Image) - Me.PictureBox19.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom - Me.PictureBox19.Location = New System.Drawing.Point(121, 180) - Me.PictureBox19.Name = "PictureBox19" - Me.PictureBox19.Size = New System.Drawing.Size(18, 18) - Me.PictureBox19.TabIndex = 37 - Me.PictureBox19.TabStop = False - Me.PictureBox19.Visible = False - ' - 'PictureBox18 - ' - Me.PictureBox18.BackgroundImage = CType(resources.GetObject("PictureBox18.BackgroundImage"), System.Drawing.Image) - Me.PictureBox18.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom - Me.PictureBox18.Location = New System.Drawing.Point(121, 150) - Me.PictureBox18.Name = "PictureBox18" - Me.PictureBox18.Size = New System.Drawing.Size(18, 18) - Me.PictureBox18.TabIndex = 36 - Me.PictureBox18.TabStop = False - Me.PictureBox18.Visible = False - ' - 'LinkLabel41 - ' - Me.LinkLabel41.AutoSize = True - Me.LinkLabel41.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.LinkLabel41.Location = New System.Drawing.Point(19, 180) - Me.LinkLabel41.Name = "LinkLabel41" - Me.LinkLabel41.Size = New System.Drawing.Size(94, 13) - Me.LinkLabel41.TabIndex = 35 - Me.LinkLabel41.TabStop = True - Me.LinkLabel41.Text = "5. Black-List (TBL)" - ' - 'LinkLabel42 - ' - Me.LinkLabel42.AutoSize = True - Me.LinkLabel42.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.LinkLabel42.Location = New System.Drawing.Point(19, 155) - Me.LinkLabel42.Name = "LinkLabel42" - Me.LinkLabel42.Size = New System.Drawing.Size(99, 13) - Me.LinkLabel42.TabIndex = 34 - Me.LinkLabel42.TabStop = True - Me.LinkLabel42.Text = "4. White-List (TWL)" - ' - 'Label23 - ' - Me.Label23.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label23.Location = New System.Drawing.Point(19, 128) - Me.Label23.Name = "Label23" - Me.Label23.Size = New System.Drawing.Size(111, 19) - Me.Label23.TabIndex = 33 - Me.Label23.Text = "Export" - ' - 'LinkLabel43 - ' - Me.LinkLabel43.AutoSize = True - Me.LinkLabel43.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) - Me.LinkLabel43.Location = New System.Drawing.Point(19, 54) - Me.LinkLabel43.Name = "LinkLabel43" - Me.LinkLabel43.Size = New System.Drawing.Size(114, 13) - Me.LinkLabel43.TabIndex = 32 - Me.LinkLabel43.TabStop = True - Me.LinkLabel43.Text = "1. Contractdaten (CLF)" + Me.Label24.AutoSize = True + Me.Label24.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label24.Location = New System.Drawing.Point(19, 30) + Me.Label24.Name = "Label24" + Me.Label24.Size = New System.Drawing.Size(42, 13) + Me.Label24.TabIndex = 30 + Me.Label24.Text = "Import" ' 'LinkLabel44 ' @@ -3482,93 +2661,164 @@ Partial Class frmStartOptions Me.LinkLabel44.TabStop = True Me.LinkLabel44.Text = "2. Transaktionsdaten (TTR)" ' - 'Label24 + 'LinkLabel43 ' - Me.Label24.AutoSize = True - Me.Label24.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) - Me.Label24.Location = New System.Drawing.Point(19, 30) - Me.Label24.Name = "Label24" - Me.Label24.Size = New System.Drawing.Size(42, 13) - Me.Label24.TabIndex = 30 - Me.Label24.Text = "Import" + Me.LinkLabel43.AutoSize = True + Me.LinkLabel43.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.LinkLabel43.Location = New System.Drawing.Point(19, 54) + Me.LinkLabel43.Name = "LinkLabel43" + Me.LinkLabel43.Size = New System.Drawing.Size(114, 13) + Me.LinkLabel43.TabIndex = 32 + Me.LinkLabel43.TabStop = True + Me.LinkLabel43.Text = "1. Contractdaten (CLF)" ' - 'txtPLoseKdNr + 'Label23 ' - Me.txtPLoseKdNr._DateTimeOnly = False - Me.txtPLoseKdNr._numbersOnly = True - Me.txtPLoseKdNr._numbersOnlyKommastellen = "" - Me.txtPLoseKdNr._numbersOnlyTrennzeichen = False - Me.txtPLoseKdNr._Prozent = False - Me.txtPLoseKdNr._ShortDateNew = False - Me.txtPLoseKdNr._ShortDateOnly = False - Me.txtPLoseKdNr._TimeOnly = False - Me.txtPLoseKdNr._TimeOnly_Seconds = False - Me.txtPLoseKdNr._value = "" - Me.txtPLoseKdNr._Waehrung = False - Me.txtPLoseKdNr._WaehrungZeichen = False - Me.txtPLoseKdNr.BackColor = System.Drawing.SystemColors.Window - Me.txtPLoseKdNr.ForeColor = System.Drawing.Color.Red - Me.txtPLoseKdNr.Location = New System.Drawing.Point(88, 134) - Me.txtPLoseKdNr.MaxLength = 10 - Me.txtPLoseKdNr.MaxLineLength = -1 - Me.txtPLoseKdNr.MaxLines_Warning = "" - Me.txtPLoseKdNr.MaxLines_Warning_Label = Nothing - Me.txtPLoseKdNr.Name = "txtPLoseKdNr" - Me.txtPLoseKdNr.Size = New System.Drawing.Size(66, 20) - Me.txtPLoseKdNr.TabIndex = 162 - Me.txtPLoseKdNr.TextAlign = System.Windows.Forms.HorizontalAlignment.Center + Me.Label23.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label23.Location = New System.Drawing.Point(19, 128) + Me.Label23.Name = "Label23" + Me.Label23.Size = New System.Drawing.Size(111, 19) + Me.Label23.TabIndex = 33 + Me.Label23.Text = "Export" ' - 'txtPloseJahr + 'LinkLabel42 ' - Me.txtPloseJahr._DateTimeOnly = False - Me.txtPloseJahr._numbersOnly = True - Me.txtPloseJahr._numbersOnlyKommastellen = "" - Me.txtPloseJahr._numbersOnlyTrennzeichen = False - Me.txtPloseJahr._Prozent = False - Me.txtPloseJahr._ShortDateNew = False - Me.txtPloseJahr._ShortDateOnly = False - Me.txtPloseJahr._TimeOnly = False - Me.txtPloseJahr._TimeOnly_Seconds = False - Me.txtPloseJahr._value = "" - Me.txtPloseJahr._Waehrung = False - Me.txtPloseJahr._WaehrungZeichen = False - Me.txtPloseJahr.BackColor = System.Drawing.SystemColors.Window - Me.txtPloseJahr.ForeColor = System.Drawing.Color.Red - Me.txtPloseJahr.Location = New System.Drawing.Point(88, 111) - Me.txtPloseJahr.MaxLength = 10 - Me.txtPloseJahr.MaxLineLength = -1 - Me.txtPloseJahr.MaxLines_Warning = "" - Me.txtPloseJahr.MaxLines_Warning_Label = Nothing - Me.txtPloseJahr.Name = "txtPloseJahr" - Me.txtPloseJahr.Size = New System.Drawing.Size(66, 20) - Me.txtPloseJahr.TabIndex = 158 - Me.txtPloseJahr.TextAlign = System.Windows.Forms.HorizontalAlignment.Center + Me.LinkLabel42.AutoSize = True + Me.LinkLabel42.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.LinkLabel42.Location = New System.Drawing.Point(19, 155) + Me.LinkLabel42.Name = "LinkLabel42" + Me.LinkLabel42.Size = New System.Drawing.Size(99, 13) + Me.LinkLabel42.TabIndex = 34 + Me.LinkLabel42.TabStop = True + Me.LinkLabel42.Text = "4. White-List (TWL)" ' - 'txtUTADate + 'LinkLabel41 ' - Me.txtUTADate._DateTimeOnly = False - Me.txtUTADate._numbersOnly = False - Me.txtUTADate._numbersOnlyKommastellen = "" - Me.txtUTADate._numbersOnlyTrennzeichen = False - Me.txtUTADate._Prozent = False - Me.txtUTADate._ShortDateNew = False - Me.txtUTADate._ShortDateOnly = True - Me.txtUTADate._TimeOnly = False - Me.txtUTADate._TimeOnly_Seconds = False - Me.txtUTADate._value = "" - Me.txtUTADate._Waehrung = False - Me.txtUTADate._WaehrungZeichen = True - Me.txtUTADate.BackColor = System.Drawing.SystemColors.Window - Me.txtUTADate.ForeColor = System.Drawing.Color.Red - Me.txtUTADate.Location = New System.Drawing.Point(17, 183) - Me.txtUTADate.MaxLength = 10 - Me.txtUTADate.MaxLineLength = -1 - Me.txtUTADate.MaxLines_Warning = "" - Me.txtUTADate.MaxLines_Warning_Label = Nothing - Me.txtUTADate.Name = "txtUTADate" - Me.txtUTADate.Size = New System.Drawing.Size(66, 20) - Me.txtUTADate.TabIndex = 156 - Me.txtUTADate.TextAlign = System.Windows.Forms.HorizontalAlignment.Center + Me.LinkLabel41.AutoSize = True + Me.LinkLabel41.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.LinkLabel41.Location = New System.Drawing.Point(19, 180) + Me.LinkLabel41.Name = "LinkLabel41" + Me.LinkLabel41.Size = New System.Drawing.Size(94, 13) + Me.LinkLabel41.TabIndex = 35 + Me.LinkLabel41.TabStop = True + Me.LinkLabel41.Text = "5. Black-List (TBL)" + ' + 'PictureBox18 + ' + Me.PictureBox18.BackgroundImage = CType(resources.GetObject("PictureBox18.BackgroundImage"), System.Drawing.Image) + Me.PictureBox18.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom + Me.PictureBox18.Location = New System.Drawing.Point(121, 150) + Me.PictureBox18.Name = "PictureBox18" + Me.PictureBox18.Size = New System.Drawing.Size(18, 18) + Me.PictureBox18.TabIndex = 36 + Me.PictureBox18.TabStop = False + Me.PictureBox18.Visible = False + ' + 'PictureBox19 + ' + Me.PictureBox19.BackgroundImage = CType(resources.GetObject("PictureBox19.BackgroundImage"), System.Drawing.Image) + Me.PictureBox19.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom + Me.PictureBox19.Location = New System.Drawing.Point(121, 180) + Me.PictureBox19.Name = "PictureBox19" + Me.PictureBox19.Size = New System.Drawing.Size(18, 18) + Me.PictureBox19.TabIndex = 37 + Me.PictureBox19.TabStop = False + Me.PictureBox19.Visible = False + ' + 'LinkLabel46 + ' + Me.LinkLabel46.AutoSize = True + Me.LinkLabel46.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.LinkLabel46.Location = New System.Drawing.Point(19, 109) + Me.LinkLabel46.Name = "LinkLabel46" + Me.LinkLabel46.Size = New System.Drawing.Size(120, 13) + Me.LinkLabel46.TabIndex = 38 + Me.LinkLabel46.TabStop = True + Me.LinkLabel46.Text = "Contractdaten anzeigen" + ' + 'LinkLabel47 + ' + Me.LinkLabel47.AutoSize = True + Me.LinkLabel47.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.LinkLabel47.Location = New System.Drawing.Point(19, 89) + Me.LinkLabel47.Name = "LinkLabel47" + Me.LinkLabel47.Size = New System.Drawing.Size(84, 13) + Me.LinkLabel47.TabIndex = 39 + Me.LinkLabel47.TabStop = True + Me.LinkLabel47.Text = "3. Import to SDL" + ' + 'PictureBox21 + ' + Me.PictureBox21.BackgroundImage = CType(resources.GetObject("PictureBox21.BackgroundImage"), System.Drawing.Image) + Me.PictureBox21.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom + Me.PictureBox21.Location = New System.Drawing.Point(101, 88) + Me.PictureBox21.Name = "PictureBox21" + Me.PictureBox21.Size = New System.Drawing.Size(18, 18) + Me.PictureBox21.TabIndex = 40 + Me.PictureBox21.TabStop = False + Me.PictureBox21.Visible = False + ' + 'Label25 + ' + Me.Label25.AutoSize = True + Me.Label25.Location = New System.Drawing.Point(168, 136) + Me.Label25.Name = "Label25" + Me.Label25.Size = New System.Drawing.Size(32, 13) + Me.Label25.TabIndex = 78 + Me.Label25.Text = "lfd Nr" + ' + 'LinkLabel49 + ' + Me.LinkLabel49.AutoSize = True + Me.LinkLabel49.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.LinkLabel49.Location = New System.Drawing.Point(19, 206) + Me.LinkLabel49.Name = "LinkLabel49" + Me.LinkLabel49.Size = New System.Drawing.Size(136, 13) + Me.LinkLabel49.TabIndex = 80 + Me.LinkLabel49.TabStop = True + Me.LinkLabel49.Text = "6. Black-List und White List" + ' + 'IDS + ' + Me.IDS.Controls.Add(Me.IDSUpdateDAID) + Me.IDS.Controls.Add(Me.Label32) + Me.IDS.Controls.Add(Me.txtIDSYear) + Me.IDS.Controls.Add(Me.Label35) + Me.IDS.Controls.Add(Me.IDS_import) + Me.IDS.Controls.Add(Me.IDS_REDetails) + Me.IDS.Controls.Add(Me.IDS_Laendercode) + Me.IDS.Controls.Add(Me.IDS_RE) + Me.IDS.Controls.Add(Me.cbxIDSUmbenenen) + Me.IDS.Controls.Add(Me.TextBox3) + Me.IDS.Location = New System.Drawing.Point(4, 22) + Me.IDS.Name = "IDS" + Me.IDS.Padding = New System.Windows.Forms.Padding(3) + Me.IDS.Size = New System.Drawing.Size(937, 440) + Me.IDS.TabIndex = 1 + Me.IDS.Text = "IDS" + Me.IDS.UseVisualStyleBackColor = True + ' + 'IDSUpdateDAID + ' + Me.IDSUpdateDAID.AutoSize = True + Me.IDSUpdateDAID.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.IDSUpdateDAID.Location = New System.Drawing.Point(5, 174) + Me.IDSUpdateDAID.Name = "IDSUpdateDAID" + Me.IDSUpdateDAID.Size = New System.Drawing.Size(141, 13) + Me.IDSUpdateDAID.TabIndex = 169 + Me.IDSUpdateDAID.TabStop = True + Me.IDSUpdateDAID.Text = "IDS-Schnittstellen DAID akt." + ' + 'Label32 + ' + Me.Label32.AutoSize = True + Me.Label32.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label32.ForeColor = System.Drawing.Color.Red + Me.Label32.Location = New System.Drawing.Point(6, 10) + Me.Label32.Name = "Label32" + Me.Label32.Size = New System.Drawing.Size(32, 16) + Me.Label32.TabIndex = 92 + Me.Label32.Text = "IDS" ' 'txtIDSYear ' @@ -3596,120 +2846,126 @@ Partial Class frmStartOptions Me.txtIDSYear.TabIndex = 155 Me.txtIDSYear.TextAlign = System.Windows.Forms.HorizontalAlignment.Center ' - 'txtUTAYear + 'Label35 ' - Me.txtUTAYear._DateTimeOnly = False - Me.txtUTAYear._numbersOnly = True - Me.txtUTAYear._numbersOnlyKommastellen = "" - Me.txtUTAYear._numbersOnlyTrennzeichen = False - Me.txtUTAYear._Prozent = False - Me.txtUTAYear._ShortDateNew = False - Me.txtUTAYear._ShortDateOnly = False - Me.txtUTAYear._TimeOnly = False - Me.txtUTAYear._TimeOnly_Seconds = False - Me.txtUTAYear._value = "" - Me.txtUTAYear._Waehrung = False - Me.txtUTAYear._WaehrungZeichen = True - Me.txtUTAYear.BackColor = System.Drawing.SystemColors.Window - Me.txtUTAYear.ForeColor = System.Drawing.Color.Red - Me.txtUTAYear.Location = New System.Drawing.Point(58, 113) - Me.txtUTAYear.MaxLength = 10 - Me.txtUTAYear.MaxLineLength = -1 - Me.txtUTAYear.MaxLines_Warning = "" - Me.txtUTAYear.MaxLines_Warning_Label = Nothing - Me.txtUTAYear.Name = "txtUTAYear" - Me.txtUTAYear.Size = New System.Drawing.Size(66, 20) - Me.txtUTAYear.TabIndex = 133 - Me.txtUTAYear.TextAlign = System.Windows.Forms.HorizontalAlignment.Center + Me.Label35.AutoSize = True + Me.Label35.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label35.Location = New System.Drawing.Point(6, 31) + Me.Label35.Name = "Label35" + Me.Label35.Size = New System.Drawing.Size(42, 13) + Me.Label35.TabIndex = 95 + Me.Label35.Text = "Import" ' - 'txtKdNr + 'IDS_import ' - Me.txtKdNr._DateTimeOnly = False - Me.txtKdNr._numbersOnly = True - Me.txtKdNr._numbersOnlyKommastellen = "" - Me.txtKdNr._numbersOnlyTrennzeichen = False - Me.txtKdNr._Prozent = False - Me.txtKdNr._ShortDateNew = False - Me.txtKdNr._ShortDateOnly = False - Me.txtKdNr._TimeOnly = False - Me.txtKdNr._TimeOnly_Seconds = False - Me.txtKdNr._value = "" - Me.txtKdNr._Waehrung = False - Me.txtKdNr._WaehrungZeichen = True - Me.txtKdNr.ForeColor = System.Drawing.Color.Black - Me.txtKdNr.Location = New System.Drawing.Point(77, 69) - Me.txtKdNr.MaxLength = 50 - Me.txtKdNr.MaxLineLength = -1 - Me.txtKdNr.MaxLines_Warning = "" - Me.txtKdNr.MaxLines_Warning_Label = Nothing - Me.txtKdNr.Name = "txtKdNr" - Me.txtKdNr.Size = New System.Drawing.Size(136, 20) - Me.txtKdNr.TabIndex = 95 + Me.IDS_import.AutoSize = True + Me.IDS_import.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.IDS_import.Location = New System.Drawing.Point(9, 86) + Me.IDS_import.Name = "IDS_import" + Me.IDS_import.Size = New System.Drawing.Size(115, 13) + Me.IDS_import.TabIndex = 132 + Me.IDS_import.TabStop = True + Me.IDS_import.Text = "CSV + PDF importieren" ' - 'txtBatchNrofTransaction + 'IDS_REDetails ' - Me.txtBatchNrofTransaction._DateTimeOnly = False - Me.txtBatchNrofTransaction._numbersOnly = True - Me.txtBatchNrofTransaction._numbersOnlyKommastellen = "" - Me.txtBatchNrofTransaction._numbersOnlyTrennzeichen = False - Me.txtBatchNrofTransaction._Prozent = False - Me.txtBatchNrofTransaction._ShortDateNew = False - Me.txtBatchNrofTransaction._ShortDateOnly = False - Me.txtBatchNrofTransaction._TimeOnly = False - Me.txtBatchNrofTransaction._TimeOnly_Seconds = False - Me.txtBatchNrofTransaction._value = "" - Me.txtBatchNrofTransaction._Waehrung = False - Me.txtBatchNrofTransaction._WaehrungZeichen = True - Me.txtBatchNrofTransaction.BackColor = System.Drawing.SystemColors.Window - Me.txtBatchNrofTransaction.ForeColor = System.Drawing.Color.Red - Me.txtBatchNrofTransaction.Location = New System.Drawing.Point(177, 207) - Me.txtBatchNrofTransaction.MaxLength = 10 - Me.txtBatchNrofTransaction.MaxLineLength = -1 - Me.txtBatchNrofTransaction.MaxLines_Warning = "" - Me.txtBatchNrofTransaction.MaxLines_Warning_Label = Nothing - Me.txtBatchNrofTransaction.Name = "txtBatchNrofTransaction" - Me.txtBatchNrofTransaction.Size = New System.Drawing.Size(36, 20) - Me.txtBatchNrofTransaction.TabIndex = 129 - Me.txtBatchNrofTransaction.TextAlign = System.Windows.Forms.HorizontalAlignment.Center + Me.IDS_REDetails.AutoSize = True + Me.IDS_REDetails.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.IDS_REDetails.Location = New System.Drawing.Point(4, 156) + Me.IDS_REDetails.Name = "IDS_REDetails" + Me.IDS_REDetails.Size = New System.Drawing.Size(176, 13) + Me.IDS_REDetails.TabIndex = 165 + Me.IDS_REDetails.TabStop = True + Me.IDS_REDetails.Text = "Rechnungsdetaildaten aktualisieren" ' - 'txtBatchNr + 'IDS_Laendercode ' - Me.txtBatchNr._DateTimeOnly = False - Me.txtBatchNr._numbersOnly = True - Me.txtBatchNr._numbersOnlyKommastellen = "" - Me.txtBatchNr._numbersOnlyTrennzeichen = False - Me.txtBatchNr._Prozent = False - Me.txtBatchNr._ShortDateNew = False - Me.txtBatchNr._ShortDateOnly = False - Me.txtBatchNr._TimeOnly = False - Me.txtBatchNr._TimeOnly_Seconds = False - Me.txtBatchNr._value = "" - Me.txtBatchNr._Waehrung = False - Me.txtBatchNr._WaehrungZeichen = True - Me.txtBatchNr.BackColor = System.Drawing.SystemColors.Window - Me.txtBatchNr.ForeColor = System.Drawing.Color.Red - Me.txtBatchNr.Location = New System.Drawing.Point(81, 156) - Me.txtBatchNr.MaxLength = 10 - Me.txtBatchNr.MaxLineLength = -1 - Me.txtBatchNr.MaxLines_Warning = "" - Me.txtBatchNr.MaxLines_Warning_Label = Nothing - Me.txtBatchNr.Name = "txtBatchNr" - Me.txtBatchNr.Size = New System.Drawing.Size(36, 20) - Me.txtBatchNr.TabIndex = 127 - Me.txtBatchNr.TextAlign = System.Windows.Forms.HorizontalAlignment.Center + Me.IDS_Laendercode.AutoSize = True + Me.IDS_Laendercode.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.IDS_Laendercode.Location = New System.Drawing.Point(4, 107) + Me.IDS_Laendercode.Name = "IDS_Laendercode" + Me.IDS_Laendercode.Size = New System.Drawing.Size(135, 13) + Me.IDS_Laendercode.TabIndex = 151 + Me.IDS_Laendercode.TabStop = True + Me.IDS_Laendercode.Text = "Ländercode ISO2 einfügen" ' - 'cbxMSEBatchNr + 'IDS_RE ' - Me.cbxMSEBatchNr._allowedValuesFreiText = Nothing - Me.cbxMSEBatchNr._allowFreiText = True - Me.cbxMSEBatchNr._value = "" - Me.cbxMSEBatchNr.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList - Me.cbxMSEBatchNr.DropDownWidth = 20 - Me.cbxMSEBatchNr.FormattingEnabled = True - Me.cbxMSEBatchNr.Location = New System.Drawing.Point(30, 156) - Me.cbxMSEBatchNr.Name = "cbxMSEBatchNr" - Me.cbxMSEBatchNr.Size = New System.Drawing.Size(44, 21) - Me.cbxMSEBatchNr.TabIndex = 122 + Me.IDS_RE.AutoSize = True + Me.IDS_RE.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.IDS_RE.Location = New System.Drawing.Point(4, 138) + Me.IDS_RE.Name = "IDS_RE" + Me.IDS_RE.Size = New System.Drawing.Size(151, 13) + Me.IDS_RE.TabIndex = 152 + Me.IDS_RE.TabStop = True + Me.IDS_RE.Text = "Rechnungsdaten aktualisieren" + ' + 'cbxIDSUmbenenen + ' + Me.cbxIDSUmbenenen.AutoSize = True + Me.cbxIDSUmbenenen.Checked = True + Me.cbxIDSUmbenenen.CheckState = System.Windows.Forms.CheckState.Checked + Me.cbxIDSUmbenenen.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.cbxIDSUmbenenen.Location = New System.Drawing.Point(63, 41) + Me.cbxIDSUmbenenen.Name = "cbxIDSUmbenenen" + Me.cbxIDSUmbenenen.Size = New System.Drawing.Size(15, 14) + Me.cbxIDSUmbenenen.TabIndex = 153 + Me.cbxIDSUmbenenen.UseVisualStyleBackColor = True + ' + 'TextBox3 + ' + Me.TextBox3.BackColor = System.Drawing.SystemColors.Menu + Me.TextBox3.Location = New System.Drawing.Point(84, 32) + Me.TextBox3.Multiline = True + Me.TextBox3.Name = "TextBox3" + Me.TextBox3.Size = New System.Drawing.Size(89, 51) + Me.TextBox3.TabIndex = 154 + Me.TextBox3.Text = "Dateien nach Import von FTP umbenennen" + ' + 'MSE + ' + Me.MSE.Controls.Add(Me.Label33) + Me.MSE.Controls.Add(Me.txtTransactionID) + Me.MSE.Controls.Add(Me.cbxMSEBatchNr) + Me.MSE.Controls.Add(Me.txtBatchNr) + Me.MSE.Controls.Add(Me.txtBatchNrofTransaction) + Me.MSE.Controls.Add(Me.Label36) + Me.MSE.Controls.Add(Me.MSE_Transaktions) + Me.MSE.Controls.Add(Me.MSE_RE) + Me.MSE.Controls.Add(Me.datVon) + Me.MSE.Controls.Add(Me.MSETransakt) + Me.MSE.Controls.Add(Me.DateTimePicker1) + Me.MSE.Controls.Add(Me.DateTimePicker2) + Me.MSE.Controls.Add(Me.LinkLabel57) + Me.MSE.Controls.Add(Me.MSE_Kunden) + Me.MSE.Controls.Add(Me.Label37) + Me.MSE.Controls.Add(Me.Label38) + Me.MSE.Controls.Add(Me.Label39) + Me.MSE.Controls.Add(Me.MSETransID) + Me.MSE.Controls.Add(Me.Label40) + Me.MSE.Controls.Add(Me.MSE_missingTrans) + Me.MSE.Controls.Add(Me.MSE_Settlements) + Me.MSE.Controls.Add(Me.MSE_not_billed_Trans) + Me.MSE.Controls.Add(Me.Label42) + Me.MSE.Controls.Add(Me.cbxOnlyBilledTransactions) + Me.MSE.Controls.Add(Me.cbxUploadDA) + Me.MSE.Location = New System.Drawing.Point(4, 22) + Me.MSE.Name = "MSE" + Me.MSE.Size = New System.Drawing.Size(937, 440) + Me.MSE.TabIndex = 2 + Me.MSE.Text = "MSE" + Me.MSE.UseVisualStyleBackColor = True + ' + 'Label33 + ' + Me.Label33.AutoSize = True + Me.Label33.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label33.ForeColor = System.Drawing.Color.Red + Me.Label33.Location = New System.Drawing.Point(23, 14) + Me.Label33.Name = "Label33" + Me.Label33.Size = New System.Drawing.Size(39, 16) + Me.Label33.TabIndex = 93 + Me.Label33.Text = "MSE" ' 'txtTransactionID ' @@ -3738,6 +2994,304 @@ Partial Class frmStartOptions Me.txtTransactionID.Text = "1001723285" Me.txtTransactionID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center ' + 'cbxMSEBatchNr + ' + Me.cbxMSEBatchNr._allowedValuesFreiText = Nothing + Me.cbxMSEBatchNr._allowFreiText = True + Me.cbxMSEBatchNr._value = "" + Me.cbxMSEBatchNr.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList + Me.cbxMSEBatchNr.DropDownWidth = 20 + Me.cbxMSEBatchNr.FormattingEnabled = True + Me.cbxMSEBatchNr.Location = New System.Drawing.Point(30, 156) + Me.cbxMSEBatchNr.Name = "cbxMSEBatchNr" + Me.cbxMSEBatchNr.Size = New System.Drawing.Size(44, 21) + Me.cbxMSEBatchNr.TabIndex = 122 + ' + 'txtBatchNr + ' + Me.txtBatchNr._DateTimeOnly = False + Me.txtBatchNr._numbersOnly = True + Me.txtBatchNr._numbersOnlyKommastellen = "" + Me.txtBatchNr._numbersOnlyTrennzeichen = False + Me.txtBatchNr._Prozent = False + Me.txtBatchNr._ShortDateNew = False + Me.txtBatchNr._ShortDateOnly = False + Me.txtBatchNr._TimeOnly = False + Me.txtBatchNr._TimeOnly_Seconds = False + Me.txtBatchNr._value = "" + Me.txtBatchNr._Waehrung = False + Me.txtBatchNr._WaehrungZeichen = True + Me.txtBatchNr.BackColor = System.Drawing.SystemColors.Window + Me.txtBatchNr.ForeColor = System.Drawing.Color.Red + Me.txtBatchNr.Location = New System.Drawing.Point(81, 156) + Me.txtBatchNr.MaxLength = 10 + Me.txtBatchNr.MaxLineLength = -1 + Me.txtBatchNr.MaxLines_Warning = "" + Me.txtBatchNr.MaxLines_Warning_Label = Nothing + Me.txtBatchNr.Name = "txtBatchNr" + Me.txtBatchNr.Size = New System.Drawing.Size(36, 20) + Me.txtBatchNr.TabIndex = 127 + Me.txtBatchNr.TextAlign = System.Windows.Forms.HorizontalAlignment.Center + ' + 'txtBatchNrofTransaction + ' + Me.txtBatchNrofTransaction._DateTimeOnly = False + Me.txtBatchNrofTransaction._numbersOnly = True + Me.txtBatchNrofTransaction._numbersOnlyKommastellen = "" + Me.txtBatchNrofTransaction._numbersOnlyTrennzeichen = False + Me.txtBatchNrofTransaction._Prozent = False + Me.txtBatchNrofTransaction._ShortDateNew = False + Me.txtBatchNrofTransaction._ShortDateOnly = False + Me.txtBatchNrofTransaction._TimeOnly = False + Me.txtBatchNrofTransaction._TimeOnly_Seconds = False + Me.txtBatchNrofTransaction._value = "" + Me.txtBatchNrofTransaction._Waehrung = False + Me.txtBatchNrofTransaction._WaehrungZeichen = True + Me.txtBatchNrofTransaction.BackColor = System.Drawing.SystemColors.Window + Me.txtBatchNrofTransaction.ForeColor = System.Drawing.Color.Red + Me.txtBatchNrofTransaction.Location = New System.Drawing.Point(177, 207) + Me.txtBatchNrofTransaction.MaxLength = 10 + Me.txtBatchNrofTransaction.MaxLineLength = -1 + Me.txtBatchNrofTransaction.MaxLines_Warning = "" + Me.txtBatchNrofTransaction.MaxLines_Warning_Label = Nothing + Me.txtBatchNrofTransaction.Name = "txtBatchNrofTransaction" + Me.txtBatchNrofTransaction.Size = New System.Drawing.Size(36, 20) + Me.txtBatchNrofTransaction.TabIndex = 129 + Me.txtBatchNrofTransaction.TextAlign = System.Windows.Forms.HorizontalAlignment.Center + ' + 'Label36 + ' + Me.Label36.AutoSize = True + Me.Label36.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label36.Location = New System.Drawing.Point(23, 40) + Me.Label36.Name = "Label36" + Me.Label36.Size = New System.Drawing.Size(42, 13) + Me.Label36.TabIndex = 96 + Me.Label36.Text = "Import" + ' + 'MSE_Transaktions + ' + Me.MSE_Transaktions.AutoSize = True + Me.MSE_Transaktions.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.MSE_Transaktions.Location = New System.Drawing.Point(23, 81) + Me.MSE_Transaktions.Name = "MSE_Transaktions" + Me.MSE_Transaktions.Size = New System.Drawing.Size(157, 13) + Me.MSE_Transaktions.TabIndex = 102 + Me.MSE_Transaktions.TabStop = True + Me.MSE_Transaktions.Text = "Neueste Transaktionen abrufen" + ' + 'MSE_RE + ' + Me.MSE_RE.AutoSize = True + Me.MSE_RE.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.MSE_RE.Location = New System.Drawing.Point(18, 280) + Me.MSE_RE.Name = "MSE_RE" + Me.MSE_RE.Size = New System.Drawing.Size(108, 13) + Me.MSE_RE.TabIndex = 103 + Me.MSE_RE.TabStop = True + Me.MSE_RE.Text = "Rechnungen abrufen" + ' + 'datVon + ' + Me.datVon.Format = System.Windows.Forms.DateTimePickerFormat.[Short] + Me.datVon.Location = New System.Drawing.Point(51, 252) + Me.datVon.Name = "datVon" + Me.datVon.Size = New System.Drawing.Size(85, 20) + Me.datVon.TabIndex = 104 + ' + 'MSETransakt + ' + Me.MSETransakt.AutoSize = True + Me.MSETransakt.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.MSETransakt.Location = New System.Drawing.Point(17, 383) + Me.MSETransakt.Name = "MSETransakt" + Me.MSETransakt.Size = New System.Drawing.Size(114, 13) + Me.MSETransakt.TabIndex = 105 + Me.MSETransakt.TabStop = True + Me.MSETransakt.Text = "Transaktionen abrufen" + ' + 'DateTimePicker1 + ' + Me.DateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.[Short] + Me.DateTimePicker1.Location = New System.Drawing.Point(52, 341) + Me.DateTimePicker1.Name = "DateTimePicker1" + Me.DateTimePicker1.Size = New System.Drawing.Size(85, 20) + Me.DateTimePicker1.TabIndex = 106 + ' + 'DateTimePicker2 + ' + Me.DateTimePicker2.Format = System.Windows.Forms.DateTimePickerFormat.[Short] + Me.DateTimePicker2.Location = New System.Drawing.Point(52, 360) + Me.DateTimePicker2.Name = "DateTimePicker2" + Me.DateTimePicker2.Size = New System.Drawing.Size(85, 20) + Me.DateTimePicker2.TabIndex = 107 + ' + 'LinkLabel57 + ' + Me.LinkLabel57.AutoSize = True + Me.LinkLabel57.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.LinkLabel57.Location = New System.Drawing.Point(23, 180) + Me.LinkLabel57.Name = "LinkLabel57" + Me.LinkLabel57.Size = New System.Drawing.Size(166, 13) + Me.LinkLabel57.TabIndex = 108 + Me.LinkLabel57.TabStop = True + Me.LinkLabel57.Text = "Transaktionen von Batch abrufen" + ' + 'MSE_Kunden + ' + Me.MSE_Kunden.AutoSize = True + Me.MSE_Kunden.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.MSE_Kunden.Location = New System.Drawing.Point(23, 131) + Me.MSE_Kunden.Name = "MSE_Kunden" + Me.MSE_Kunden.Size = New System.Drawing.Size(126, 13) + Me.MSE_Kunden.TabIndex = 110 + Me.MSE_Kunden.TabStop = True + Me.MSE_Kunden.Text = "Neueste Kunden abrufen" + ' + 'Label37 + ' + Me.Label37.AutoSize = True + Me.Label37.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label37.Location = New System.Drawing.Point(17, 347) + Me.Label37.Name = "Label37" + Me.Label37.Size = New System.Drawing.Size(28, 13) + Me.Label37.TabIndex = 111 + Me.Label37.Text = "von" + ' + 'Label38 + ' + Me.Label38.AutoSize = True + Me.Label38.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label38.Location = New System.Drawing.Point(17, 366) + Me.Label38.Name = "Label38" + Me.Label38.Size = New System.Drawing.Size(23, 13) + Me.Label38.TabIndex = 112 + Me.Label38.Text = "bis" + ' + 'Label39 + ' + Me.Label39.AutoSize = True + Me.Label39.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label39.Location = New System.Drawing.Point(17, 252) + Me.Label39.Name = "Label39" + Me.Label39.Size = New System.Drawing.Size(28, 13) + Me.Label39.TabIndex = 113 + Me.Label39.Text = "von" + ' + 'MSETransID + ' + Me.MSETransID.AutoSize = True + Me.MSETransID.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.MSETransID.Location = New System.Drawing.Point(30, 230) + Me.MSETransID.Name = "MSETransID" + Me.MSETransID.Size = New System.Drawing.Size(149, 13) + Me.MSETransID.TabIndex = 114 + Me.MSETransID.TabStop = True + Me.MSETransID.Text = "Transaktionen von ID abrufen" + ' + 'Label40 + ' + Me.Label40.AutoSize = True + Me.Label40.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label40.Location = New System.Drawing.Point(18, 210) + Me.Label40.Name = "Label40" + Me.Label40.Size = New System.Drawing.Size(20, 13) + Me.Label40.TabIndex = 116 + Me.Label40.Text = "ID" + ' + 'MSE_missingTrans + ' + Me.MSE_missingTrans.AutoSize = True + Me.MSE_missingTrans.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.MSE_missingTrans.Location = New System.Drawing.Point(18, 300) + Me.MSE_missingTrans.Name = "MSE_missingTrans" + Me.MSE_missingTrans.Size = New System.Drawing.Size(158, 13) + Me.MSE_missingTrans.TabIndex = 118 + Me.MSE_missingTrans.TabStop = True + Me.MSE_missingTrans.Text = "fehlende Transaktionen abrufen" + ' + 'MSE_Settlements + ' + Me.MSE_Settlements.AutoSize = True + Me.MSE_Settlements.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.MSE_Settlements.Location = New System.Drawing.Point(22, 106) + Me.MSE_Settlements.Name = "MSE_Settlements" + Me.MSE_Settlements.Size = New System.Drawing.Size(144, 13) + Me.MSE_Settlements.TabIndex = 119 + Me.MSE_Settlements.TabStop = True + Me.MSE_Settlements.Text = "Neueste Settlements abrufen" + ' + 'MSE_not_billed_Trans + ' + Me.MSE_not_billed_Trans.AutoSize = True + Me.MSE_not_billed_Trans.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.MSE_not_billed_Trans.Location = New System.Drawing.Point(18, 322) + Me.MSE_not_billed_Trans.Name = "MSE_not_billed_Trans" + Me.MSE_not_billed_Trans.Size = New System.Drawing.Size(226, 13) + Me.MSE_not_billed_Trans.TabIndex = 120 + Me.MSE_not_billed_Trans.TabStop = True + Me.MSE_not_billed_Trans.Text = "nicht abgerechete Transaktionen aktualisieren" + ' + 'Label42 + ' + Me.Label42.AutoSize = True + Me.Label42.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label42.Location = New System.Drawing.Point(132, 210) + Me.Label42.Name = "Label42" + Me.Label42.Size = New System.Drawing.Size(40, 13) + Me.Label42.TabIndex = 130 + Me.Label42.Text = "Batch" + ' + 'cbxOnlyBilledTransactions + ' + Me.cbxOnlyBilledTransactions.AutoSize = True + Me.cbxOnlyBilledTransactions.Checked = True + Me.cbxOnlyBilledTransactions.CheckState = System.Windows.Forms.CheckState.Checked + Me.cbxOnlyBilledTransactions.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.cbxOnlyBilledTransactions.Location = New System.Drawing.Point(30, 59) + Me.cbxOnlyBilledTransactions.Name = "cbxOnlyBilledTransactions" + Me.cbxOnlyBilledTransactions.Size = New System.Drawing.Size(172, 17) + Me.cbxOnlyBilledTransactions.TabIndex = 121 + Me.cbxOnlyBilledTransactions.Text = "nur verrechnete Transaktionen" + Me.cbxOnlyBilledTransactions.UseVisualStyleBackColor = True + ' + 'cbxUploadDA + ' + Me.cbxUploadDA.AutoSize = True + Me.cbxUploadDA.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.cbxUploadDA.Location = New System.Drawing.Point(132, 280) + Me.cbxUploadDA.Name = "cbxUploadDA" + Me.cbxUploadDA.Size = New System.Drawing.Size(81, 17) + Me.cbxUploadDA.TabIndex = 128 + Me.cbxUploadDA.Text = "PDF ins DS" + Me.cbxUploadDA.UseVisualStyleBackColor = True + ' + 'RMC + ' + Me.RMC.Controls.Add(Me.Label29) + Me.RMC.Controls.Add(Me.cbxRMC) + Me.RMC.Controls.Add(Me.Label30) + Me.RMC.Controls.Add(Me.RMC_import) + Me.RMC.Controls.Add(Me.cbxDateienlöschenRMC) + Me.RMC.Controls.Add(Me.TextBox2) + Me.RMC.Location = New System.Drawing.Point(4, 22) + Me.RMC.Name = "RMC" + Me.RMC.Size = New System.Drawing.Size(937, 440) + Me.RMC.TabIndex = 3 + Me.RMC.Text = "RMC" + Me.RMC.UseVisualStyleBackColor = True + ' + 'Label29 + ' + Me.Label29.AutoSize = True + Me.Label29.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label29.ForeColor = System.Drawing.Color.Red + Me.Label29.Location = New System.Drawing.Point(13, 15) + Me.Label29.Name = "Label29" + Me.Label29.Size = New System.Drawing.Size(40, 16) + Me.Label29.TabIndex = 82 + Me.Label29.Text = "RMC" + ' 'cbxRMC ' Me.cbxRMC._allowedValuesFreiText = Nothing @@ -3749,53 +3303,677 @@ Partial Class frmStartOptions Me.cbxRMC.Size = New System.Drawing.Size(80, 21) Me.cbxRMC.TabIndex = 90 ' - 'txtTBLNr + 'Label30 ' - Me.txtTBLNr._DateTimeOnly = False - Me.txtTBLNr._numbersOnly = True - Me.txtTBLNr._numbersOnlyKommastellen = "" - Me.txtTBLNr._numbersOnlyTrennzeichen = False - Me.txtTBLNr._Prozent = False - Me.txtTBLNr._ShortDateNew = False - Me.txtTBLNr._ShortDateOnly = False - Me.txtTBLNr._TimeOnly = False - Me.txtTBLNr._TimeOnly_Seconds = False - Me.txtTBLNr._value = "" - Me.txtTBLNr._Waehrung = False - Me.txtTBLNr._WaehrungZeichen = True - Me.txtTBLNr.ForeColor = System.Drawing.Color.Red - Me.txtTBLNr.Location = New System.Drawing.Point(168, 180) - Me.txtTBLNr.MaxLineLength = -1 - Me.txtTBLNr.MaxLines_Warning = "" - Me.txtTBLNr.MaxLines_Warning_Label = Nothing - Me.txtTBLNr.Name = "txtTBLNr" - Me.txtTBLNr.ReadOnly = True - Me.txtTBLNr.Size = New System.Drawing.Size(53, 20) - Me.txtTBLNr.TabIndex = 79 + Me.Label30.AutoSize = True + Me.Label30.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label30.Location = New System.Drawing.Point(11, 52) + Me.Label30.Name = "Label30" + Me.Label30.Size = New System.Drawing.Size(42, 13) + Me.Label30.TabIndex = 83 + Me.Label30.Text = "Import" ' - 'txtTWLNr + 'RMC_import ' - Me.txtTWLNr._DateTimeOnly = False - Me.txtTWLNr._numbersOnly = True - Me.txtTWLNr._numbersOnlyKommastellen = "" - Me.txtTWLNr._numbersOnlyTrennzeichen = False - Me.txtTWLNr._Prozent = False - Me.txtTWLNr._ShortDateNew = False - Me.txtTWLNr._ShortDateOnly = False - Me.txtTWLNr._TimeOnly = False - Me.txtTWLNr._TimeOnly_Seconds = False - Me.txtTWLNr._value = "" - Me.txtTWLNr._Waehrung = False - Me.txtTWLNr._WaehrungZeichen = True - Me.txtTWLNr.ForeColor = System.Drawing.Color.Red - Me.txtTWLNr.Location = New System.Drawing.Point(168, 152) - Me.txtTWLNr.MaxLineLength = -1 - Me.txtTWLNr.MaxLines_Warning = "" - Me.txtTWLNr.MaxLines_Warning_Label = Nothing - Me.txtTWLNr.Name = "txtTWLNr" - Me.txtTWLNr.ReadOnly = True - Me.txtTWLNr.Size = New System.Drawing.Size(53, 20) - Me.txtTWLNr.TabIndex = 78 + Me.RMC_import.AutoSize = True + Me.RMC_import.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.RMC_import.Location = New System.Drawing.Point(11, 126) + Me.RMC_import.Name = "RMC_import" + Me.RMC_import.Size = New System.Drawing.Size(115, 13) + Me.RMC_import.TabIndex = 84 + Me.RMC_import.TabStop = True + Me.RMC_import.Text = "CSV + PDF importieren" + ' + 'cbxDateienlöschenRMC + ' + Me.cbxDateienlöschenRMC.AutoSize = True + Me.cbxDateienlöschenRMC.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.cbxDateienlöschenRMC.Location = New System.Drawing.Point(14, 92) + Me.cbxDateienlöschenRMC.Name = "cbxDateienlöschenRMC" + Me.cbxDateienlöschenRMC.Size = New System.Drawing.Size(15, 14) + Me.cbxDateienlöschenRMC.TabIndex = 98 + Me.cbxDateienlöschenRMC.UseVisualStyleBackColor = True + ' + 'TextBox2 + ' + Me.TextBox2.BackColor = System.Drawing.SystemColors.Menu + Me.TextBox2.Location = New System.Drawing.Point(36, 68) + Me.TextBox2.Multiline = True + Me.TextBox2.Name = "TextBox2" + Me.TextBox2.Size = New System.Drawing.Size(72, 55) + Me.TextBox2.TabIndex = 101 + Me.TextBox2.Text = "Dateien nach Import von FTP löschen" + ' + 'UTA + ' + Me.UTA.Controls.Add(Me.Label31) + Me.UTA.Controls.Add(Me.txtUTAYear) + Me.UTA.Controls.Add(Me.txtUTADate) + Me.UTA.Controls.Add(Me.Label34) + Me.UTA.Controls.Add(Me.lblJahrUTA) + Me.UTA.Controls.Add(Me.UTA_imports) + Me.UTA.Controls.Add(Me.UTAREPdf) + Me.UTA.Controls.Add(Me.cbxDateienlöschenUTA) + Me.UTA.Controls.Add(Me.TextBox1) + Me.UTA.Controls.Add(Me.UTA_Laender) + Me.UTA.Controls.Add(Me.lblUTAPDFvollst) + Me.UTA.Location = New System.Drawing.Point(4, 22) + Me.UTA.Name = "UTA" + Me.UTA.Size = New System.Drawing.Size(937, 440) + Me.UTA.TabIndex = 4 + Me.UTA.Text = "UTA" + Me.UTA.UseVisualStyleBackColor = True + ' + 'Label31 + ' + Me.Label31.AutoSize = True + Me.Label31.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label31.ForeColor = System.Drawing.Color.Red + Me.Label31.Location = New System.Drawing.Point(13, 10) + Me.Label31.Name = "Label31" + Me.Label31.Size = New System.Drawing.Size(38, 16) + Me.Label31.TabIndex = 91 + Me.Label31.Text = "UTA" + ' + 'txtUTAYear + ' + Me.txtUTAYear._DateTimeOnly = False + Me.txtUTAYear._numbersOnly = True + Me.txtUTAYear._numbersOnlyKommastellen = "" + Me.txtUTAYear._numbersOnlyTrennzeichen = False + Me.txtUTAYear._Prozent = False + Me.txtUTAYear._ShortDateNew = False + Me.txtUTAYear._ShortDateOnly = False + Me.txtUTAYear._TimeOnly = False + Me.txtUTAYear._TimeOnly_Seconds = False + Me.txtUTAYear._value = "" + Me.txtUTAYear._Waehrung = False + Me.txtUTAYear._WaehrungZeichen = True + Me.txtUTAYear.BackColor = System.Drawing.SystemColors.Window + Me.txtUTAYear.ForeColor = System.Drawing.Color.Red + Me.txtUTAYear.Location = New System.Drawing.Point(58, 113) + Me.txtUTAYear.MaxLength = 10 + Me.txtUTAYear.MaxLineLength = -1 + Me.txtUTAYear.MaxLines_Warning = "" + Me.txtUTAYear.MaxLines_Warning_Label = Nothing + Me.txtUTAYear.Name = "txtUTAYear" + Me.txtUTAYear.Size = New System.Drawing.Size(66, 20) + Me.txtUTAYear.TabIndex = 133 + Me.txtUTAYear.TextAlign = System.Windows.Forms.HorizontalAlignment.Center + ' + 'txtUTADate + ' + Me.txtUTADate._DateTimeOnly = False + Me.txtUTADate._numbersOnly = False + Me.txtUTADate._numbersOnlyKommastellen = "" + Me.txtUTADate._numbersOnlyTrennzeichen = False + Me.txtUTADate._Prozent = False + Me.txtUTADate._ShortDateNew = False + Me.txtUTADate._ShortDateOnly = True + Me.txtUTADate._TimeOnly = False + Me.txtUTADate._TimeOnly_Seconds = False + Me.txtUTADate._value = "" + Me.txtUTADate._Waehrung = False + Me.txtUTADate._WaehrungZeichen = True + Me.txtUTADate.BackColor = System.Drawing.SystemColors.Window + Me.txtUTADate.ForeColor = System.Drawing.Color.Red + Me.txtUTADate.Location = New System.Drawing.Point(17, 183) + Me.txtUTADate.MaxLength = 10 + Me.txtUTADate.MaxLineLength = -1 + Me.txtUTADate.MaxLines_Warning = "" + Me.txtUTADate.MaxLines_Warning_Label = Nothing + Me.txtUTADate.Name = "txtUTADate" + Me.txtUTADate.Size = New System.Drawing.Size(66, 20) + Me.txtUTADate.TabIndex = 156 + Me.txtUTADate.TextAlign = System.Windows.Forms.HorizontalAlignment.Center + ' + 'Label34 + ' + Me.Label34.AutoSize = True + Me.Label34.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label34.Location = New System.Drawing.Point(13, 36) + Me.Label34.Name = "Label34" + Me.Label34.Size = New System.Drawing.Size(42, 13) + Me.Label34.TabIndex = 94 + Me.Label34.Text = "Import" + ' + 'lblJahrUTA + ' + Me.lblJahrUTA.AutoSize = True + Me.lblJahrUTA.Location = New System.Drawing.Point(14, 116) + Me.lblJahrUTA.Name = "lblJahrUTA" + Me.lblJahrUTA.Size = New System.Drawing.Size(30, 13) + Me.lblJahrUTA.TabIndex = 149 + Me.lblJahrUTA.Text = "Jahr:" + ' + 'UTA_imports + ' + Me.UTA_imports.AutoSize = True + Me.UTA_imports.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.UTA_imports.Location = New System.Drawing.Point(13, 138) + Me.UTA_imports.Name = "UTA_imports" + Me.UTA_imports.Size = New System.Drawing.Size(119, 13) + Me.UTA_imports.TabIndex = 97 + Me.UTA_imports.TabStop = True + Me.UTA_imports.Text = ".UTA + PDF importieren" + ' + 'UTAREPdf + ' + Me.UTAREPdf.AutoSize = True + Me.UTAREPdf.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.UTAREPdf.Location = New System.Drawing.Point(88, 208) + Me.UTAREPdf.Name = "UTAREPdf" + Me.UTAREPdf.Size = New System.Drawing.Size(119, 13) + Me.UTAREPdf.TabIndex = 161 + Me.UTAREPdf.TabStop = True + Me.UTAREPdf.Text = "PDF mit RE verknüpfen" + ' + 'cbxDateienlöschenUTA + ' + Me.cbxDateienlöschenUTA.AutoSize = True + Me.cbxDateienlöschenUTA.Checked = True + Me.cbxDateienlöschenUTA.CheckState = System.Windows.Forms.CheckState.Checked + Me.cbxDateienlöschenUTA.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.cbxDateienlöschenUTA.Location = New System.Drawing.Point(16, 66) + Me.cbxDateienlöschenUTA.Name = "cbxDateienlöschenUTA" + Me.cbxDateienlöschenUTA.Size = New System.Drawing.Size(15, 14) + Me.cbxDateienlöschenUTA.TabIndex = 99 + Me.cbxDateienlöschenUTA.UseVisualStyleBackColor = True + ' + 'TextBox1 + ' + Me.TextBox1.BackColor = System.Drawing.SystemColors.Menu + Me.TextBox1.Location = New System.Drawing.Point(37, 52) + Me.TextBox1.Multiline = True + Me.TextBox1.Name = "TextBox1" + Me.TextBox1.Size = New System.Drawing.Size(89, 51) + Me.TextBox1.TabIndex = 100 + Me.TextBox1.Text = "Dateien nach Import von FTP löschen" + ' + 'UTA_Laender + ' + Me.UTA_Laender.AutoSize = True + Me.UTA_Laender.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.UTA_Laender.Location = New System.Drawing.Point(13, 159) + Me.UTA_Laender.Name = "UTA_Laender" + Me.UTA_Laender.Size = New System.Drawing.Size(135, 13) + Me.UTA_Laender.TabIndex = 131 + Me.UTA_Laender.TabStop = True + Me.UTA_Laender.Text = "Ländercode ISO2 einfügen" + ' + 'lblUTAPDFvollst + ' + Me.lblUTAPDFvollst.AutoSize = True + Me.lblUTAPDFvollst.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.lblUTAPDFvollst.Location = New System.Drawing.Point(88, 185) + Me.lblUTAPDFvollst.Name = "lblUTAPDFvollst" + Me.lblUTAPDFvollst.Size = New System.Drawing.Size(113, 13) + Me.lblUTAPDFvollst.TabIndex = 157 + Me.lblUTAPDFvollst.TabStop = True + Me.lblUTAPDFvollst.Text = "PDF Daten vollständig" + ' + 'PLOSE + ' + Me.PLOSE.Controls.Add(Me.LinkLabel53) + Me.PLOSE.Controls.Add(Me.LinkLabel52) + Me.PLOSE.Controls.Add(Me.Label5) + Me.PLOSE.Controls.Add(Me.txtPloseJahr) + Me.PLOSE.Controls.Add(Me.Label52) + Me.PLOSE.Controls.Add(Me.txtPLoseKdNr) + Me.PLOSE.Controls.Add(Me.Label51) + Me.PLOSE.Controls.Add(Me.LinkLabel24) + Me.PLOSE.Controls.Add(Me.LinkLabel23) + Me.PLOSE.Controls.Add(Me.Laender_Steuercode) + Me.PLOSE.Controls.Add(Me.PlosePdfRE) + Me.PLOSE.Location = New System.Drawing.Point(4, 22) + Me.PLOSE.Name = "PLOSE" + Me.PLOSE.Size = New System.Drawing.Size(937, 440) + Me.PLOSE.TabIndex = 5 + Me.PLOSE.Text = "PLOSE" + Me.PLOSE.UseVisualStyleBackColor = True + ' + 'LinkLabel52 + ' + Me.LinkLabel52.AutoSize = True + Me.LinkLabel52.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.LinkLabel52.Location = New System.Drawing.Point(22, 181) + Me.LinkLabel52.Name = "LinkLabel52" + Me.LinkLabel52.Size = New System.Drawing.Size(151, 13) + Me.LinkLabel52.TabIndex = 168 + Me.LinkLabel52.TabStop = True + Me.LinkLabel52.Text = "Währung setzen (wenn NULL)" + ' + 'Label5 + ' + Me.Label5.AutoSize = True + Me.Label5.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label5.ForeColor = System.Drawing.Color.Red + Me.Label5.Location = New System.Drawing.Point(13, 19) + Me.Label5.Name = "Label5" + Me.Label5.Size = New System.Drawing.Size(56, 16) + Me.Label5.TabIndex = 126 + Me.Label5.Text = "PLOSE" + ' + 'txtPloseJahr + ' + Me.txtPloseJahr._DateTimeOnly = False + Me.txtPloseJahr._numbersOnly = True + Me.txtPloseJahr._numbersOnlyKommastellen = "" + Me.txtPloseJahr._numbersOnlyTrennzeichen = False + Me.txtPloseJahr._Prozent = False + Me.txtPloseJahr._ShortDateNew = False + Me.txtPloseJahr._ShortDateOnly = False + Me.txtPloseJahr._TimeOnly = False + Me.txtPloseJahr._TimeOnly_Seconds = False + Me.txtPloseJahr._value = "" + Me.txtPloseJahr._Waehrung = False + Me.txtPloseJahr._WaehrungZeichen = False + Me.txtPloseJahr.BackColor = System.Drawing.SystemColors.Window + Me.txtPloseJahr.ForeColor = System.Drawing.Color.Red + Me.txtPloseJahr.Location = New System.Drawing.Point(88, 111) + Me.txtPloseJahr.MaxLength = 10 + Me.txtPloseJahr.MaxLineLength = -1 + Me.txtPloseJahr.MaxLines_Warning = "" + Me.txtPloseJahr.MaxLines_Warning_Label = Nothing + Me.txtPloseJahr.Name = "txtPloseJahr" + Me.txtPloseJahr.Size = New System.Drawing.Size(66, 20) + Me.txtPloseJahr.TabIndex = 158 + Me.txtPloseJahr.TextAlign = System.Windows.Forms.HorizontalAlignment.Center + ' + '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(22, 114) + Me.Label52.Name = "Label52" + Me.Label52.Size = New System.Drawing.Size(27, 13) + Me.Label52.TabIndex = 166 + Me.Label52.Text = "Jahr" + ' + 'txtPLoseKdNr + ' + Me.txtPLoseKdNr._DateTimeOnly = False + Me.txtPLoseKdNr._numbersOnly = True + Me.txtPLoseKdNr._numbersOnlyKommastellen = "" + Me.txtPLoseKdNr._numbersOnlyTrennzeichen = False + Me.txtPLoseKdNr._Prozent = False + Me.txtPLoseKdNr._ShortDateNew = False + Me.txtPLoseKdNr._ShortDateOnly = False + Me.txtPLoseKdNr._TimeOnly = False + Me.txtPLoseKdNr._TimeOnly_Seconds = False + Me.txtPLoseKdNr._value = "" + Me.txtPLoseKdNr._Waehrung = False + Me.txtPLoseKdNr._WaehrungZeichen = False + Me.txtPLoseKdNr.BackColor = System.Drawing.SystemColors.Window + Me.txtPLoseKdNr.ForeColor = System.Drawing.Color.Red + Me.txtPLoseKdNr.Location = New System.Drawing.Point(88, 134) + Me.txtPLoseKdNr.MaxLength = 10 + Me.txtPLoseKdNr.MaxLineLength = -1 + Me.txtPLoseKdNr.MaxLines_Warning = "" + Me.txtPLoseKdNr.MaxLines_Warning_Label = Nothing + Me.txtPLoseKdNr.Name = "txtPLoseKdNr" + Me.txtPLoseKdNr.Size = New System.Drawing.Size(66, 20) + Me.txtPLoseKdNr.TabIndex = 162 + Me.txtPLoseKdNr.TextAlign = System.Windows.Forms.HorizontalAlignment.Center + ' + '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(19, 137) + Me.Label51.Name = "Label51" + Me.Label51.Size = New System.Drawing.Size(55, 13) + Me.Label51.TabIndex = 164 + Me.Label51.Text = "(opt) KdNr" + ' + 'LinkLabel24 + ' + Me.LinkLabel24.AutoSize = True + Me.LinkLabel24.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.LinkLabel24.Location = New System.Drawing.Point(13, 56) + Me.LinkLabel24.Name = "LinkLabel24" + Me.LinkLabel24.Size = New System.Drawing.Size(177, 13) + Me.LinkLabel24.TabIndex = 124 + Me.LinkLabel24.TabStop = True + Me.LinkLabel24.Text = "Eingangsnachrichten abrufen TEST" + ' + 'LinkLabel23 + ' + Me.LinkLabel23.AutoSize = True + Me.LinkLabel23.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.LinkLabel23.Location = New System.Drawing.Point(13, 81) + Me.LinkLabel23.Name = "LinkLabel23" + Me.LinkLabel23.Size = New System.Drawing.Size(180, 13) + Me.LinkLabel23.TabIndex = 125 + Me.LinkLabel23.TabStop = True + Me.LinkLabel23.Text = "Eingangsnachrichten abrufen PROD" + ' + 'Laender_Steuercode + ' + Me.Laender_Steuercode.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.Laender_Steuercode.Location = New System.Drawing.Point(22, 198) + Me.Laender_Steuercode.Name = "Laender_Steuercode" + Me.Laender_Steuercode.Size = New System.Drawing.Size(132, 23) + Me.Laender_Steuercode.TabIndex = 0 + Me.Laender_Steuercode.TabStop = True + Me.Laender_Steuercode.Text = "Land in Steuernr setzen" + ' + 'PlosePdfRE + ' + Me.PlosePdfRE.AutoSize = True + Me.PlosePdfRE.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.PlosePdfRE.Location = New System.Drawing.Point(22, 161) + Me.PlosePdfRE.Name = "PlosePdfRE" + Me.PlosePdfRE.Size = New System.Drawing.Size(119, 13) + Me.PlosePdfRE.TabIndex = 159 + Me.PlosePdfRE.TabStop = True + Me.PlosePdfRE.Text = "PDF mit RE verknüpfen" + ' + 'TabPage5 + ' + Me.TabPage5.Controls.Add(Me.cbxPloseNeu) + Me.TabPage5.Controls.Add(Me.Label44) + Me.TabPage5.Controls.Add(Me.txtKdNr) + Me.TabPage5.Controls.Add(Me.cbxITalt) + Me.TabPage5.Controls.Add(Me.Button23) + Me.TabPage5.Controls.Add(Me.cbxPlose) + Me.TabPage5.Controls.Add(Me.PictureBox25) + Me.TabPage5.Controls.Add(Me.Label46) + Me.TabPage5.Controls.Add(Me.Label43) + Me.TabPage5.Controls.Add(Me.Label45) + Me.TabPage5.Controls.Add(Me.CheckBox8) + Me.TabPage5.Controls.Add(Me.Button25) + Me.TabPage5.Controls.Add(Me.cbxMSEneu) + Me.TabPage5.Controls.Add(Me.cbxIDSalt) + Me.TabPage5.Controls.Add(Me.cbxIDSneu) + Me.TabPage5.Controls.Add(Me.cbxMSEalt) + Me.TabPage5.Controls.Add(Me.cbxUTAalt) + Me.TabPage5.Controls.Add(Me.cbxUTANeu) + Me.TabPage5.Location = New System.Drawing.Point(4, 22) + Me.TabPage5.Name = "TabPage5" + Me.TabPage5.Size = New System.Drawing.Size(937, 440) + Me.TabPage5.TabIndex = 6 + Me.TabPage5.Text = "USTVA-Summen" + Me.TabPage5.UseVisualStyleBackColor = True + ' + 'cbxPloseNeu + ' + Me.cbxPloseNeu.AutoSize = True + Me.cbxPloseNeu.Checked = True + Me.cbxPloseNeu.CheckState = System.Windows.Forms.CheckState.Checked + Me.cbxPloseNeu.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.cbxPloseNeu.Location = New System.Drawing.Point(144, 219) + Me.cbxPloseNeu.Name = "cbxPloseNeu" + Me.cbxPloseNeu.Size = New System.Drawing.Size(108, 17) + Me.cbxPloseNeu.TabIndex = 167 + Me.cbxPloseNeu.Text = "Plose_neueLogik" + Me.cbxPloseNeu.UseVisualStyleBackColor = True + ' + 'Label44 + ' + Me.Label44.AutoSize = True + Me.Label44.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label44.ForeColor = System.Drawing.Color.Red + Me.Label44.Location = New System.Drawing.Point(23, 14) + Me.Label44.Name = "Label44" + Me.Label44.Size = New System.Drawing.Size(204, 13) + Me.Label44.TabIndex = 145 + Me.Label44.Text = "USTVA-Summen berechnen (MDM)" + ' + 'txtKdNr + ' + Me.txtKdNr._DateTimeOnly = False + Me.txtKdNr._numbersOnly = True + Me.txtKdNr._numbersOnlyKommastellen = "" + Me.txtKdNr._numbersOnlyTrennzeichen = False + Me.txtKdNr._Prozent = False + Me.txtKdNr._ShortDateNew = False + Me.txtKdNr._ShortDateOnly = False + Me.txtKdNr._TimeOnly = False + Me.txtKdNr._TimeOnly_Seconds = False + Me.txtKdNr._value = "" + Me.txtKdNr._Waehrung = False + Me.txtKdNr._WaehrungZeichen = True + Me.txtKdNr.ForeColor = System.Drawing.Color.Black + Me.txtKdNr.Location = New System.Drawing.Point(77, 69) + Me.txtKdNr.MaxLength = 50 + Me.txtKdNr.MaxLineLength = -1 + Me.txtKdNr.MaxLines_Warning = "" + Me.txtKdNr.MaxLines_Warning_Label = Nothing + Me.txtKdNr.Name = "txtKdNr" + Me.txtKdNr.Size = New System.Drawing.Size(136, 20) + Me.txtKdNr.TabIndex = 95 + ' + 'cbxITalt + ' + Me.cbxITalt.AutoSize = True + Me.cbxITalt.Checked = True + Me.cbxITalt.CheckState = System.Windows.Forms.CheckState.Checked + Me.cbxITalt.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.cbxITalt.Location = New System.Drawing.Point(26, 195) + Me.cbxITalt.Name = "cbxITalt" + Me.cbxITalt.Size = New System.Drawing.Size(36, 17) + Me.cbxITalt.TabIndex = 149 + Me.cbxITalt.Text = "IT" + Me.cbxITalt.UseVisualStyleBackColor = True + ' + 'Button23 + ' + Me.Button23.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.Button23.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.Button23.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft + Me.Button23.Location = New System.Drawing.Point(26, 238) + Me.Button23.Name = "Button23" + Me.Button23.Size = New System.Drawing.Size(187, 38) + Me.Button23.TabIndex = 93 + Me.Button23.Text = "Summen aktualisieren (USTV-Anträge)" + Me.Button23.UseVisualStyleBackColor = True + ' + 'cbxPlose + ' + Me.cbxPlose.AutoSize = True + Me.cbxPlose.Checked = True + Me.cbxPlose.CheckState = System.Windows.Forms.CheckState.Checked + Me.cbxPlose.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.cbxPlose.Location = New System.Drawing.Point(144, 196) + Me.cbxPlose.Name = "cbxPlose" + Me.cbxPlose.Size = New System.Drawing.Size(101, 17) + Me.cbxPlose.TabIndex = 148 + Me.cbxPlose.Text = "Plose_alteLogik" + Me.cbxPlose.UseVisualStyleBackColor = True + ' + 'PictureBox25 + ' + Me.PictureBox25.BackgroundImage = CType(resources.GetObject("PictureBox25.BackgroundImage"), System.Drawing.Image) + Me.PictureBox25.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom + Me.PictureBox25.Location = New System.Drawing.Point(234, 254) + Me.PictureBox25.Name = "PictureBox25" + Me.PictureBox25.Size = New System.Drawing.Size(18, 18) + Me.PictureBox25.TabIndex = 94 + Me.PictureBox25.TabStop = False + Me.PictureBox25.Visible = False + ' + 'Label46 + ' + Me.Label46.AutoSize = True + Me.Label46.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label46.Location = New System.Drawing.Point(141, 106) + Me.Label46.Name = "Label46" + Me.Label46.Size = New System.Drawing.Size(111, 13) + Me.Label46.TabIndex = 147 + Me.Label46.Text = "Schnittstellen Neu" + ' + 'Label43 + ' + Me.Label43.AutoSize = True + Me.Label43.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label43.Location = New System.Drawing.Point(23, 76) + Me.Label43.Name = "Label43" + Me.Label43.Size = New System.Drawing.Size(35, 13) + Me.Label43.TabIndex = 132 + Me.Label43.Text = "KdNr" + ' + 'Label45 + ' + Me.Label45.AutoSize = True + Me.Label45.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label45.Location = New System.Drawing.Point(23, 106) + Me.Label45.Name = "Label45" + Me.Label45.Size = New System.Drawing.Size(103, 13) + Me.Label45.TabIndex = 146 + Me.Label45.Text = "Schnittstellen Alt" + ' + 'CheckBox8 + ' + Me.CheckBox8.AutoSize = True + Me.CheckBox8.Checked = True + Me.CheckBox8.CheckState = System.Windows.Forms.CheckState.Checked + Me.CheckBox8.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.CheckBox8.Location = New System.Drawing.Point(134, 49) + Me.CheckBox8.Name = "CheckBox8" + Me.CheckBox8.Size = New System.Drawing.Size(79, 17) + Me.CheckBox8.TabIndex = 133 + Me.CheckBox8.Text = "Testsystem" + Me.CheckBox8.UseVisualStyleBackColor = True + ' + 'Button25 + ' + Me.Button25.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.Button25.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.Button25.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft + Me.Button25.Location = New System.Drawing.Point(26, 283) + Me.Button25.Name = "Button25" + Me.Button25.Size = New System.Drawing.Size(187, 38) + Me.Button25.TabIndex = 135 + Me.Button25.Text = "Summen anzeigen" + Me.Button25.UseVisualStyleBackColor = True + ' + 'cbxMSEneu + ' + Me.cbxMSEneu.AutoSize = True + Me.cbxMSEneu.Checked = True + Me.cbxMSEneu.CheckState = System.Windows.Forms.CheckState.Checked + Me.cbxMSEneu.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.cbxMSEneu.Location = New System.Drawing.Point(144, 172) + Me.cbxMSEneu.Name = "cbxMSEneu" + Me.cbxMSEneu.Size = New System.Drawing.Size(49, 17) + Me.cbxMSEneu.TabIndex = 144 + Me.cbxMSEneu.Text = "MSE" + Me.cbxMSEneu.UseVisualStyleBackColor = True + ' + 'cbxIDSalt + ' + Me.cbxIDSalt.AutoSize = True + Me.cbxIDSalt.Checked = True + Me.cbxIDSalt.CheckState = System.Windows.Forms.CheckState.Checked + Me.cbxIDSalt.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.cbxIDSalt.Location = New System.Drawing.Point(26, 131) + Me.cbxIDSalt.Name = "cbxIDSalt" + Me.cbxIDSalt.Size = New System.Drawing.Size(44, 17) + Me.cbxIDSalt.TabIndex = 139 + Me.cbxIDSalt.Text = "IDS" + Me.cbxIDSalt.UseVisualStyleBackColor = True + ' + 'cbxIDSneu + ' + Me.cbxIDSneu.AutoSize = True + Me.cbxIDSneu.Checked = True + Me.cbxIDSneu.CheckState = System.Windows.Forms.CheckState.Checked + Me.cbxIDSneu.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.cbxIDSneu.Location = New System.Drawing.Point(144, 131) + Me.cbxIDSneu.Name = "cbxIDSneu" + Me.cbxIDSneu.Size = New System.Drawing.Size(44, 17) + Me.cbxIDSneu.TabIndex = 140 + Me.cbxIDSneu.Text = "IDS" + Me.cbxIDSneu.UseVisualStyleBackColor = True + ' + 'cbxMSEalt + ' + Me.cbxMSEalt.AutoSize = True + Me.cbxMSEalt.Checked = True + Me.cbxMSEalt.CheckState = System.Windows.Forms.CheckState.Checked + Me.cbxMSEalt.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.cbxMSEalt.Location = New System.Drawing.Point(26, 172) + Me.cbxMSEalt.Name = "cbxMSEalt" + Me.cbxMSEalt.Size = New System.Drawing.Size(49, 17) + Me.cbxMSEalt.TabIndex = 143 + Me.cbxMSEalt.Text = "MSE" + Me.cbxMSEalt.UseVisualStyleBackColor = True + ' + 'cbxUTAalt + ' + Me.cbxUTAalt.AutoSize = True + Me.cbxUTAalt.Checked = True + Me.cbxUTAalt.CheckState = System.Windows.Forms.CheckState.Checked + Me.cbxUTAalt.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.cbxUTAalt.Location = New System.Drawing.Point(26, 151) + Me.cbxUTAalt.Name = "cbxUTAalt" + Me.cbxUTAalt.Size = New System.Drawing.Size(48, 17) + Me.cbxUTAalt.TabIndex = 141 + Me.cbxUTAalt.Text = "UTA" + Me.cbxUTAalt.UseVisualStyleBackColor = True + ' + 'cbxUTANeu + ' + Me.cbxUTANeu.AutoSize = True + Me.cbxUTANeu.Checked = True + Me.cbxUTANeu.CheckState = System.Windows.Forms.CheckState.Checked + Me.cbxUTANeu.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.cbxUTANeu.Location = New System.Drawing.Point(144, 151) + Me.cbxUTANeu.Name = "cbxUTANeu" + Me.cbxUTANeu.Size = New System.Drawing.Size(48, 17) + Me.cbxUTANeu.TabIndex = 142 + Me.cbxUTANeu.Text = "UTA" + Me.cbxUTANeu.UseVisualStyleBackColor = True + ' + 'KN8_DESTAT + ' + Me.KN8_DESTAT.AutoSize = True + Me.KN8_DESTAT.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.KN8_DESTAT.Location = New System.Drawing.Point(1039, 105) + Me.KN8_DESTAT.Name = "KN8_DESTAT" + Me.KN8_DESTAT.Size = New System.Drawing.Size(148, 13) + Me.KN8_DESTAT.TabIndex = 152 + Me.KN8_DESTAT.TabStop = True + Me.KN8_DESTAT.Text = "KN8 EZT DE Stat.Bundesamt" + ' + 'Button24 + ' + Me.Button24.FlatStyle = System.Windows.Forms.FlatStyle.Flat + Me.Button24.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.Button24.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft + Me.Button24.Location = New System.Drawing.Point(1010, 54) + Me.Button24.Name = "Button24" + Me.Button24.Size = New System.Drawing.Size(187, 38) + Me.Button24.TabIndex = 134 + Me.Button24.Text = "test" + Me.Button24.UseVisualStyleBackColor = True + ' + 'cbxTestFTP + ' + Me.cbxTestFTP.AutoSize = True + Me.cbxTestFTP.Checked = True + Me.cbxTestFTP.CheckState = System.Windows.Forms.CheckState.Checked + Me.cbxTestFTP.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.cbxTestFTP.Location = New System.Drawing.Point(145, 10) + Me.cbxTestFTP.Name = "cbxTestFTP" + Me.cbxTestFTP.Size = New System.Drawing.Size(123, 17) + Me.cbxTestFTP.TabIndex = 77 + Me.cbxTestFTP.Text = "Import von Test-FTP" + Me.cbxTestFTP.UseVisualStyleBackColor = True + ' + 'cbxTestsystem + ' + Me.cbxTestsystem.AutoSize = True + Me.cbxTestsystem.Checked = True + Me.cbxTestsystem.CheckState = System.Windows.Forms.CheckState.Checked + Me.cbxTestsystem.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.cbxTestsystem.Location = New System.Drawing.Point(19, 8) + Me.cbxTestsystem.Name = "cbxTestsystem" + Me.cbxTestsystem.Size = New System.Drawing.Size(122, 17) + Me.cbxTestsystem.TabIndex = 76 + Me.cbxTestsystem.Text = "Import in Testsystem" + Me.cbxTestsystem.UseVisualStyleBackColor = True ' 'CheckBox2 ' @@ -4110,181 +4288,15 @@ Partial Class frmStartOptions Me.DataGridViewTextBoxColumn1.MinimumWidth = 8 Me.DataGridViewTextBoxColumn1.Name = "DataGridViewTextBoxColumn1" ' - 'TabControl1 + 'LinkLabel53 ' - Me.TabControl1.Controls.Add(Me.Asfinag) - Me.TabControl1.Controls.Add(Me.IDS) - Me.TabControl1.Controls.Add(Me.MSE) - Me.TabControl1.Controls.Add(Me.RMC) - Me.TabControl1.Controls.Add(Me.UTA) - Me.TabControl1.Controls.Add(Me.PLOSE) - Me.TabControl1.Controls.Add(Me.TabPage5) - Me.TabControl1.Location = New System.Drawing.Point(16, 31) - Me.TabControl1.Name = "TabControl1" - Me.TabControl1.SelectedIndex = 0 - Me.TabControl1.Size = New System.Drawing.Size(945, 466) - Me.TabControl1.TabIndex = 170 - ' - 'Asfinag - ' - Me.Asfinag.Controls.Add(Me.Label28) - Me.Asfinag.Controls.Add(Me.txtTWLNr) - Me.Asfinag.Controls.Add(Me.txtTBLNr) - Me.Asfinag.Controls.Add(Me.Label24) - Me.Asfinag.Controls.Add(Me.LinkLabel44) - Me.Asfinag.Controls.Add(Me.LinkLabel43) - Me.Asfinag.Controls.Add(Me.Label23) - Me.Asfinag.Controls.Add(Me.LinkLabel42) - Me.Asfinag.Controls.Add(Me.LinkLabel41) - Me.Asfinag.Controls.Add(Me.PictureBox18) - Me.Asfinag.Controls.Add(Me.PictureBox19) - Me.Asfinag.Controls.Add(Me.LinkLabel46) - Me.Asfinag.Controls.Add(Me.LinkLabel47) - Me.Asfinag.Controls.Add(Me.PictureBox21) - Me.Asfinag.Controls.Add(Me.Label25) - Me.Asfinag.Controls.Add(Me.LinkLabel49) - Me.Asfinag.Location = New System.Drawing.Point(4, 22) - Me.Asfinag.Name = "Asfinag" - Me.Asfinag.Padding = New System.Windows.Forms.Padding(3) - Me.Asfinag.Size = New System.Drawing.Size(1186, 440) - Me.Asfinag.TabIndex = 0 - Me.Asfinag.Text = "Asfinag" - Me.Asfinag.UseVisualStyleBackColor = True - ' - 'IDS - ' - Me.IDS.Controls.Add(Me.IDSUpdateDAID) - Me.IDS.Controls.Add(Me.Label32) - Me.IDS.Controls.Add(Me.txtIDSYear) - Me.IDS.Controls.Add(Me.Label35) - Me.IDS.Controls.Add(Me.IDS_import) - Me.IDS.Controls.Add(Me.IDS_REDetails) - Me.IDS.Controls.Add(Me.IDS_Laendercode) - Me.IDS.Controls.Add(Me.IDS_RE) - Me.IDS.Controls.Add(Me.cbxIDSUmbenenen) - Me.IDS.Controls.Add(Me.TextBox3) - Me.IDS.Location = New System.Drawing.Point(4, 22) - Me.IDS.Name = "IDS" - Me.IDS.Padding = New System.Windows.Forms.Padding(3) - Me.IDS.Size = New System.Drawing.Size(1186, 440) - Me.IDS.TabIndex = 1 - Me.IDS.Text = "IDS" - Me.IDS.UseVisualStyleBackColor = True - ' - 'MSE - ' - Me.MSE.Controls.Add(Me.Label33) - Me.MSE.Controls.Add(Me.txtTransactionID) - Me.MSE.Controls.Add(Me.cbxMSEBatchNr) - Me.MSE.Controls.Add(Me.txtBatchNr) - Me.MSE.Controls.Add(Me.txtBatchNrofTransaction) - Me.MSE.Controls.Add(Me.Label36) - Me.MSE.Controls.Add(Me.MSE_Transaktions) - Me.MSE.Controls.Add(Me.MSE_RE) - Me.MSE.Controls.Add(Me.datVon) - Me.MSE.Controls.Add(Me.MSETransakt) - Me.MSE.Controls.Add(Me.DateTimePicker1) - Me.MSE.Controls.Add(Me.DateTimePicker2) - Me.MSE.Controls.Add(Me.LinkLabel57) - Me.MSE.Controls.Add(Me.MSE_Kunden) - Me.MSE.Controls.Add(Me.Label37) - Me.MSE.Controls.Add(Me.Label38) - Me.MSE.Controls.Add(Me.Label39) - Me.MSE.Controls.Add(Me.MSETransID) - Me.MSE.Controls.Add(Me.Label40) - Me.MSE.Controls.Add(Me.MSE_missingTrans) - Me.MSE.Controls.Add(Me.MSE_Settlements) - Me.MSE.Controls.Add(Me.MSE_not_billed_Trans) - Me.MSE.Controls.Add(Me.Label42) - Me.MSE.Controls.Add(Me.cbxOnlyBilledTransactions) - Me.MSE.Controls.Add(Me.cbxUploadDA) - Me.MSE.Location = New System.Drawing.Point(4, 22) - Me.MSE.Name = "MSE" - Me.MSE.Size = New System.Drawing.Size(1186, 440) - Me.MSE.TabIndex = 2 - Me.MSE.Text = "MSE" - Me.MSE.UseVisualStyleBackColor = True - ' - 'RMC - ' - Me.RMC.Controls.Add(Me.Label29) - Me.RMC.Controls.Add(Me.cbxRMC) - Me.RMC.Controls.Add(Me.Label30) - Me.RMC.Controls.Add(Me.RMC_import) - Me.RMC.Controls.Add(Me.cbxDateienlöschenRMC) - Me.RMC.Controls.Add(Me.TextBox2) - Me.RMC.Location = New System.Drawing.Point(4, 22) - Me.RMC.Name = "RMC" - Me.RMC.Size = New System.Drawing.Size(1186, 440) - Me.RMC.TabIndex = 3 - Me.RMC.Text = "RMC" - Me.RMC.UseVisualStyleBackColor = True - ' - 'UTA - ' - Me.UTA.Controls.Add(Me.Label31) - Me.UTA.Controls.Add(Me.txtUTAYear) - Me.UTA.Controls.Add(Me.txtUTADate) - Me.UTA.Controls.Add(Me.Label34) - Me.UTA.Controls.Add(Me.lblJahrUTA) - Me.UTA.Controls.Add(Me.UTA_imports) - Me.UTA.Controls.Add(Me.UTAREPdf) - Me.UTA.Controls.Add(Me.cbxDateienlöschenUTA) - Me.UTA.Controls.Add(Me.TextBox1) - Me.UTA.Controls.Add(Me.UTA_Laender) - Me.UTA.Controls.Add(Me.lblUTAPDFvollst) - Me.UTA.Location = New System.Drawing.Point(4, 22) - Me.UTA.Name = "UTA" - Me.UTA.Size = New System.Drawing.Size(1186, 440) - Me.UTA.TabIndex = 4 - Me.UTA.Text = "UTA" - Me.UTA.UseVisualStyleBackColor = True - ' - 'PLOSE - ' - Me.PLOSE.Controls.Add(Me.LinkLabel52) - Me.PLOSE.Controls.Add(Me.Label5) - Me.PLOSE.Controls.Add(Me.txtPloseJahr) - Me.PLOSE.Controls.Add(Me.Label52) - Me.PLOSE.Controls.Add(Me.txtPLoseKdNr) - Me.PLOSE.Controls.Add(Me.Label51) - Me.PLOSE.Controls.Add(Me.LinkLabel24) - Me.PLOSE.Controls.Add(Me.LinkLabel23) - Me.PLOSE.Controls.Add(Me.Laender_Steuercode) - Me.PLOSE.Controls.Add(Me.PlosePdfRE) - Me.PLOSE.Location = New System.Drawing.Point(4, 22) - Me.PLOSE.Name = "PLOSE" - Me.PLOSE.Size = New System.Drawing.Size(1186, 440) - Me.PLOSE.TabIndex = 5 - Me.PLOSE.Text = "PLOSE" - Me.PLOSE.UseVisualStyleBackColor = True - ' - 'TabPage5 - ' - Me.TabPage5.Controls.Add(Me.cbxPloseNeu) - Me.TabPage5.Controls.Add(Me.Label44) - Me.TabPage5.Controls.Add(Me.txtKdNr) - Me.TabPage5.Controls.Add(Me.cbxITalt) - Me.TabPage5.Controls.Add(Me.Button23) - Me.TabPage5.Controls.Add(Me.cbxPlose) - Me.TabPage5.Controls.Add(Me.PictureBox25) - Me.TabPage5.Controls.Add(Me.Label46) - Me.TabPage5.Controls.Add(Me.Label43) - Me.TabPage5.Controls.Add(Me.Label45) - Me.TabPage5.Controls.Add(Me.CheckBox8) - Me.TabPage5.Controls.Add(Me.Button25) - Me.TabPage5.Controls.Add(Me.cbxMSEneu) - Me.TabPage5.Controls.Add(Me.cbxIDSalt) - Me.TabPage5.Controls.Add(Me.cbxIDSneu) - Me.TabPage5.Controls.Add(Me.cbxMSEalt) - Me.TabPage5.Controls.Add(Me.cbxUTAalt) - Me.TabPage5.Controls.Add(Me.cbxUTANeu) - Me.TabPage5.Location = New System.Drawing.Point(4, 22) - Me.TabPage5.Name = "TabPage5" - Me.TabPage5.Size = New System.Drawing.Size(937, 440) - Me.TabPage5.TabIndex = 6 - Me.TabPage5.Text = "USTVA-Summen" - Me.TabPage5.UseVisualStyleBackColor = True + Me.LinkLabel53.LinkColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) + Me.LinkLabel53.Location = New System.Drawing.Point(24, 221) + Me.LinkLabel53.Name = "LinkLabel53" + Me.LinkLabel53.Size = New System.Drawing.Size(156, 23) + Me.LinkLabel53.TabIndex = 169 + Me.LinkLabel53.TabStop = True + Me.LinkLabel53.Text = "USTVA-Pos prüfen/setzen (archiv.)" ' 'frmStartOptions ' @@ -4332,17 +4344,12 @@ Partial Class frmStartOptions Me.TabPage3.PerformLayout() Me.TabPage4.ResumeLayout(False) Me.TabPage4.PerformLayout() - CType(Me.PictureBox25, System.ComponentModel.ISupportInitialize).EndInit() - CType(Me.PictureBox21, System.ComponentModel.ISupportInitialize).EndInit() - CType(Me.PictureBox19, System.ComponentModel.ISupportInitialize).EndInit() - CType(Me.PictureBox18, System.ComponentModel.ISupportInitialize).EndInit() - CType(Me.PictureBox12, System.ComponentModel.ISupportInitialize).EndInit() - CType(Me.PictureBox11, System.ComponentModel.ISupportInitialize).EndInit() - CType(Me.PictureBox10, System.ComponentModel.ISupportInitialize).EndInit() - CType(Me.PictureBox9, System.ComponentModel.ISupportInitialize).EndInit() Me.TabControl1.ResumeLayout(False) Me.Asfinag.ResumeLayout(False) Me.Asfinag.PerformLayout() + CType(Me.PictureBox18, System.ComponentModel.ISupportInitialize).EndInit() + CType(Me.PictureBox19, System.ComponentModel.ISupportInitialize).EndInit() + CType(Me.PictureBox21, System.ComponentModel.ISupportInitialize).EndInit() Me.IDS.ResumeLayout(False) Me.IDS.PerformLayout() Me.MSE.ResumeLayout(False) @@ -4355,6 +4362,11 @@ Partial Class frmStartOptions Me.PLOSE.PerformLayout() Me.TabPage5.ResumeLayout(False) Me.TabPage5.PerformLayout() + CType(Me.PictureBox25, System.ComponentModel.ISupportInitialize).EndInit() + CType(Me.PictureBox12, System.ComponentModel.ISupportInitialize).EndInit() + CType(Me.PictureBox11, System.ComponentModel.ISupportInitialize).EndInit() + CType(Me.PictureBox10, System.ComponentModel.ISupportInitialize).EndInit() + CType(Me.PictureBox9, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) End Sub @@ -4656,4 +4668,5 @@ Partial Class frmStartOptions Friend WithEvents UTA As TabPage Friend WithEvents PLOSE As TabPage Friend WithEvents TabPage5 As TabPage + Friend WithEvents LinkLabel53 As LinkLabel End Class diff --git a/initATLASAufschubkonten/frmStartOptions.vb b/initATLASAufschubkonten/frmStartOptions.vb index 6e9e35f..a229645 100644 --- a/initATLASAufschubkonten/frmStartOptions.vb +++ b/initATLASAufschubkonten/frmStartOptions.vb @@ -5408,6 +5408,11 @@ Public Class frmStartOptions Exit Sub End If + If cbxPlose.Checked And cbxPloseNeu.Checked Then + MsgBox("Plose-Vorschausummen werden per alter Logik UND neuer Logik berechnet, das würde die Plose-Vorschausumme doppelt berechnet werden!" & vbNewLine & "Vorgang wird abgebrochen!") + Exit Sub + End If + cMDMFunctionsAllgemein.setSchnittstellen(cbxPlose.Checked, cbxITalt.Checked, cbxMSEalt.Checked, cbxMSEneu.Checked, cbxIDSalt.Checked, cbxIDSneu.Checked, cbxUTAalt.Checked, cbxUTANeu.Checked, cbxPloseNeu.Checked) If sender Is Button23 Then @@ -5823,7 +5828,7 @@ weiter: End If - Dim fehlendePDFzuRE As String = "select Rechnungsnummer_pro_Lieferland, cast([Rechnungsdatum] as Date) as Rechnungsdatum, Kundennummer, Abrechnungsnummer from tblUTAImportNew where daId is null and cast([Rechnungsdatum] as Date) = '" & utaDate & "' and Lieferland <> 'ROM' and Steuerliches_Lieferland <> 'ROM' group by Rechnungsdatum, Kundennummer, Abrechnungsnummer, Rechnungsnummer_pro_Lieferland " + Dim fehlendePDFzuRE As String = "select Rechnungsnummer_pro_Lieferland, cast([Rechnungsdatum] as Date) as Rechnungsdatum, Kundennummer, Abrechnungsnummer from tblUTAImportNew where daId is null and cast([Rechnungsdatum] as Date) = '" & utaDate & "' and Lieferland <> 'ROM' and Steuerliches_Lieferland <> 'ROM' or daId is null and cast([Rechnungsdatum] as Date) = '" & utaDate & "' and Kundennummer = 868070 group by Rechnungsdatum, Kundennummer, Abrechnungsnummer, Rechnungsnummer_pro_Lieferland " Dim SQL As New VERAG_PROG_ALLGEMEIN.SQL Dim dtRechnnungsdaten As DataTable = SQL.loadDgvBySql(fehlendePDFzuRE, "FMZOLL") @@ -5953,4 +5958,33 @@ weiter: End Sub + Private Sub LinkLabel53_LinkClicked_1(sender As Object, e As LinkLabelLinkClickedEventArgs) Handles LinkLabel53.LinkClicked + + Dim sql As New SQL + + Dim PLOSEdaidaktualiseren As String = "select * from tblPLOSE_Details where Year(plose_RechnungsDatum) = " & txtPloseJahr.Text & " and UStVAn_ID is null and plose_ArchiviertDatum is null and plose_Archiv = 0 and plose_POLSEKundennummer = 540961 " + + Dim dtUSTVA_daid_akt As DataTable = sql.loadDgvBySql(PLOSEdaidaktualiseren, "FMZOLL") + + For Each row As DataRow In dtUSTVA_daid_akt.Rows + + Dim ustva As New cUSTVAntrag(row.Item("UStVAn_ID")) + + If ustva.UStVAn_LandNr IsNot Nothing AndAlso IsNumeric(ustva.UStVAn_LandNr) Then + + Dim Antrag_LandKz = sql.DLookup("LandKz", "[Länderverzeichnis für die Außenhandelsstatistik]", "Landnr='" & ustva.UStVAn_LandNr & "'", "FMZOLL") + + Dim daId As Integer = 0 + + Dim SQL_String = "SELECT isnull(tblIDSInvoicesNewSplittedByCountry.daId ,0) FROM [tblIDSInvoicesNewSplittedByCountry] where tblIDSInvoicesNewSplittedByCountry.[YearMonthDay] ='" & CDate(row.Item("UStVPo_ReDat")).ToShortDateString & "' AND tblIDSInvoicesNewSplittedByCountry.Invoicenumber ='" & row.Item("UStVPo_ReNr").ToString.Replace("/", "") & "' and tblIDSInvoicesNewSplittedByCountry.Country='" & Antrag_LandKz & "' AND tblIDSInvoicesNewSplittedByCountry.daId is not null" + + daId = CInt(sql.getValueTxtBySql(SQL_String, "FMZOLL",,, 0)) + + If daId > 0 Then sql.doSQL("update tblUStVPositionen set UStVPo_daId = " & daId & ", UStVPo_SchnittstellenNr = 12 where UStVAn_ID = " & row.Item("UStVAn_ID") & " and UStVPo_ID = " & row.Item("UStVPo_ID") & " AND UStVPo_SchnittstellenNr = 8", "FMZOLL") + + End If + + Next + + End Sub End Class \ No newline at end of file