예제 #1
0
파일: Form1.cs 프로젝트: KnightNine/ManorDB
        private void removeTableToolStripMenuItem_Click(object sender, EventArgs e)
        {
            string[] input = Prompt.ShowDialog("Table Name:", "Remove Table", true, false, null);

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