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

Search:

Type: Posts; User: rudibr

Search: Search took 0.03 seconds.

  1. Replies
    20
    Views
    6,647

    Re: How do I get rid of "Ready" in Status Bar

    ;-)

    If it works, don’t fix it!

    🤪
  2. Replies
    20
    Views
    6,647

    Re: How do I get rid of "Ready" in Status Bar

    I tried this:



    CHAR* msg = "This is a test";
    AfxGetApp()->m_pMainWnd->SendMessage(WM_SETMESSAGESTRING, 0, (LPARAM)msg);


    This doesn't set the status text, if called before the status...
  3. Replies
    20
    Views
    6,647

    Re: How do I get rid of "Ready" in Status Bar

    Ok. I’ll try that. Just thought that since You suggested it you might know something about it.
  4. Replies
    20
    Views
    6,647

    Re: How do I get rid of "Ready" in Status Bar

    Well, in my specific case, I am already setting the status bar text before the status bar is even created ;-)
    That's why I need the timer to wait for the status bar to be ready.

    Once the...
  5. Replies
    20
    Views
    6,647

    Re: How do I get rid of "Ready" in Status Bar

    I know this is an ancient thread, but I had some similar issues in an old MFC application and solved it this way.

    Window class private members and method defined in header file:


    void...
  6. Gdiplus drawing causes flicker in transparent child views

    Hi there,

    I have experienced a strange problem in a Visual Studio .NET 2003 MDI project. I have several child views that are semi transparent using the SetLayeredWindowAttributes api call and when...
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured