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 SkipVought 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: Rahulc
  • Order by date
  1. Rahulc

    Database Program Problem

    Apart from what "apatterno" has mentioned, I'd like to point out here that please take a look at the view class's definition. You'll notice that the constructor of a view class is "protected" and you can not create an object of that by using "new" operator. The view...
  2. Rahulc

    Checking disk usage

    Hi snuv: I couldn't follow the reason why you needed to check the proc address for the API in Visual C++. Please explain. Thanks in advance. Rahul
  3. Rahulc

    file i/o problem (not about vc++)

    airswit: The problem here is that you are not clearing the failed bit after the first failure with 3 flags. This needs to be reset manually for the stream in concern. After you do that, an existing file can be opened with just in &/or out mode. So here is the corrected code...
  4. Rahulc

    Threading for multi-client server

    I just went through this thread of discussion. It's simply amazing!
  5. Rahulc

    memory leakages

    Should you not be using CPaintDC in the OnPaint() handler?
  6. Rahulc

    trouble with mktime

    Hi: The solution to your problem is to change the line which reads file_tm.tm_year += (file_tm.tm_year < 70 ) ? 2000 : 1900; to the following: file_tm.tm_year += (file_tm.tm_year < 70 ) ? 100 : 0; Remember that time_t structure needs the year as: (current year minus 1900) Hope this helps...

Part and Inventory Search

Back
Top