Exemple #1
0
        private void btnNewCustomer_Click(object sender, EventArgs e)
        {
            CadastroCliente editor = new CadastroCliente();

            Close();
            editor.ShowDialog();
        }
        private void button2_Click(object sender, EventArgs e)
        {
            CadastroCliente cadastroCliente = new CadastroCliente();

            if (txtNome.Text == "")
            {
                MessageBox.Show("Informar o nome.");
                return;
            }
            if (txtTelefone.Text == "")
            {
                MessageBox.Show("Informar um telefone para contato.");
                return;
            }
            if (txtCEP.Text == "")
            {
                MessageBox.Show("Informar o CEP para obter o endereço.");
                return;
            }
            if (cboPais.SelectedIndex == -1)
            {
                MessageBox.Show("Informar o país.");
                return;
            }

            Cliente cli = new Cliente();

            //cli.CNH = editor.txtDrvLicNbr.Text;
            cli.CNH          = txtCNH.Text;
            cli.Nome         = txtNome.Text;
            cli.Endereco     = txtEndereco.Text;
            cli.Cidade       = txtCidade.Text;
            cli.Estado       = txtEstado.Text;
            cli.CodigoPostal = txtCEP.Text;
            cli.Pais         = cboPais.Text;
            cli.Telefone     = txtTelefone.Text;
            OperacaoBanco operacao = new OperacaoBanco();
            bool          inserir  = operacao.Insert("insert into tb_cliente (Nome,Endereco,Cidade,Estado,CEP,CNH,Pais,Telefone) Values ('" + cli.Nome + "','" + cli.Endereco + "','" + cli.Cidade + "','" + cli.Estado + "','" + cli.CodigoPostal + "','" + cli.CNH + "','" + cli.Pais + "','" + cli.Telefone + "')");

            if (inserir)
            {
                MessageBox.Show("Sucesso!");
            }
            Clientes clientes = new Clientes();

            clientes.ShowDialog();
            Close();
        }