Page 1 of 1

Locate text per pixel

Posted: Sun Dec 20, 2009 2:01 pm
by Davdof
Hello everybody, greetings from the Netherlands,

I've been following this forum quite some time now, and I must say, the wisdom of others is sometimes truely helpful.

I lately programmed a prog in QB45 that can solve japanese puzzles (Example).
For this program, I need to have text positioned pixel by pixel (so I can show the digits of the puzzle next to the grid, see example). But the only way to locate text seems to be with 'LOCATE' - and then I am bound to the fixed 20-something lines.
Does anybody here know how to locate text per pixel? (and how to make the text smaller or larger?)

Thanks in advance,
David

Posted: Wed Dec 23, 2009 11:29 pm
by BurgerBytes
I seriously doubt you can fit all of that into one screen, but you will need to create small numbers using graphics. Try DRAW and SCREEN 12. The smallest number block would be 2 by 4 high.

SCREEN 12 is 640 by 480 high.

Ted

Posted: Thu Jan 07, 2010 2:04 pm
by Davdof
OK, thanks. No other way than the hard way apparently :(