private void button_target_Click(object sender, EventArgs e) { GetLinkDbDlg dlg = new GetLinkDbDlg(); dlg.SearchPanel = this.SearchPanel; dlg.ServerUrl = this.ServerUrl; dlg.BiblioDbName = this.BiblioDbName; dlg.ItemDbName = this.ItemDbName; dlg.ShowDialog(this); if (dlg.DialogResult != DialogResult.OK) { return; } this.ServerUrl = dlg.ServerUrl; this.BiblioDbName = dlg.BiblioDbName; this.ItemDbName = dlg.ItemDbName; FillFromList(); }
private void button_target_Click(object sender, EventArgs e) { GetLinkDbDlg dlg = new GetLinkDbDlg(); dlg.SearchPanel = this.SearchPanel; dlg.ServerUrl = this.ServerUrl; dlg.BiblioDbName = this.BiblioDbName; dlg.ItemDbName = this.ItemDbName; dlg.ShowDialog(this); if (dlg.DialogResult != DialogResult.OK) return; this.ServerUrl = dlg.ServerUrl; this.BiblioDbName = dlg.BiblioDbName; this.ItemDbName = dlg.ItemDbName; FillFromList(); }