On Thu, 26 Oct 2000 14:00:10 +0200, you wrote:


>MSX Office?? Never heard of it :-(  

Probably Home Office by Philips. If I remember it wll enough, it's
just a question of filtering out some control codes. Write a simple
Basic program for it: 

10 maxfiles=2
15 open "infile" for input as#1: open "outfile" for output as#2
20 if eof(1) then close: end
30 line input #1,a$: if a$="" then 20
40 for t=1 to len(a$): a=asc(mid$(a$,t,1))
50 if a<32 or a=127 then 20 else b$=b$+chr$(a)
60 next
70 print #1,b$: b$="": goto 20

Of course if you want to preserve fat, italic or underlined print
styles, this will not work. 

Pierre


****
Problems? contact [EMAIL PROTECTED] See also http://www.faq.msxnet.org/
****

Reply via email to