How can one import in a PDF file like a RTF file?
Posted: Thu Aug 16, 2012 5:30 pm
Is there a way to bring in a PDF or DOC file the same way as one can for a RTF or TXT file as per the example below
Code: Select all
case ".rtf"
put URL ("file:" & tFile) into tWorkingDocumentContents
set the rtftext of fld "WorkingDocumentField" to tWorkingDocumentContents
break
case ".txt"
put URL ("file:" & tFile) into field "WorkingDocumentField"
break