From 5e466cd802fa6658b507ca5839d7363cbd3ee9c6 Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Tue, 28 Jul 2020 13:27:49 +0200 Subject: [PATCH] improve handling of null as default value --- Global_Indexer/ClassControls.vb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Global_Indexer/ClassControls.vb b/Global_Indexer/ClassControls.vb index 534898e..6a363d3 100644 --- a/Global_Indexer/ClassControls.vb +++ b/Global_Indexer/ClassControls.vb @@ -374,7 +374,7 @@ Public Class ClassControls } } - If Vorgabe = "NULL" Then + If Vorgabe.ToUpper = "NULL" Then oPicker.EditValue = Nothing End If