Show Control names in Final Indexing SQL

This commit is contained in:
Jonathan Jenne
2022-07-26 10:26:47 +02:00
parent d58cb3f714
commit 5e0a462f0e
3 changed files with 11 additions and 4 deletions

View File

@@ -22,7 +22,7 @@ Public Class ClassSQLEditor
oForm.PlaceholdersManualPrefix = "CTRL"
oForm.PlaceholdersManualTitle = "Controls"
oForm.PlaceholdersManual = CURRENT_CONTROL_LIST.ToDictionary(Function(control) control.Name, Function(control) control.Name)
oForm.PlaceholdersManual = CURRENT_CONTROL_NAME_LIST.ToDictionary(Function(name) name, Function(name) name)
If svc.ShowDialog(oForm) = DialogResult.OK Then
Dim sql As New SQLValue(oForm.SQLCommand)