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

Search:

Type: Posts; User: astoraiti

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    1,362

    Re: WM_MOVE in MDI child

    oh my bad, i put the wm_move handler in my view
    i try to put it in cchildframe as you told, it's working

    thanks ProgramArtist ^^
  2. Replies
    2
    Views
    1,362

    [RESOLVED] WM_MOVE in MDI child

    Hello,

    I'm making an MDI program with Doc/View, and i have a CFormView as a child. i need to set some variable when the child move. i tried to use WM_MOVE in child, but it does not getting called...
  3. Replies
    1
    Views
    677

    Re: please help on CFormView

    sorry already solved
    i use ::IsWindow in OnInitialUpdate
  4. Replies
    1
    Views
    677

    please help on CFormView

    hello

    can someone help me?

    im using CFormView, and i put List Control in the form design. what i want to do is when the form is created, the list will be filled automatically. i used variable...
  5. Replies
    2
    Views
    1,182

    Re: print CListCtrl with doc/view

    thanks ovidiucucu
  6. Replies
    2
    Views
    1,182

    print CListCtrl with doc/view

    hello,
    can anybody help me please?

    im using MDI with doc/view, and I create CListCtrl in CView. i need to print the CListCtrl provided by doc/view support. but when i look at the print preview,...
  7. richedit with EM_SETCHARFORMAT SCF_SELECTION work until 256 ?

    hello, im learning unicode richedit control like this


    CString data(_T("Data"));

    s_richedit.Append(data); // s_richedit is CString control of rich edit

    CHARFORMAT2 cf;
    ::memset(&cf,...
  8. Re: can someone help - OnSize and SetWindowPos?

    yes that's worked

    thanx again Johncz ^^
  9. Re: can someone help - OnSize and SetWindowPos?

    sorry i can't find OnInitDialog(), is it because im using CFormView?

    i tried like this


    void CForm1::OnInitialUpdate()
    {
    CFormView::OnInitialUpdate();
    CRect RForm;...
  10. can someone help - OnSize and SetWindowPos?

    hello im new at visual C++, im asking for help here...
    i got problem
    bellow is the code, CForm1 is derived CFormView

    void CForm1::OnSize(UINT nType, int cx, int cy)
    {
    CRect RectEDIT,...
Results 1 to 10 of 11





Click Here to Expand Forum to Full Width

Featured