good point i forgot about that
dim Characters(16) as byte
open to read "myfile.txt",1
read string 1,name$
for i=0 to 15
read byte 1,Charaters(i)
next i
close file 1
for i=0 to 15
myname$=myname$+chr$(Characters(i))
next i
text 0,0,name$
text 0,20,myname$
wait key
undim Characters(0)
now it'll work
[edit-]
just use the chr$/asc commands for it to work... it'll read anything and convert to standard text.
although in db standard the read string command would only read each line or 256 characters (whichever came first) this limit might've been altered for dbpro.