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

Search:

Type: Posts; User: jignatiu

Search: Search took 0.03 seconds.

  1. Re: Access violation when trying to create instance of unmanaged class

    I simply commented out the line below:

    CWaitCursor wc;

    and it worked.

    I believe the reason is that CWaitCursor implicitly requires the calling application to be a MFC application with a...
  2. Re: Access violation when trying to create instance of unmanaged class

    Enabling unmanaged code debugging on the C# test application, I found the exception was being raised when a wait cursor was being initialised in the unmanaged dll:

    CWaitCursor wc;

    Can anyone...
  3. Access violation when trying to create instance of unmanaged class

    Hi,

    I have created a C++/CLI project which wraps an umanaged C++ class. I have declared a pointer to the unmanaged class in the class definition.

    When I try to create an instance of the...
  4. Replies
    6
    Views
    12,478

    Re: Modal dialog unexpectedly becomes non-modal

    Thanks VladimirF. You were correct in suggesting that I wasn't using the correct parent when creating my window. I was doing this before:

    Create(CIMFlashBox::IDD);

    Now I do this:
    ...
  5. Replies
    5
    Views
    1,431

    Unable to display a dialog in a UI thread

    I am having a strange problem trying to display a dialog from a UI thread. The dialog simply fails to display.

    I have a function DisplayFlashBox(), which creates the UI thread:

    CUIThread*...
  6. Replies
    6
    Views
    12,478

    Modal dialog unexpectedly becomes non-modal

    I have a modal dialog. When I click on a button in the dialog to perform an operation, a non-modal dialog is displayed showing a progress message.

    The operation is not successful. It calls...
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured