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

Search:

Type: Posts; User: VictorN

Page 1 of 5 1 2 3 4

Search: Search took 0.29 seconds.

  1. Replies
    2
    Views
    79

    Re: Compatibility of MFC-based Automation?

    It might work with "higher versions, such as Word 2003" but for sure not with "Word 2007, 2010 and 2013".
  2. Replies
    2
    Views
    65

    Re: Mmsyserr_nodriver

    Well, perhaps your "laptop with WINDOWS 8" drivers do not support this midiOutGetVolume? :confused:
  3. Re: winsock... binding to WRONG IP byte order WORKS!

    I'm awfully sorry! :ehh:
    It was my incorrect copy-paste operation! Of course, I meant inet_addr()!
  4. Replies
    4
    Views
    106

    Re: Simple Handle question

    If your program is about to use a handle that could not be obtained by GetStdHandle (the return value was INVALID_HANDLE_VALUE or NULL) then yes, the program should exit or, at least not use such a...
  5. Replies
    7
    Views
    176

    Re: How to modify File menu width

    Did you try to completely replace menu? Like it was described in KB How to Use Multiple Menus in MFC App That Uses GetDefaultMenu...
  6. Re: winsock... binding to WRONG IP byte order WORKS!

    Just use inet_aton or directly assign in_addr.S_un_b members (s_b1 to s_b4) and you will never have any problem with IPv4 addresses!
  7. Replies
    5
    Views
    98

    Re: Trouble with GetDIBits()

    What does the GetDIBits return? And did you red the GetDIBits documentation?
  8. Re: winsock... binding to WRONG IP byte order WORKS!

    Are you sure your dwMyIp does contain the address in correct host format?
  9. Replies
    5
    Views
    125

    Re: Link time errors for static members

    You did not define them. You only declared them.
    Now you have to define them. Something like:
    NavMeshLoader::dtNavMeshQuery* m_navQuery = NULL;
    NavMeshLoader::dtStatus m_pathFindStatus;
    ...and so...
  10. Thread: C++ Program

    by VictorN
    Replies
    2
    Views
    100

    Re: C++ Program

    I do NOT see any "calculation" in the code snippet you have posted. Perhaps, it is the reason why "the answer is wrong"?

    Besides, you have to use Code tags while posting code snippets. Please,...
  11. Re: Code hangs on using sendmail command of smtp ?

    Please, edit your post changing the wrong written code tags to the correct ones (just use [] instead of <>)
    If you want to keep your main window responsible while sending e-mail and waiting for...
  12. VBScript Re: Code Needed to SendMessage for WM_USER interprocess communication to another prog

    Is the handle of "the running target window process" you are using in SendMessage call a correct one?
    Did you try to call IsWindow() API to ensure it is correct?

    As for Windows 7 additional...
  13. Replies
    7
    Views
    176

    Re: How to modify File menu width

    How have you implemented it? Could you show your code?

    I guess it is calculated in menu draw procedure. Sure you could override it using owner draw menu.
  14. Replies
    7
    Views
    176

    Re: How to modify File menu width

    Then try to reload menu (CFrameWnd::OnUpdateFrameMenu followed by DrawMenuBar)
  15. Replies
    7
    Views
    176

    Re: How to modify File menu width

    Perhaps, DrawMenuBar could help? :confused:
  16. Replies
    58
    Views
    600

    Re: Unresolved external symbol

    Put it in .cpp file(s)
  17. Replies
    58
    Views
    600

    Re: Unresolved external symbol

    So why didn't you debug it to see what, where and why goes wrong?
  18. Replies
    58
    Views
    600

    Re: Unresolved external symbol

    Did't you read what Paul wrote?
  19. Replies
    58
    Views
    600

    Re: Unresolved external symbol

    Compiler Error C2146
    Compiler Warning C4430
  20. Replies
    22
    Views
    270

    Re: PLEASE with this code!!!!!

    Well, compiler is right.
    But why are you converting from double to int? Why not just use double types instead of int?
  21. Replies
    5
    Views
    112

    Re: Cannot maximize window

    WEll, either you will show us your real code and answer some very simple questions I asked you, or please, don't expect any help.
  22. Replies
    5
    Views
    112

    Re: Cannot maximize window

    You don't need to try "with all the SW_ parameters", only SW_MAXIMIZE onle should be used.

    How exactly and where from do you call ShowWindow? What exactly happens?
  23. Replies
    22
    Views
    270

    Re: PLEASE with this code!!!!!

    First, please, use Code tags, not HTML ones!
    Second, what is not good for you with this code so you need to improve?
  24. Re: Pathfinding using A Star help needed (opengl)

    What problems?
    Did you debug your code?
  25. Replies
    17
    Views
    486

    Re: only works with cout?

    First, please, use proper code indentation!
    Second, What will happen if x will become 999999?
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4



HTML5 Development Center

Click Here to Expand Forum to Full Width