AdvFileNameEdit vs FileSaveDialog

When using the FileSaveDialog, I have gotten used to putting the save under a test to see if the dialog was executed:


if FileSaveDialog.Execute then
begin
...
end;

I do not see a similar way of doing this with the AdvFileNameEdit component.  Does such a method exist?

Sorry, such method does not exist. The dialog is shown from the embedded button in the edit control, not sure how this relates to the filesaving you want to do. Internally, handling file if (dialog.Execute) then .. is already done.