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

Search:

Type: Posts; User: kannadaraj

Search: Search took 0.02 seconds.

  1. Re: Unhandled exception: Access Violation 0xC00000005

    Hi Bornish,

    I found out that one of the pointers was pointing to NULL. So does it give me enought lead to solve the problem.

    Does it only mean that somehow due to corruption the pointer is made...
  2. Re: Unhandled exception: Access Violation 0xC00000005

    Hi all,

    I found that I get this execption now in a different place of the code.


    int get_mem2Dshort(short ***array2D, int rows, int columns)
    {
    int i;

    if((*array2D =...
  3. Re: Unhandled exception: Access Violation 0xC00000005

    Dear Bornish,

    So what you are trying to imply is that in my code there has been a bad pointer or reference which might have been
    1. Not iniatilized properly
    2. Deallocated
    3. Corrupted.

    How...
  4. Re: Unhandled exception: Access Violation 0xC00000005

    The exception occurs when the code executes the else part.

    ie.
    else
    {
    img->auto_crop_right=0;
    }


    regards
  5. Re: Unhandled exception: Access Violation 0xC00000005

    Hi all,

    This is the structure

    ImageParameters images, *img = &images;

    The auto_crop is somewhere in the bottom. Sorry this is a huge structure.

    //! ImageParameters
    typedef struct
  6. Unhandled exception: Access Violation 0xC00000005

    Hi all,
    I am getting this exception when i run a project in Visual c++ 6.0/

    Unhandled exception: Access Violation 0xC00000005

    The place of the code where this run time exception happens is
    ...
  7. Re: How to link 2 projects in Visual C++ 6.0

    Hi,

    I am not allowed to do that. I have to just press on run button just once. I will however give you an other alternative.
    This is equivalent to having three projects in a work space and...
  8. How to link 2 projects in Visual C++ 6.0

    Hi all,

    I am new to the Visual C++ environment 6.0. I have created a workspace and have included two projects in them. I want to just click on run button once and i want the project to execute one...
Results 1 to 8 of 8





Click Here to Expand Forum to Full Width

Featured