I have in my form a TOpenPictureDialog
component to open the Images on a system, but instead of taking the full path of the image file it only takes the alias.
Ex
- How do I need: ' C: \ Users \ User-03 \ Pictures \ File.jpg
- How it is coming: ' Images \ LOGO CMR.Jpg '
I've tried to see all the options in Vcl.Dialogs.TOpenOptions and < and I did not find anything ... How can I do this? p>
procedure TfrmManutencaoParametros.opdParametrosSelectionChange(Sender: TObject);
begin
// Muda a imagem no Quadro de imagens
if opdParametros.FileName <> '' then
begin
inherited;
...
...
...
ImgLogo.Picture.LoadFromFile(opdParametros.FileName);
end;
end;