Ejemplo n.º 1
0
 public NewDBPage5(NewDBVars n, SSDataBase db)
 {
     ndbv = n;
     mydb = db;
     // This call is required by the Windows Form Designer.
     InitializeComponent();
 }
Ejemplo n.º 2
0
        public NewDBPage4(NewDBVars n)
        {
            ndbv = n;
            // This call is required by the Windows Form Designer.
            InitializeComponent();

            // TODO: Add any initialization after the InitializeComponent call
        }
Ejemplo n.º 3
0
        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;
        }
Ejemplo n.º 4
0
        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)
            });
        }
Ejemplo n.º 5
0
 public NewDBPage8(NewDBVars n)
 {
     ndbv = n;
     // This call is required by the Windows Form Designer.
     InitializeComponent();
 }
Ejemplo n.º 6
0
 public NewDBPage1(NewDBVars n)
 {
     InitializeComponent();
     ndbv = n;
 }