private void validateToolStripMenuItem_Click(object sender, EventArgs e)
        {
            // Check the template for references to variables that do not exist
            List <Error> errors = template.CheckAllVariableReferences();

            displayErrors(errors);

            //TODO Check the model for duplicate fields
        }
Пример #2
0
        private void mnuTools_Validate_Click(object sender, EventArgs e)
        {
            bottomTab_Errors_Clear();

            // Check the template for references to variables that do not exist
            List <Error> errors = template.CheckAllVariableReferences();

            displayErrors(errors);

            //TODO Check the model for duplicate fields
        }