From c03a75254b4e01ba5942d662f6d1cb4c8470e8d7 Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Wed, 29 Apr 2020 12:10:05 +0200 Subject: [PATCH] link multiselect to index type (is vector) --- Global_Indexer/frmAdministration.vb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Global_Indexer/frmAdministration.vb b/Global_Indexer/frmAdministration.vb index 0a4338a..f92d834 100644 --- a/Global_Indexer/frmAdministration.vb +++ b/Global_Indexer/frmAdministration.vb @@ -455,12 +455,12 @@ Public Class frmAdministration If frmloaded = True Then If SUGGESTIONCheckBox.CheckState = CheckState.Checked Then btnSQLView.Visible = True - MULTISELECTCheckBox.Visible = True + 'MULTISELECTCheckBox.Visible = True VKT_ADD_ITEMCheckbox.Visible = True VKT_PREVENT_MULTIPLE_VALUESCheckbox.Visible = True Else btnSQLView.Visible = False - MULTISELECTCheckBox.Visible = False + 'MULTISELECTCheckBox.Visible = False VKT_ADD_ITEMCheckbox.Visible = False VKT_PREVENT_MULTIPLE_VALUESCheckbox.Visible = False End If @@ -992,11 +992,11 @@ Public Class frmAdministration Private Sub WD_INDEXComboBox_SelectedIndexChanged(sender As Object, e As EventArgs) Handles WD_INDEXComboBox.SelectedIndexChanged _indexIsVectorField = indexIsVectorField() MULTISELECTCheckBox.Visible = _indexIsVectorField - VKT_PREVENT_MULTIPLE_VALUESCheckbox.Visible = _indexIsVectorField + 'VKT_PREVENT_MULTIPLE_VALUESCheckbox.Visible = _indexIsVectorField If Not _indexIsVectorField Then MULTISELECTCheckBox.Checked = False - VKT_PREVENT_MULTIPLE_VALUESCheckbox.Checked = False + 'VKT_PREVENT_MULTIPLE_VALUESCheckbox.Checked = False End If End Sub