CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Guest

    Visual C++ 4.0 and CONIO.H

    How can I get MS Visual C++ 4.0 to support clrscr() and gotoxy() in conio.h? The header file I have does not include these functions. Does anyone have a header that will work with it? I tried a Borland C++ 4.5 file but it just causes errors.

    [email protected]


  2. #2
    Guest

    Re: Visual C++ 4.0 and CONIO.H

    You can't use a Borland header for it. If you try to use conio.h it probably won't work because if your application is configured as a Windows app, DOS graphics functions like that will not be included. You probably have to configure your application as a console app.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured