Exemplo n.º 1
0
        private void toolStripButton_Entrega_Click(object sender, EventArgs e)
        {
            EntregaVeiculo novo = new EntregaVeiculo(CodVeiculo, CodigoReserva);

            if (novo.ShowDialog() == DialogResult.OK)
            {
                MessageBox.Show("Devolução Realizada com sucesso!");
                this.Close();
            }
        }
Exemplo n.º 2
0
        private void toolStripButton_Entrega_Click(object sender, EventArgs e)
        {
            EntregaVeiculo novo = new EntregaVeiculo();

            novo.Show();
        }
Exemplo n.º 3
0
        private void toolStripButton_Entrega_Click(object sender, EventArgs e)
        {
            EntregaVeiculo novo = new EntregaVeiculo(CodVeiculo, CodigoReserva, this);

            novo.Show();
        }