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

Search:

Type: Posts; User: marsh_pottaye

Page 1 of 6 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    3
    Views
    2,406

    Re: OnMouseMove in CView derived class

    ADDITIONAL NOTE:
    As already thousand times said in this forum, do not draw inside mouse messages handlers.
    Just call Invalidate or InvalidateRect and draw inside CView::OnDraw.
  2. Replies
    3,704
    Views
    622,272

    Poll: Re: Where are we from ?

    Well, nice tests for saving the Otherians souls are there. :thumb:
  3. Poll: Re: Where are we from? - Second Edition

    This seems to be a harder one... :D
  4. Replies
    2
    Views
    753

    Re: about making a install

    Use Dependency Walker which is shipped with Visual Studio.
  5. Replies
    3,704
    Views
    622,272

    Poll: Re: Where are we from ?

    Are you sure?
  6. Replies
    3,704
    Views
    622,272

    Poll: Re: Where are we from ?

    I have voted for India. Anyhow no matter...

    BTW: You forgot USSR (CCCP).
  7. Replies
    22
    Views
    2,727

    Re: copy construct

    ... as somebody already said.

    However, you cannot blame us, as long as this new direction is opened by yourself:

    Anyhow, I agree with this point of view:
  8. Replies
    22
    Views
    2,727

    Re: copy construct

    class CFufu
    {
    public:
    CFufu() : m_strFufu(_T("FUFU")) {}
    private:
    CString m_strFufu;
    };

    class CFu
    {
  9. Replies
    4
    Views
    1,475

    Re: Disappearing linker error

    From MSDN
  10. Re: Picture Compare Program!!! Help Needed!!!!!!

    How much you offer?
  11. Replies
    8
    Views
    1,300

    Re: Find out type of class

    All-in-one HERE.
  12. Re: Notepad in Dialog Based Application..........

    Are you doing that application, or searcing for source code?
  13. Replies
    44
    Views
    13,771

    Poll: Re: ISO vs CMM

    Cobol.NET? Quite interesting. Serious.
    Just I'm courious: there is also an Assembly.NET? Should be even more interesting.
  14. Replies
    3
    Views
    1,344

    Re: freeware and shareware

    See also: careware, addware, spyware, hijackware, beerware, etc...
  15. Replies
    3
    Views
    708

    Re: The problem with fprintf

    ...or call fflush after fprintf.
  16. Thread: Why PHP?

    by marsh_pottaye
    Replies
    15
    Views
    3,567

    Poll: Re: Why PHP?

    it's easy / it's free / for a C (C++) programmer its syntax looks good :thumb:
  17. Replies
    3
    Views
    712

    Re: Drawing in dialog box

    Handle WM_PAINT message.
  18. Replies
    44
    Views
    13,771

    Poll: Re: ISO vs CMM

    But this generally happens: in every company/project the number of reported bugs decreases in time.
  19. Replies
    1
    Views
    562

    Re: MFC to Windows APPlication

    Unfortunately, as I know, such wizard does not exist.
  20. Replies
    1
    Views
    922

    Poll: Re: SDI/MDI/Dialog-based

    Dialog-based - more to work but easier to handle.
  21. Replies
    2
    Views
    797

    Re: Adding scroll bar to Mainframe

    Why?
    As a general rule, it's not a good idea to change the default behavior of an MDI application.
  22. Replies
    19
    Views
    2,733

    Poll: Re: Greatest human achievement

    Quickly voted for toilet. I'm in a hurry to go there.... :D

    Bye!
  23. Replies
    1
    Views
    871

    Re: Using Radio buttons..

    Is this a graphics problem?

    Anyhow, your question is quite unclear.
    So, when click on OK button you want to see which of radio buttons is selected and write or draw something in a view of a MDI...
  24. Poll: Re: What do you prepend your class names with?

    To prepend, or not prepend: that is the question... :)
  25. Replies
    3
    Views
    879

    Re: size of an open file

    Try GetFileAttributesEx API function.
Results 1 to 25 of 143
Page 1 of 6 1 2 3 4





Click Here to Expand Forum to Full Width

Featured