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.
Question
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 to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.