Advertisement

Borland CONIO.h problem

Started by April 12, 2002 12:13 PM
4 comments, last by Andrew Nguyen 22 years, 5 months ago
My os is winXP and I''m using Borland C++ Builder 1.0 (Yes, 1.0) Pro. My code is: [suorce] //--------------------------------------------------------------------------- #include <vcl\condefs.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <conio.h> #include <iostream.h> #pragma hdrstop //--------------------------------------------------------------------------- USERES("Project1.res"); //--------------------------------------------------------------------------- int main(int argc, char **argv) { highvideo(); textbackground(6); textcolor(7); gotoxy(6,5); cout << "Hi"; cin.get(); return 0; } //--------------------------------------------------------------------------- The prob;em is that the screen mode will not change and the textcolor will not change. I suspect this is a WinNT/2k/XP problem. If you have any way to solve problem please reply!
---START GEEK CODE BLOCK---GCS/M/S dpu s:+ a---- C++ UL(+) P(++) L+(+) E--- W++ N+ o K w(--) !O !M !V PS- PE+Y+ PGP+ t 5 X-- R tv+ b+ DI+ D G e* h! r-- !x ---END GEEK CODE BLOCK---
Aren''t those DOS functions? And isn''t DOS supposedly dead in WinXP?

[ GDNet Start Here | GDNet Search Tool | GDNet FAQ | MS RTFM [MSDN] | SGI STL Docs | Google! | Asking Smart Questions ]
Thanks to Kylotan for the idea!
Advertisement
And on to my next question, are there any WinXP dos emulators, I cant find one.
---START GEEK CODE BLOCK---GCS/M/S dpu s:+ a---- C++ UL(+) P(++) L+(+) E--- W++ N+ o K w(--) !O !M !V PS- PE+Y+ PGP+ t 5 X-- R tv+ b+ DI+ D G e* h! r-- !x ---END GEEK CODE BLOCK---
I think Borland implemented those functions for Win32 consoles.

The computer was conceived as a tool to reduce complexity. Some people found this loss of complexity unacceptable, and developed UNIX to amend the situation.
--AnkhSVN - A Visual Studio .NET Addin for the Subversion version control system.[Project site] [IRC channel] [Blog]
Could be, but heres another strange thing, with Python, thee is a console conio implementation that actually shows color in the console!
---START GEEK CODE BLOCK---GCS/M/S dpu s:+ a---- C++ UL(+) P(++) L+(+) E--- W++ N+ o K w(--) !O !M !V PS- PE+Y+ PGP+ t 5 X-- R tv+ b+ DI+ D G e* h! r-- !x ---END GEEK CODE BLOCK---
And that is strange because...?



[edited by - Arild Fines on April 12, 2002 8:00:04 PM]
--AnkhSVN - A Visual Studio .NET Addin for the Subversion version control system.[Project site] [IRC channel] [Blog]

This topic is closed to new replies.

Advertisement