CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: hjazz

Search: Search took 0.96 seconds.

  1. Replies
    3
    Views
    793

    Incorrect result in Bitwise operations

    Hi all,

    I'm doing a bitwise operations on 2 bytes in a buffer, then storing the result in a variable. However, I sometimes get a non-zero value for the variable even though I'm expecting a zero...
  2. Re: Using fstream to open a file that is created only during runtime

    Thanks for spotting the mistake. I replaced "donefile" with "tfile", and still got the same output.

    I've also added a


    if (fin.rdstate() & ifstream::failbit) != 0)
    printf("failbit...
  3. Using fstream to open a file that is created only during runtime

    Hi,

    I'm using Visual C++ 6.0 and I'm trying to use fstream to open and read a file that is created only during runtime. This file is written by another function running on another thread, and my...
  4. Re: Detecting memory leaks using _CrtDumpMemoryLeaks

    Thanks. I tried that, but now I have a different error:


    error LNK2001: unresolved external symbol "int __cdecl _CrtDumpMemoryLeaks(void)
    error LNK2001: unresolved external symbol "__cdecl...
  5. Detecting memory leaks using _CrtDumpMemoryLeaks

    Hi,

    This is my first time using the CRT library for detecting memory leaks, and I'm using Visual C++ 2003. As mentioned in this website (http://msdn.microsoft.com/en-us/library/x98tx3cf.aspx), I...
  6. Replies
    1
    Views
    917

    Identifying threads in VS .NET 2003

    Hi all,

    I'm converting a Linux program to a Windows program using Visual Studio .NET 2003. The code was written using pthread.

    I have a "First-chance exception at 0x100084c8 in project.exe:...
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured