Compare commits
2 Commits
d8bc87fd24
...
e849d21237
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e849d21237 | ||
|
|
573912ced5 |
@@ -129,7 +129,9 @@ Public Class Form1
|
|||||||
If oDialogResult = DialogResult.OK Then
|
If oDialogResult = DialogResult.OK Then
|
||||||
Dim oDoc = _zugferd.ValidateZUGFeRDFileWithGDPicture(OpenFileDialog1.FileName)
|
Dim oDoc = _zugferd.ValidateZUGFeRDFileWithGDPicture(OpenFileDialog1.FileName)
|
||||||
Dim oResult = _zugferd.SerializeZUGFeRDDocument(oDoc)
|
Dim oResult = _zugferd.SerializeZUGFeRDDocument(oDoc)
|
||||||
Console.WriteLine()
|
|
||||||
|
WriteLog("Specification: " & oResult.Specification)
|
||||||
|
WriteLog("Embedded File Name: " & oResult.DataFileName)
|
||||||
|
|
||||||
Dim oSpecification = oResult.Specification
|
Dim oSpecification = oResult.Specification
|
||||||
|
|
||||||
@@ -143,11 +145,17 @@ Public Class Form1
|
|||||||
|
|
||||||
Dim oResult2 = _zugferd.PropertyValues.CheckPropertyValues(oResult.SchemaObject, oPropertyMap, "test")
|
Dim oResult2 = _zugferd.PropertyValues.CheckPropertyValues(oResult.SchemaObject, oPropertyMap, "test")
|
||||||
|
|
||||||
|
WriteLog("Valid Properties: [{0}]", oResult2.ValidProperties.Count)
|
||||||
|
For Each Prop In oResult2.ValidProperties
|
||||||
|
WriteLog("Property: [{0}] = [{1}]", Prop.Description, Prop.Value)
|
||||||
|
Next
|
||||||
|
|
||||||
|
WriteLog("Missing Properties: [{0}]", oResult2.MissingProperties.Count)
|
||||||
For Each Prop In oResult2.MissingProperties
|
For Each Prop In oResult2.MissingProperties
|
||||||
WriteLog("Missing Property: [{0}]", Prop)
|
WriteLog("Missing Property: [{0}]", Prop)
|
||||||
Next
|
Next
|
||||||
|
|
||||||
Console.WriteLine()
|
WriteLog("--------------------------------")
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ Imports System.Runtime.InteropServices
|
|||||||
<Assembly: AssemblyCompany("Digital Data")>
|
<Assembly: AssemblyCompany("Digital Data")>
|
||||||
<Assembly: AssemblyProduct("DDZUGFeRDService")>
|
<Assembly: AssemblyProduct("DDZUGFeRDService")>
|
||||||
<Assembly: AssemblyCopyright("Copyright © 2023")>
|
<Assembly: AssemblyCopyright("Copyright © 2023")>
|
||||||
<Assembly: AssemblyTrademark("2.3.2.0")>
|
<Assembly: AssemblyTrademark("2.3.3.0")>
|
||||||
|
|
||||||
<Assembly: ComVisible(False)>
|
<Assembly: ComVisible(False)>
|
||||||
|
|
||||||
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
|
|||||||
' übernehmen, indem Sie "*" eingeben:
|
' übernehmen, indem Sie "*" eingeben:
|
||||||
' <Assembly: AssemblyVersion("1.0.*")>
|
' <Assembly: AssemblyVersion("1.0.*")>
|
||||||
|
|
||||||
<Assembly: AssemblyVersion("2.3.2.0")>
|
<Assembly: AssemblyVersion("2.3.3.0")>
|
||||||
<Assembly: AssemblyFileVersion("2.3.2.0")>
|
<Assembly: AssemblyFileVersion("2.3.3.0")>
|
||||||
|
|||||||
Reference in New Issue
Block a user