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

Search:

Type: Posts; User: gowrishwar

Search: Search took 0.04 seconds.

  1. Replies
    9
    Views
    18,430

    Re: memcpy error: Access violation reading

    I have tried memmove(). Even then it is throwing the same exception.


    Output:
    First-chance exception at 0x1026f448 (msvcr90d.dll) in Camera.exe: 0xC0000005: Access violation reading location...
  2. Replies
    9
    Views
    18,430

    Re: memcpy error: Access violation reading

    Thanks for the reply Skizmo

    Both pointers are valid, the data in bf_p->CirHandle.pBufData is 3677536032, which is unsigned int and I am Type Casting it to unsigned char.

    When I debug, the...
  3. Replies
    9
    Views
    18,430

    memcpy error: Access violation reading

    Hi all,

    I am working on a camera to collect data. In the process one of the functions is throwing errors while copying the data from the buffer on board to local system buffer.

    The message...
  4. Replies
    1
    Views
    5,406

    unable to load excel

    Hello all,

    I am working on a project and want to load excel libraries into C++ so that I can read/write data into cells.



    #include <iostream>
    #include <cmath>

    // Office XP Objects (2003)
  5. Re: The NULL device is missing from your system

    Thanks for your reply and I have found that it was a problem with my windows OS. I have reinstalled whole OS and then I am able to see NULL device in device manager.

    Looks like now I am stuck with...
  6. Re: ERROR: The NULL device is missing from your system

    Looks like now I am stuck with an another problem.

    When I try to run it in Debug mode I am getting an error message saying "Unhandled exception at 0x004013be in EDxL1.exe: 0xC0000005: Access...
  7. Re: ERROR: The NULL device is missing from your system

    I guess, I have found the solution. The null device is missing from Device Manager. I had to re-install the windows. Now I can see it.

    Thanks for reply.
  8. ERROR: The NULL device is missing from your system

    Hi,

    I am learning DirectX using a tutorial and when I try to compile a code which has

    #include <d3dx9.h>

    I got the error as though I have Microsoft DirectX SDK (March 2009)

    error PRJ0015...
  9. The NULL device is missing from your system

    Hi,

    I am learning DirectX using a tutorial and when I try to compile a code which has

    #include <d3dx9.h>

    I got the error as though I have Microsoft DirectX SDK (March 2009)

    error PRJ0015...
  10. Trying to dynamically load a class at rutime from DLL

    Hi,

    I am new to coding with macros. I have this code and I am trying to run this by dynamically loading a class from a DLL.




    #pragma once
    #ifndef DLLEXPORTS_H
    #define DLLEXPORTS_H
  11. Trying to dynamically load a class at rutime from DLL

    Hi,

    I am new to coding with macros. I have this code and I am trying to run this by dynamically loading a class from a DLL.



    #pragma once
    #ifndef DLLEXPORTS_H
    #define DLLEXPORTS_H
    #ifdef...
Results 1 to 11 of 11





Click Here to Expand Forum to Full Width

Featured