diff --git a/.vs/ProjectSettings.json b/.vs/ProjectSettings.json new file mode 100644 index 0000000..f8b4888 --- /dev/null +++ b/.vs/ProjectSettings.json @@ -0,0 +1,3 @@ +{ + "CurrentProjectSetting": null +} \ No newline at end of file diff --git a/.vs/VSWorkspaceState.json b/.vs/VSWorkspaceState.json new file mode 100644 index 0000000..6b61141 --- /dev/null +++ b/.vs/VSWorkspaceState.json @@ -0,0 +1,6 @@ +{ + "ExpandedNodes": [ + "" + ], + "PreviewInSolutionExplorer": false +} \ No newline at end of file diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite new file mode 100644 index 0000000..063d69e Binary files /dev/null and b/.vs/slnx.sqlite differ diff --git a/app/DpmaXmlParser/DpmaXmlParser.exe.config b/app/DpmaXmlParser/DpmaXmlParser.exe.config index 337ede8..f2fea94 100644 --- a/app/DpmaXmlParser/DpmaXmlParser.exe.config +++ b/app/DpmaXmlParser/DpmaXmlParser.exe.config @@ -16,16 +16,32 @@ - - - - - - - - - - - + + + + + + + + + + + + \ No newline at end of file diff --git a/app/DpmaXmlParser/Main.vb b/app/DpmaXmlParser/Main.vb index 74f2bd9..8368908 100644 --- a/app/DpmaXmlParser/Main.vb +++ b/app/DpmaXmlParser/Main.vb @@ -24,23 +24,23 @@ Module Main Private version As String Private marks As New List(Of Mark) Private props = New List(Of String) From { - "RegistrationOfficeCode", - "RegistrationDate", - "RegistrationNumber", - "MarkCurrentStatusCode", - "MarkVerbalElementText", - "MarkFeature", - "ApplicationDate", - "Applicant", - "Representative", - "PublicationDate", - "ExpiryDate", - "TerminationDate", - "OppositionPeriodStartDate", - "OppositionPeriodEndDate", - "Classification", - "ClassificationLong" - } + "RegistrationOfficeCode", + "RegistrationDate", + "RegistrationNumber", + "MarkCurrentStatusCode", + "MarkVerbalElementText", + "MarkFeature", + "ApplicationDate", + "Applicant", + "Representative", + "PublicationDate", + "ExpiryDate", + "TerminationDate", + "OppositionPeriodStartDate", + "OppositionPeriodEndDate", + "Classification", + "ClassificationLong" + } Sub Main() Try @@ -195,7 +195,7 @@ Module Main logger.Error("=================== ERROR ========================") logger.Error("==================================================") logger.Error("An Error occurred: {0}", GetExceptionInfo(ex)) - Environment.Exit(1) + 'Environment.Exit(1) End Try End Sub diff --git a/app/DpmaXmlParser/Querybuilder.vb b/app/DpmaXmlParser/Querybuilder.vb index b1f8fc4..cd446b1 100644 --- a/app/DpmaXmlParser/Querybuilder.vb +++ b/app/DpmaXmlParser/Querybuilder.vb @@ -5,7 +5,7 @@ Dim companies As List(Of String) Dim stringsToIgnore As New List(Of String) - ' searchvalues ist entweder eine SQL Abfrage oder eine Kommagetrennte Liste + ' searchvalues ist entweder eine SQL Abfrage oder eine Semikolongetrennte Liste If config.query.ToUpper.StartsWith("SELECT") Then companies = GetLiveQueryResult(config.query, db) Else