Example #1
0
        private void clientOpenNewContributionButton_Click(object sender, EventArgs e)
        {
            AddNewContributionForm avf = new AddNewContributionForm(this.of, this, clientID);

            avf.Show();
            clientShowContributionOperationsButton.Visible = true;
        }
Example #2
0
        private void operatorOpenContributionButton_Click(object sender, EventArgs e)
        {
            AddNewContributionForm avf = new AddNewContributionForm(this, getSelectedPotentialClientID());

            avf.Show();
        }