public LogInController(Form loginWin) { this.parentLoginWindow = loginWin; dbInfosContoller = new ManageIOConnFileController(parentLoginWindow); dbci = dbInfosContoller.getTheConnInfos(); catchTheControls(); }
/// <summary> /// defines the process, when the DB connection window is needed /// </summary> public void startManageConnDetails() { ajdustDBconn = new FormAdjustConnectionWindow(dbci, parentLoginWindow); if (ajdustDBconn.ShowDialog() == DialogResult.OK) { dbci = dbInfosContoller.getTheConnInfos(); } }