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

Search:

Type: Posts; User: geoyar

Search: Search took 0.05 seconds.

  1. Re: Help with impletementing dijkstra's Algorithm

    If it is not some learning assignment, use boost::graph library, namely boost::adjacent_list.
    Set the number of vertises, set edges with properties (the lib has functions to do it) , and use...
  2. Replies
    4
    Views
    9,641

    Moving MFC CDialog

    Hi,

    My question is: what windows messages are sent to dialogs child controls when the user moves the dialog windowover the screen?

    I checked WM_MOVING, WN_MOVE, WM_SIZE handlers in child...
  3. Re: [RESOLVED] Problem with adding DLL/lib file into VC++ Project

    Hi,

    For me it seems that the problem is not with #include and dlls and libs; it is with connections. E.g. if you scan the external devices, your functions are sending requests to external devices...
  4. Replies
    15
    Views
    1,834

    Re: Working with multiple Dialogs

    In my MFC dialog-based app:
    in dialog1 control handler:
    CDialog1::OnBnClicked()
    {
    ........
    CMainDlg* mainDlgPtt = (CMainDLg*)GetOwner();
    Call any main dlg function, get controls, etc.
    ...
  5. Replies
    22
    Views
    11,252

    Re: Performance of Managed vs Unmanaged code

    There was an artificial neuralsystem app in C#.
    I have ported it to unmanaged (native) C++.
    It ran three times faster, in Release, unoptimized..
    Why?

    First, managed code uses intermediate...
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured