Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT myTable
Copy To c:\temp Fields pic && Or whatever your fieldname is
inComing=Fopen("c:\temp.fpt") && Open the memo field it created
p_result=Fcreate("c:\myPicture.bmp")
findEnd = Fseek(inComing, 0, 2) && Find the end
findTop = Fseek(inComing, 0) && Find the top
lcString = Fread(inComing, findEnd) && Copy the whole thing to a string
lcString2=Right(lcString,Len(lcString)-599) && Offset some bytes
=Fwrite(p_result,lcString2) && Write the results to a file
=Fclose(inComing) && Close
=Fclose(p_result) && Close