Laufzettel; EZABestätigung, Kafka, CBAM, KVI Report

This commit is contained in:
2026-04-13 13:19:14 +02:00
parent cfa9bfe77a
commit 280f2a68f8
14 changed files with 2368 additions and 116 deletions

View File

@@ -12,6 +12,7 @@ Imports SDL.eu.europa.ec
Imports Microsoft.Office.Interop
Imports GrapeCity.DataVisualization.TypeScript
Imports VERAG_PROG_ALLGEMEIN
Imports GrapeCity.ActiveReports.Printing
Public Class cBerechtignungenFunctions
@@ -81,7 +82,11 @@ Public Class cProgramFunctions
rpt.Dispose()
Return True
Catch ex As Exception
MsgBox(ex.Message & ex.StackTrace)
Try
MsgBox(ex.Message & ex.StackTrace & " PaperSize: " & rpt.Document.Printer.PaperSize.ToString & " PaperKind: " & rpt.Document.Printer.PaperKind)
Catch err2 As Exception
MsgBox(ex.Message & err2.StackTrace)
End Try
Return False
End Try