public void Export()
 {
     SQLForm sql = new SQLForm();
     if (sql.ShowDialog() == System.Windows.Forms.DialogResult.OK)
     {
         string sqltext = sql.SQLText;
         ExecuteTasks(sqltext);
     }
 }
예제 #2
0
        public void Export()
        {
            SQLForm sql = new SQLForm();

            if (sql.ShowDialog() == System.Windows.Forms.DialogResult.OK)
            {
                string sqltext = sql.SQLText;
                ExecuteTasks(sqltext);
            }
        }