Пример #1
0
 public InsertDataForm(StartScreenForm startForm, TableList tablesList)
 {
     this.startForm = startForm;
     InitializeComponent();
     this.dbHelper = new DatabaseHelper(startForm.Template.DBconfig);
     this.TablesList = tablesList;
     getLocalizedLabelsMessages();
     getDefaultValues();
     createTablesView();
 }
Пример #2
0
 public TablesForm(TableList tablesList, StartScreenForm startForm)
 {
     this.startForm = startForm;
     InitializeComponent();
     getLocalizedLabelsMessages();
     this.tablesList = tablesList;
     this.Icon = Properties.Resources.icooddb;
     createTablesTabsView(tablesList.Tables);
     updateSQLCreateTables();
     getDefaultValues();
 }