Subj : Re: cputs does not work in graphics-modi ? To : borland.public.cpp.borlandcpp From : waking Date : Fri Sep 23 2005 02:16 am On Fri, 23 Sep 2005 02:01:09 +0200, "R.Wieser" wrote: >I've got the run-time files only (standard TC 2.0 package). [snip] >But that (currently) leaves one thing to wish for : locating the cursor on >lines 26 .... 30 in a (TC-supported) 12h video-mode (which it still refuses >to do). :-) If you were using TC++ 3.0, that should be no problem: #include int main() { int i; struct text_info ti; gettextinfo(&ti); clrscr(); textmode(C4350); window(10, 1, 80, 43); _wscroll = 0; for(i=1; i<= 43; ++i) { gotoxy(10, i); cprintf("This is line %2d", i); } getch(); textmode(ti.currmode); return 0; } This will also work with TC++ 1.01 which you still may be able to download for free from Borland's "Museum" web site. -- Wayne A. King (waking@idirect.com, Wayne_A_King@compuserve.com) .