CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Sep 1999
    Location
    Salisburyl UK
    Posts
    324

    moving the cursor in a console app

    Hi cup..
    Im using VC6 to write a Win32 app for the PC running on Win2000. Does this give a better clue ??

    cheers Philip..

  2. #2
    Join Date
    Apr 1999
    Posts
    27,449
    Investigate the Win32 Console API functions. Screen handling in Win32 console programming is done through the Console API.

    The function that you want is SetConsoleCursorPosition.

    Regards,

    Paul McKenzie

  3. #3
    Join Date
    Jun 2002
    Location
    Letchworth, UK
    Posts
    1,020
    For those of you who are confused, the head of this thread is in http://www.codeguru.com/forum/showth...hreadid=210969.

    As Paul said, look up http://msdn.microsoft.com/library/de...plications.asp
    Succinct is verbose for terse

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