コード例 #1
0
        private void button1_Click(object sender, EventArgs e)
        {
            if(textBox3.Text.Equals("") || textBox4.Text.Equals("")){
                MessageBox.Show("Primero seleccione un cliente y un agente para este casting.\n"
                                +"Por favor, revise en intentelo de nuevo", "No se puede procesar su solicitud",
                                MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            else
            {
                this.Hide();
                Cliente_Agente c = new Cliente_Agente(Convert.ToInt32(textBox3.Text), Convert.ToInt32(textBox4.Text));
                c.Show();

            }
        }
コード例 #2
0
 public DetallesContactoCl(int Id, Cliente_Agente c)
 {
     InitializeComponent();
     this.Id = Id;
     this.c = c;
 }
コード例 #3
0
 public DetallesContactoCl(int Id, Cliente_Agente c)
 {
     InitializeComponent();
     this.Id = Id;
     this.c  = c;
 }