moar stuff

This commit is contained in:
JenneJ 2015-10-20 10:27:29 +02:00
parent 1e17fbe167
commit 8c71506f04
4 changed files with 4 additions and 8 deletions

View File

@ -61,9 +61,6 @@
<OptionInfer>On</OptionInfer> <OptionInfer>On</OptionInfer>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Reference Include="Humanizer">
<HintPath>..\packages\Humanizer.1.37.7\lib\portable-win+net40+sl50+wp8+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Humanizer.dll</HintPath>
</Reference>
<Reference Include="NLog"> <Reference Include="NLog">
<HintPath>..\..\3rdparty\NLog.4.1.2\lib\net45\NLog.dll</HintPath> <HintPath>..\..\3rdparty\NLog.4.1.2\lib\net45\NLog.dll</HintPath>
</Reference> </Reference>
@ -93,7 +90,6 @@
<Compile Include="Config.vb" /> <Compile Include="Config.vb" />
<Compile Include="DB.vb" /> <Compile Include="DB.vb" />
<Compile Include="DPMAConnect.vb" /> <Compile Include="DPMAConnect.vb" />
<Compile Include="Image.vb" />
<Compile Include="Mark.vb" /> <Compile Include="Mark.vb" />
<Compile Include="Main.vb" /> <Compile Include="Main.vb" />
<Compile Include="My Project\AssemblyInfo.vb" /> <Compile Include="My Project\AssemblyInfo.vb" />

View File

@ -123,7 +123,7 @@ Module Main
If prop = "MarkFeature" Then If prop = "MarkFeature" Then
If value = "wort-bildmarke" Or value = "bildmarke" Then If value = "wort-bildmarke" Or value = "bildmarke" Then
Dim imageControlId = db.GetControlId(formId, "MarkImage") Dim imageControlId = db.GetControlId(formId, "MarkImage")
Dim bimage() As Byte = Image.ToByteArray(m.Image.BinaryImage) Dim bimage() As Byte = Convert.FromBase64String(m.Image.BinaryImage)
db.InsertImage(bimage, imageControlId, recordId) db.InsertImage(bimage, imageControlId, recordId)
End If End If
End If End If

View File

@ -18,7 +18,7 @@
See https://github.com/nlog/NLog/wiki/Targets for possible targets. See https://github.com/nlog/NLog/wiki/Targets for possible targets.
See https://github.com/nlog/NLog/wiki/Layout-Renderers for the possible layout renderers. See https://github.com/nlog/NLog/wiki/Layout-Renderers for the possible layout renderers.
--> -->
<target name="logfile" xsi:type="File" fileName="${basedir}/BrainpoolXmlParser-${shortdate}.log" /> <target name="logfile" xsi:type="File" fileName="${basedir}/Log/BrainpoolXmlParser-${shortdate}.log" />
<target name="console" xsi:type="Console"/> <target name="console" xsi:type="Console"/>
<!-- <!--

View File

@ -58,8 +58,6 @@ Public Class Parser
mark.MarkFeature = r.ReadInnerXml() mark.MarkFeature = r.ReadInnerXml()
Case "MarkVerbalElementText" Case "MarkVerbalElementText"
mark.MarkVerbalElementText = r.ReadInnerXml() mark.MarkVerbalElementText = r.ReadInnerXml()
Case "MarkCurrentStatusCode"
mark.MarkCurrentStatusCode = r.ReadInnerXml()
Case "RegistrationOfficeCode" Case "RegistrationOfficeCode"
mark.RegistrationOfficeCode = r.ReadInnerXml() mark.RegistrationOfficeCode = r.ReadInnerXml()
Case "RegistrationDate" Case "RegistrationDate"
@ -124,6 +122,8 @@ Public Class Parser
mark.OppositionPeriodEndDate = r.ReadInnerXml() mark.OppositionPeriodEndDate = r.ReadInnerXml()
Case "MarkImage" Case "MarkImage"
ReadImageDetails(r.ReadSubtree(), mark) ReadImageDetails(r.ReadSubtree(), mark)
Case "MarkCurrentStatusCode"
mark.MarkCurrentStatusCode = r.ReadInnerXml()
End Select End Select
End If End If
End If End If