B
bronco
Guest
This would be how I implement it. serverside (copyfile.p): define output parameter mFile as memptr no-undo. copy-lob file " " to mFile. finally: set-size(mFile) = 0. end. clientside: def var mFileCopy as memptr no-undo. run copyfile.p on server (output mFileCopy). coply-lob mFileCopy to file " ". set-size(mFileCopy) = 0. hth
Continue reading...
Continue reading...