MS
This commit is contained in:
parent
b6b0858888
commit
f36b591bd1
@ -858,7 +858,7 @@ Public Class frmIndex
|
|||||||
|
|
||||||
Dim oSplitArray = Split(oIndexValue, ClassConstants.VECTORSEPARATOR)
|
Dim oSplitArray = Split(oIndexValue, ClassConstants.VECTORSEPARATOR)
|
||||||
Dim oListofString As New List(Of String)
|
Dim oListofString As New List(Of String)
|
||||||
If oSplitArray.Count = 0 Then
|
If oSplitArray.Length = 0 Then
|
||||||
oListofString.Add(oIndexValue)
|
oListofString.Add(oIndexValue)
|
||||||
Else
|
Else
|
||||||
For Each oStr In oSplitArray
|
For Each oStr In oSplitArray
|
||||||
@ -866,12 +866,9 @@ Public Class frmIndex
|
|||||||
Next
|
Next
|
||||||
End If
|
End If
|
||||||
|
|
||||||
If oSplitArray.Length <= 1 Then
|
'If oSplitArray.Length <= 1 Then
|
||||||
indexierung_erfolgreich = WINDREAM.SetFileIndex(CURRENT_NEWFILENAME, oIndexName, oIndexValue, CURR_DOKART_OBJECTTYPE)
|
' indexierung_erfolgreich = WINDREAM.SetFileIndex(CURRENT_NEWFILENAME, oIndexName, oIndexValue, CURR_DOKART_OBJECTTYPE)
|
||||||
Else
|
'Else
|
||||||
For Each oStr In oSplitArray
|
|
||||||
oListofString.Add(oStr)
|
|
||||||
Next
|
|
||||||
If oOverwrite = False And oExistingItems.Count > 0 Then
|
If oOverwrite = False And oExistingItems.Count > 0 Then
|
||||||
oListofString = oExistingItems.Concat(oListofString).ToList()
|
oListofString = oExistingItems.Concat(oListofString).ToList()
|
||||||
End If
|
End If
|
||||||
@ -879,7 +876,7 @@ Public Class frmIndex
|
|||||||
oListofString = oListofString.Distinct().ToList()
|
oListofString = oListofString.Distinct().ToList()
|
||||||
End If
|
End If
|
||||||
indexierung_erfolgreich = WINDREAM.SetFileIndexLoS(CURRENT_NEWFILENAME, oIndexName, oListofString, CURR_DOKART_OBJECTTYPE)
|
indexierung_erfolgreich = WINDREAM.SetFileIndexLoS(CURRENT_NEWFILENAME, oIndexName, oListofString, CURR_DOKART_OBJECTTYPE)
|
||||||
End If
|
'End If
|
||||||
|
|
||||||
Else
|
Else
|
||||||
indexierung_erfolgreich = WINDREAM.SetFileIndex(CURRENT_NEWFILENAME, oIndexName, oIndexValue, CURR_DOKART_OBJECTTYPE)
|
indexierung_erfolgreich = WINDREAM.SetFileIndex(CURRENT_NEWFILENAME, oIndexName, oIndexValue, CURR_DOKART_OBJECTTYPE)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user