It generated only an empty file of 0 bytes.
Someone an idea of what I am doing wrong.
- Code: Select all Expand view RUN
Static Function LoadJpg(oPicture,cId)
cId := Trim(cId) + ".JPG"
oPicture:LoadFromClipboard()
oPicture:Refresh()
Return Nil
Static Function SaveJpg(oPicture,cId)
cId := Trim(cId)
oPicture:SaveImage(cId,2,25)
Return Nil
Thanks
Willy