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

Search:

Type: Posts; User: oldnewbie

Search: Search took 0.02 seconds.

  1. Replies
    0
    Views
    3,615

    Using Boost Asio in Windows

    Hi all:

    Using MS Visual Studio 2008 C++ for Windows 32 (XP brand), I try to construct a POP3 client managed from a modeless dialog box.

    As a first step I create a persistent object -say pop3-...
  2. Replies
    5
    Views
    5,266

    Re: Problem with explicit instantiation

    Paul:

    Thanks again for your help.

    Finally I've been able to find the error. The key has been your advice " or turn on the preprocessor generation and get the real code from the preprocessor...
  3. Replies
    5
    Views
    5,266

    Re: Problem with explicit instantiation

    Paul:

    Thank a lot for your answer. Although I'm not sure to been fully understood all your advices, I try to follow them, so there is the new code -the error remains-.

    I've been posted in this...
  4. Replies
    5
    Views
    5,266

    Problem with explicit instantiation

    Hi template gurus:

    Using MS V2008 I found a problem that I'm unable to surmount. Here is a minimal reconstruction:

    // header.h

    #pragma once
    #include <map>

    struct pXXX {
  5. Replies
    7
    Views
    1,455

    Re: Leaking GDI resources

    hoxsiev:

    Indeed it is. It's just the result of a newbie design and probably a poor solution to scroll the content of a dialog box who can grow and shrink in size -i.e can include a variable number...
  6. Replies
    7
    Views
    1,455

    Re: Leaking GDI resources

    VladimirF:

    I just add the LR_SHARED condition to my LoadImage functions, and although I've made just a quick pair of tests, the good old Task Manager suggest that you shot directly in the...
  7. Replies
    7
    Views
    1,455

    Re: Leaking GDI resources

    hoxsiev:

    Because my WM_PAINT message treatement include several routines -basically to move windows- and prior to any further investigation, do you suggest that the memory leak is in the process...
  8. Replies
    7
    Views
    1,455

    Re: Leaking GDI resources

    Not to say that I'm using MS VC++ and the plain vanilla API.
  9. Replies
    7
    Views
    1,455

    Leaking GDI resources

    Hi all:

    I have an application who uses some BS_OWNERDRAW style buttons, and in the dialog-procedure, some like this to draw them:

    case WM_DRAWITEM:
    {
    LPDRAWITEMSTRUCT pdis =...
  10. Replies
    21
    Views
    4,564

    Re: Pasting to any window

    Unfortunately I can't help on that question, but I suppose that the application per se can't do that, because it go against any security principle. I suppose that the application need to be started...
  11. Replies
    21
    Views
    4,564

    Re: Pasting to any window

    May be interesting to read this "Nick on Silverlight and WPF" http://blogs.msdn.com/nickkramer/archive/2006/04/15/576758.aspx

    Greetings.
  12. Replies
    4
    Views
    1,463

    Re: Positioning a WebBrowser control

    ovidiucucu: thanks for your reply

    My problem is not how to position or resize a child window in a dialog box. I believe is my lack of a good understand of the interaction between the WebBrowser...
  13. Replies
    4
    Views
    1,463

    Positioning a WebBrowser control

    Hello all:

    I need to include a WebBrowser control in a window -most exactly in a dialog box-. I'm using Visual C++ and the Windows API "bareback", I mean without MFC or ATL.

    I managed to...
  14. Replies
    2
    Views
    735

    Re: Some theoretical reason?

    >

    Thanks a lot. That unveil the mystery to me!!
  15. Replies
    2
    Views
    735

    Some theoretical reason?

    Hi all:

    Trying to follow this tutorial http://www.codeproject.com/KB/COM/com_in_c1.aspx I'v got this code:

    // MS VCpp console application

    long SetString (char*); // function prototype...
Results 1 to 15 of 15





Click Here to Expand Forum to Full Width

Featured