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

Search results for query: *

  • Users: JIA3EP
  • Order by date
  1. JIA3EP

    Console mode window resizing

    I think this algorithm should help (width and height are wanted sizes): CONSOLE_SCREEN_BUFFER_INFO csbi; COORD coordScreen; HANDLE Screen; BOOL bSuccess; SMALL_RECT srWindowRect; Screen = GetStdHandle(STD_OUTPUT_HANDLE); ASSERT((Screen != INVALID_HANDLE_VALUE)); bSuccess =...
  2. JIA3EP

    detecting a machine on the network, and checking if a file exists

    I think fopen("\\\\machineName\\someShares\\...", ...) should work fine.
  3. JIA3EP

    How to get RAS connection speed under WinNT?

    Hi. You can calculate it using RasGetConnectionStatistics.
  4. JIA3EP

    Warning !

    Hi. Mostly often this warning appears when initial value of the some dialog is zero, but must be, for instance, from 1 to 100. Sure, maybe other variations of this situation.
  5. JIA3EP

    how can we write help in msdn style?

    Hi. Just use MS HTML Help Workshop to create chm files. After that you can use HTML Help API.
  6. JIA3EP

    IExplorer BIG problem

    You can use IWebBrowser interfaces to manipulate IE. There are a lot of information how to use it in MSDN.

Part and Inventory Search

Back
Top