private void Anotacao(long tb026Id)
 {
     try
     {
         var anotacao = new AnotacoesNegocios().AnotacaoSelect(tb026Id);
         lblTb026Id.Text           = anotacao.Tb026Id.ToString();
         lblTb011NomeExibicao.Text = anotacao.Tb011NomeExibicao;
         lblTb026Data.Text         = anotacao.Tb026Data.ToString("dd//MM/yyyy HH:mm");
         txtTb026Anotacao.Text     = anotacao.Tb026Anotacao.TrimEnd();
         txtTb026Anotacao.ReadOnly = true;
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message, @"Erro ao executar operação", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }
        private void mnuAnotacoesSalvar_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(txtTb026Anotacao.Text.Trim()))
            {
                MessageBox.Show(MensagensDoSistema._0001.Replace("$Campo", "Anotação"), @"Erro",
                                MessageBoxButtons.OK, MessageBoxIcon.Error);
                txtTb026Anotacao.Focus();
                return;
            }

            if (!string.IsNullOrEmpty(lblTb026Id.Text.Trim()))
            {
                return;
            }
            var anotacao = new AnotacoesController
            {
                Tb012Id          = Tb012Id,
                Tb011Id          = ParametrosInterface.objUsuarioLogado.TB011_Id,
                Tb026Data        = DateTime.Now,
                Tb026Cod         = "00000",
                TB026_Negociacao = 0,
                Tb026Anotacao    = txtTb026Anotacao.Text
            };

            var retorno = new AnotacoesNegocios().Anotacaoinsert(anotacao);

            if (retorno <= 0)
            {
                return;
            }
            txtTb026Anotacao.ReadOnly = true;
            Anotacao(retorno);
            PreencherGrid();
            MessageBox.Show(MensagensDoSistema._0018, @"Aviso", MessageBoxButtons.OK,
                            MessageBoxIcon.Information);
        }