Topic: How toshow a blank textrow on screen
Jeff,
My problem is a matter using outtext of AppGraphics:
Normally a blank row with text is not really useful to show on screen , but in my edit sheet I want to insert blank text rows. The purpose is that users can fill it with own data.
If I define that row as:
row(cel%r+scroll)(4:maxcol)= ' '
or
! do i = 4, maxcol; row(cel%r+scroll)(i:i) = char(32); end do
Outtext will show nothing; I did solve is preliminary using dots in a not so smart way as follows:
row(cel%r+scroll)(4:maxcol)= ' . .'
Write(row(cel%r+scroll)(:3),'(I3)') cel%r+scroll !... the inserted row
The next rows on screen have to be moved by one position down:
do i=cel%r,maxrow ! Re-writing changed rows
CALL settextxy(1,charh*(i-1)) !put row in textwindow starting at column 1
call Outtext(row(i+scroll)(:maxcol))
end do
Is there an other way to avoid that dots?
I am working to make my edit sheet more "monkey proof" prior to publish it on my site.
This is only one point which I want to correct.
Regards, Klaus