You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Report back to the user if there is not metadata available
347
336
if(itemList==null||itemList.Count==0)
348
337
{
349
-
_localRichTextBox.Text=$"There was no metadata available to display {_inputNiceName} content. Please check the associated metadata schema (are there any {_inputNiceName} records available?) or the database connection.\r\n\r\n";
338
+
RaiseOnChangeMainText($"There was no metadata available to display {_inputNiceName} content. Please check the associated metadata schema (are there any {_inputNiceName} records available?) or the database connection.\r\n\r\n");
350
339
}
351
340
352
341
// Initial documentation as per the definition notes
353
342
if(notes!=null)
354
343
{
355
-
_localRichTextBox.AppendText(notes);
344
+
RaiseOnChangeMainText(notes);
356
345
}
357
346
358
347
// Set the tab pages back to what they were before reload
@@ -469,7 +447,7 @@ public void SetItemList(Dictionary<string, VDW_DataObjectMappingList> itemList)
469
447
// Report back to the user if there is not metadata available
470
448
if(_localCheckedListBox.Items.Count==0)
471
449
{
472
-
_localRichTextBox.Text=$"There was no metadata available to display {_inputNiceName} content. Please check the associated metadata schema (are there any {_inputNiceName} records available?) or the database connection.";
450
+
RaiseOnChangeMainText($"There was no metadata available to display {_inputNiceName} content. Please check the associated metadata schema (are there any {_inputNiceName} records available?) or the database connection.");
473
451
}
474
452
475
453
// Set all the Check Boxes to 'checked'
@@ -533,7 +511,6 @@ private void DisplayPattern(object o, EventArgs e)
_localRichTextBox.AppendText($"There was no metadata selected to generate {_inputNiceName} code. Please check the metadata schema - are there any {_inputNiceName} objects selected?");
665
+
RaiseOnChangeMainText($"There was no metadata selected to generate {_inputNiceName} code. Please check the metadata schema - are there any {_inputNiceName} objects selected?");
"The selected directory does not seem to contain a loadPatternCollection.json file. Did you select a correct Load Pattern directory?";
1080
+
richTextBoxInformationMain.Text="The selected directory does not seem to contain a loadPatternCollection.json file. Did you select a correct Load Pattern directory?";
1081
1081
}
1082
1082
else
1083
1083
{
1084
1084
richTextBoxInformationMain.Text="The path now points to a directory that contains the loadPatternCollection.json Load Pattern Collection file.";
0 commit comments