MatthewJames
24th July 2002, 18:12
I am trying to print statistics reports to excel but I can only print 215 characters I can set the page length to 999 but is there a way of doing the same for width espically for devices that have no width like rewrite files?

we are using B4c4

Thanks in advance

günther
26th July 2002, 12:35
In such situations, I think you have do use a litte redesign. remoge the report from the session, do the formatting and output in your session script e.g. like:

string buf(1024)
long fd,i

fd = seq.open("file.txt", "w")
buf = ""
for i=1 to 500
if i > 1 then
buf = buf & "|"
endif
buf = buf & sprintf$("%d",i)
endfor
seq.puts(buf, fd)
seq.close(fd)