I would like to know how to pass a numeric variable to text graphics.
As in this example below... which will not work
For i=1 to 10
Text 30, i*20, i
Next i
This is vital as I want to use graphics text, not normal text with a black background.
Thanks.
Fixed with a reminder of the STR%() command by Francois himself.
Text 100,100,str$(number)