private void UpdateTable(string filepath)
        {
            string htmlText = bl.makeTable(filepath);

            PreviewWB.NavigateToString(htmlText);
            currentHtmlTableText = htmlText;
            UpdateRichTextBox(CodeRTB, htmlText);
        }
        private void UpdateTable(string head, string body)
        {
            string htmlText = bl.makeTableFromTextBoxes(head, body);

            PreviewWB.NavigateToString(bl.makeTableFromTextBoxes(head, body));
            currentHtmlTableText = htmlText;
            UpdateRichTextBox(CodeRTB, htmlText);
        }