Saving graphics with WP5

  • If I create a file with a graphic (bmp or jpg) and save it with the code:

    Code
    SaveDialog.Execute;
         FFilename := SaveDialog.Filename;
         RichText1.SavetoFile(FFileName, false, 'RTF-alwaysembed');


    The file can be retrieved as saved.

    But if I use the same code on a retrieved file, and save it to a different file name, the graphic dusappears. If I keep the same name, graphic is retained.

    --Bill