public NewDBPage5(NewDBVars n, SSDataBase db) { ndbv = n; mydb = db; // This call is required by the Windows Form Designer. InitializeComponent(); }
public NewDBPage4(NewDBVars n) { ndbv = n; // This call is required by the Windows Form Designer. InitializeComponent(); // TODO: Add any initialization after the InitializeComponent call }
public NewDBPage3(NewDBVars n) { ndbv = n; // This call is required by the Windows Form Designer. InitializeComponent(); // this.tb_Name.Text = ndbv.Name; // this.tb_Location.Text = ndbv.Location; }
public NewDBWizard(SSDataBase db, string dbpath) { // System.Reflection.Assembly tasm = System.Reflection.Assembly.GetEntryAssembly(); ndbv = new NewDBVars(); mydb = db; ndbv.DefaultPath = dbpath + "\\"; //System.IO.Path.GetDirectoryName(tasm.Location) + "\\Databases\\"; ndbv.Path = ndbv.DefaultPath; InitializeComponent(); Controls.AddRange(new Control[] { new NewDBPage1(), new NewDBPage2(), new NewDBPage3(ndbv), new NewDBPage4(ndbv), new NewDBPage5(ndbv, mydb), new NewDBPage6(ndbv, mydb), new NewDBPage7(ndbv), new NewDBPage8(ndbv), new NewDBPage9(ndbv, mydb) }); }
public NewDBPage8(NewDBVars n) { ndbv = n; // This call is required by the Windows Form Designer. InitializeComponent(); }
public NewDBPage1(NewDBVars n) { InitializeComponent(); ndbv = n; }