Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

changing screen size

Status
Not open for further replies.

kotharikailash

Programmer
Oct 13, 2009
11
IN
Hi,
Is there a way to change screen size to 120 columns ( more than 80) inside a clipper app?

Thanks
 
By using the
Code:
MODE CON COLS=x LINES=y
command before starting your application, or using the
Code:
SETMODE(y,x)
function from your app, and using the MAXROW/MAXCOL functions where appropriate.
 
I have already tried this. When I give mode con cols=120 from a command prompt it does increases the window size. But within the app, it comes back to normal 25x80. setmode(25,120) or 24x120 also does not work. Do I need to do any setting for video driver etc.

Thanks

 
hit ctrl-enter on the dos prompt

Ali Koumaiha
TeknoSoft Inc.
Michigan
 
it doesnt work. maxcol() gives 79 only whichever way I try. I think clipper can not address more then 80 cols. it does work for 40 cols though. :(
Thanks for suggestions.



 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top