Esempio n. 1
0
        private void loadData(Member mem)
        {
            mem.LoadIntoForm(this);
            MemberIDText.Text = MemberID.ToString();
            FNameText.Text = FirstName;
            LNameText.Text = LastName;
            SNameText.Text = SchoolName;
            StateCombobox.SelectedIndex = StateCombobox.Items.IndexOf(State);
            EmailText.Text = Email;
            YearText.Text = YearJoined.ToString();
            GradeComboBox.SelectedIndex = Grade - 9;
            ActiceChckBox.Checked = active;
            AmountOwedText.Text = AmountOwed.ToString("C");



        }