Hello,
i have an Action which handles the Saving for me.
This Code is in my Saving algorithm:
if FileExists(FilePath) then begin
if CustomMessage('', Get_TxInLng(4263), cmQuestion) <> mrYes then begin
Cursor:= crDefault;
Exit;
end;
end;
which is checking if the File Exists and then asks if it should be overriden.
Now i have an OpenProject Action too. But that action checks if the current project is saved, if that is not the Case then i call this:
can i somehow check the result of the save dialog ?
i need to check if the Save Dialog was canceled.
im fairly new to Actions / ActionList, so any hints would be appreciated.
Thanks !