Beispiel #1
0
        private void linkLblClientInfo_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            FmClient fmClient = new FmClient(this);

            if (fmClient.ShowDialog() == DialogResult.OK)
            {
                ctlClient.SelectedItem = null;
                ctlClient.SelectedItem = fmClient.SelectedClient;
            }
        }
Beispiel #2
0
 public FmReciept(FmClient fmClient) : this(fmClient.Employee)
 {
     ctlClient.SelectedItem = fmClient.SelectedClient;
 }
Beispiel #3
0
        private void btnClient_Click(object sender, EventArgs e)
        {
            FmClient fmClient = new FmClient(employee);

            fmClient.ShowDialog();
        }