![]() | Products |
| Home » Technical Support » ElevateDB Technical Support » Incident Reports » Incident Reports Addressed for Version 2.18 » View Incident Report |
| Reported By: Krisztian Kepes Reported On: 7/25/2014 For: Version 2.17 Build 1 |
procedure Eppen_Halmozas_Zajlik_E;
var
Q: TEDBQuery;
begin
Q := EDB_MakeQuery(nil, 'scroll');
try
Add_Halmozo_Rekord_Es_Megnyitas(Q); // PREPARE A QUERY AND SELECT A SPEC. ROW
with Q do
begin
try
try
Edit; // TRY TO EDIT THE SELECTED ROW
except
raise Exception.Create
('A készlet programban jelenleg éppen halmozás folyik, így a bizonylat rögzítése/módosítása nem lehetséges!');
end;
finally
{
try
if Active then
Cancel;
except
end;
}
{
try
if Active then
UnlockAllRecords;
except
end;
}
try
Close;
// if Prepared then
// UnPrepare;
except
end;
end;
end;
finally
SafeFree(Q); // FREE AND NIL WITH TRY EXCEPT
end;
end;This web page was last updated on Wednesday, April 8, 2026 at 04:38 AM | Privacy Policy © 2026 Elevate Software, Inc. All Rights Reserved Questions or comments ? |

