Ejemplo n.º 1
0
 void Generate()
 {
     //Invokes the grid onto the same thread as the operation so that we still see the log info as it happens
     this.kryptonDataGridView2.BeginInvoke((MethodInvoker) delegate()
     {
         SubSommander.RefreshProviders();
         SubSommander.GenerateAll();
         SubSommander.Compile();
     });
 }
Ejemplo n.º 2
0
 private void btnScriptSchema_Click(object sender, EventArgs e)
 {
     SubSommander.ScriptSchema();
     MessageBox.Show("Schema Written", "SQL Schema", MessageBoxButtons.OK, MessageBoxIcon.Information);
 }