Hi!
Is there any way to display more than 80 characters across; and how many lines down is the maximum.
Using Screen 12; I can get 30 lines down but only 80 across. Is there any code in powerbasic which will allow me to get more characters across using a different font or routine etc.
Code :-
Cls
Screen 12
For y=1 to 30
Print using”Line : ## : ”;y
For x=1 to 70
Print mid$(str$(x),2,1);
Next
Next y
Thanks in Advance
BASit
------------------- www.compubyte.co.za
[This message has been edited by A.Basit A.Bulbulia (edited August 21, 2006).]
Is there any way to display more than 80 characters across; and how many lines down is the maximum.
Using Screen 12; I can get 30 lines down but only 80 across. Is there any code in powerbasic which will allow me to get more characters across using a different font or routine etc.
Code :-
Cls
Screen 12
For y=1 to 30
Print using”Line : ## : ”;y
For x=1 to 70
Print mid$(str$(x),2,1);
Next
Next y
Thanks in Advance
BASit
------------------- www.compubyte.co.za
[This message has been edited by A.Basit A.Bulbulia (edited August 21, 2006).]
Comment