ZUGFeRDTest: update gui

This commit is contained in:
Jonathan Jenne 2022-03-28 11:38:40 +02:00
parent 15bd116a64
commit c833f486ac

View File

@ -105,10 +105,13 @@ Public Class Form1
Dim oArgs As New WorkerArgs()
If oResult = DialogResult.OK Then
Dim oDoc = _zugferd.ValidateZUGFeRDFileWithGDPicture(OpenFileDialog1.FileName)
Dim oZUGFERD = _zugferd.SerializeZUGFeRDDocument(oDoc)
Console.WriteLine()
Try
Dim oDoc = _zugferd.ValidateZUGFeRDFileWithGDPicture(OpenFileDialog1.FileName)
Dim oZUGFERD = _zugferd.SerializeZUGFeRDDocument(oDoc)
Console.WriteLine()
Catch ex As Exception
MsgBox(ex.Message)
End Try
End If
End Sub