public MessageBoxAnalyzer(frmSQL pParent, string rootFolder, string connString)
        {
            this.rootFolder = rootFolder;
            this.connString = connString;
            this.parentForm = pParent;

            files.Clear();
            GetFiles(rootFolder, "*.scx", true);
            GetFiles(rootFolder, "*.Vcx", true);
        }
        private void BtnExportToSQL_Click(object sender, EventArgs e)
        {
            frmSQL SQL = new frmSQL(selectedTable);

            SQL.ShowDialog();
        }
 public SourceAnyWhereHelper(frmSQL pForm)
 {
     this.parentForm = pForm;
 }
Beispiel #4
0
        private void sQLToolStripMenuItem_Click(object sender, EventArgs e)
        {
            frmSQL formSQL = new frmSQL();

            formSQL.ShowDialog(this);
        }