private void editAccount() { Console.WriteLine("Selected (Editing) Indices: {0}", accountList.SelectedIndices[0]); if (accountList.SelectedIndices.Count.Equals(0)) { return; } ListViewItem selectedItem = accountList.SelectedItems[0]; int accID = Convert.ToInt32(selectedItem.Text); AccountInformation selectedAccount; using (LeafSecurityEntities db = new LeafSecurityEntities()) { selectedAccount = (from acc in db.AccountInformations where acc.AccountID.Equals(accID) select acc).FirstOrDefault(); } AccountForm accForm = new AccountForm(selectedAccount); accForm.Show(); }
private void DashBoardForm_Load(object sender, EventArgs e) { populateAccountList(); accountForm = new AccountForm(); }
// Helper Functions private void OpenAddAccountForm() { AccountForm addAccountForm = new AccountForm(); addAccountForm.ShowDialog(this); }