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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by MrMongo

  1. MrMongo

    who can correct error for me?

    The solution for the gets() problem with the remaining LF or CR in buffer can be solved by using scanf("%s",variable) or by calling getchar() until it returns 0. You could wirte a small function that empites the buffer, containing somewhat like while ( getchac() ) ; perhaps you´ll...
  2. MrMongo

    Modem information in Windows Registry

    I am designing a C++ Class, which contains information about Modems (ComPort, Internal Card or Virtual) on a Windows system. I tried to read from the Registry, but after my method worked on Win9x it won´t work on Win2k. i queried HKEY_LOCAL_MACHINE\Enum\Root\Modem, numerated the subkeys (for...
  3. MrMongo

    piping everything displayed in the dos box to a file??

    Additionally, C:\> MyApp.exe >> log.txt will append to the file, while c:\> MayApp.exe > log.txt will overwrite the old one

Part and Inventory Search

Back
Top