If anyone has figured out how to change text fonts in the middle of a print line, I would appreciate some help. PrintLineFeed(0) is the only option I've found and I cannot get it to work.
Maggie-
If you're talking about printing, the following might help (taken from the online help of OI):
/* The following example shows how to use the TEXTRTF message to bold text in the middle of a paragraph. */
declare function Set_Printer
stat=Set_Printer("INIT") ;* Start printing
stat=Set_Printer("TEXTRTF", "This is a {\b simple} RTF test.")
stat=Set_Printer("TERM") ;* End printing
-Stefano
Depends on your document format.
HTML is probably the easiest for short / one page documents.
You can imbed escape sequences for your printer but it can get messy.
You can write postscript documents which are fairly easy if your format is simple enough.
Perhaps design a prototype in Word and publish a link to it here. Then we can see what you are trying to achieve.
Thanks Stefano, This is the recommended method for changing fonts in the middle of a sentence. The PrintLineFeed functions are part of the Pre-OIPI printing engine. It's recommended that you use OIPI set_printer and get_printer functions.