Beispiel #1
0
        private void newTableToolStripMenuItem_Click(object sender, EventArgs e)
        {
            string[] input = Prompt.ShowDialog("Table Name:", "New Table", true, false, null);

            if (input[0] == "T")
            {
                DatabaseFunct.AddTable(input[1]);
            }
        }