rtalmeida Posted May 19, 2017 Posted May 19, 2017 Is the command below possible? Or how can I download the image.UniSession.SendFile (UniImage1.CurrImgUrl); Quote
Sherzod Posted May 19, 2017 Posted May 19, 2017 Hi, Try: procedure TMainForm.UniButton1Click(Sender: TObject); var sfname: string; begin sfname := UniServerModule.StartPath + UniImage1.CurrImgUrl; UniSession.SendFile(sfname, 'NewFileName' + ExtractFileExt(sfname)); end; Best regards, Quote
rtalmeida Posted May 19, 2017 Author Posted May 19, 2017 It worked perfectly, thank you very much. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.