private void FrmCadTreino_FormClosing(object sender, FormClosingEventArgs e)
        {
            if (verificaClose == 0)
            {
                try
                {
                    FichaTreino fichas = new FichaTreino();
                    int         id;
                    id = fichas.getIdPlanoTreino();
                    if (id > 0)
                    {
                        PlanoTreino plano = new PlanoTreino();
                        plano.Id = Convert.ToInt16(id);
                        plano.updateDelete();

                        FichaTreino ficha = new FichaTreino();
                        ficha.IdPlanoTreino = Convert.ToInt16(id);
                        ficha.updateDelete();
                    }
                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.Message);
                }
            }

            //this.Close();
        }
        private void btCancelar_Click(object sender, EventArgs e)
        {
            try
            {
                FichaTreino fichas = new FichaTreino();
                int         id;
                id = fichas.getIdPlanoTreino();

                if (id > 0)
                {
                    PlanoTreino plano = new PlanoTreino();
                    plano.Id = Convert.ToInt16(id);
                    plano.updateDelete();

                    FichaTreino ficha = new FichaTreino();
                    ficha.IdPlanoTreino = Convert.ToInt16(id);
                    ficha.updateDelete();
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }

            this.Close();
        }
        private void btDeletar_Click(object sender, EventArgs e)
        {
            try
            {
                DialogResult resposta = MessageBox.Show("Excluir o Treino '" + dataGridViewTreinos.CurrentRow.Cells[0].Value.ToString() + "' ?", "Atenção", MessageBoxButtons.YesNo, MessageBoxIcon.Question);

                if (resposta == DialogResult.Yes)
                {
                    try
                    {
                        PlanoTreino plano = new PlanoTreino();
                        plano.Id = Convert.ToInt16(dataGridViewTreinos.CurrentRow.Cells[0].Value);
                        plano.updateDelete();

                        //Geracao de log
                        Logs   logs = new Logs();
                        string linha;

                        using (StreamReader reader = new StreamReader("user.txt"))
                        {
                            linha = reader.ReadLine();
                        }

                        logs.IdUsuario = Convert.ToInt16(linha.ToString());
                        logs.IdAcao    = 25;
                        logs.Data      = DateTime.Today.ToString("dd/MM/yyyy");
                        logs.Hora      = DateTime.Now.ToString("HH:mm");
                        logs.insert();

                        FrmTabTreinos_Activated(sender, e);
                    }
                    catch (Exception ex)
                    {
                        MessageBox.Show(ex.Message);
                    }
                }
            }
            catch
            {
                MessageBox.Show("Não há Treinos cadastrados.", "Alerta", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
        }