Retrieving image properties from an image memo file item and printing it from an image control

posted on 2009-09-16 09:31:07+08:00 by 7895734
Received this code snippet from Stefan Bentvelsen in a WinDev forum posting
  1. you can extract the original file name as follows:
  2.  
  3. sHlp=HInfoMemo(MyFile,element)
  4. lsFilename=ExtractString(sHlp,2)
  5.  
  6. But I use the following code to print an image direct from a binary memo:
  7.  
  8. sHlp is string
  9.  
  10. sHlp=HInfoMemo(MyFile,element) // where element is the memofield
  11. IF ExtractString(sHlp,1)="IMG" THEN
  12. ...iPrintImage(MyFile.element,0,iYPos(),iPageWidth(),iPageHeight(),0)
  13. END

All Code Snippets

Hot Code Snippets

New Code Snippets