procedure TPrateleiras.FlatSpeedButton6Click(Sender: TObject);
begin
if FlatSpeedButton2.Enabled= false then
begin
if (Dbedit3.Modified = true) then
principal.Timer1.Enabled:=true;
principal.Timer1.Interval:=100;
Close;
end else
begin
if FlatSpeedButton2.Enabled= true then
if MessageDlg('Tem registo aberto,sair na mesma ? ',mtconfirmation,mboKcancel,0)=ID_OK then
begin
if (Dbedit3.Modified = true) then
principal.Timer1.Enabled:=true;
principal.Timer1.Interval:=100;
Close;
end;
end;
end;
Utilizo para executar uma 2ª funcão de calculo...se criar novo registo ou editar o registo e haver alteração no dbedit3 tudo perfeito mas quando apago um registo da tabela não considera modificação ???? como posso contornar isto já usei assim if (Data.table7.Modified = true) then e tb não funciona.
Pergunta
António44
procedure TPrateleiras.FlatSpeedButton6Click(Sender: TObject); begin if FlatSpeedButton2.Enabled= false then begin if (Dbedit3.Modified = true) then principal.Timer1.Enabled:=true; principal.Timer1.Interval:=100; Close; end else begin if FlatSpeedButton2.Enabled= true then if MessageDlg('Tem registo aberto,sair na mesma ? ',mtconfirmation,mboKcancel,0)=ID_OK then begin if (Dbedit3.Modified = true) then principal.Timer1.Enabled:=true; principal.Timer1.Interval:=100; Close; end; end; end;
Utilizo para executar uma 2ª funcão de calculo...se criar novo registo ou editar o registo e haver alteração no dbedit3 tudo perfeito mas quando apago um registo da tabela não considera modificação ???? como posso contornar isto já usei assim if (Data.table7.Modified = true) then e tb não funciona.
Abraços
Link para o comentário
Compartilhar em outros sites
1 resposta a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.