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

Search:

Type: Posts; User: shivaraj

Search: Search took 0.01 seconds.

  1. Replies
    15
    Views
    15,746

    Re: Child dialog shadow remains

    Yes i have...

    int CModifyColumnViewDlg::DoModal()
    {

    if (m_pColumnView == NULL)
    return IDCANCEL;
    m_bSoftUpdate = true;
    CComPtr<IDispatch> pDispFieldList;...
  2. Replies
    15
    Views
    15,746

    Re: Child dialog shadow remains

    30473
    m_ctrlColumnViewList.Invalidate(); Doesn't work
  3. Replies
    15
    Views
    15,746

    Re: Child dialog shadow remains

    editing in the sense i am going change some settings through this child dialog.
    Shadow means patch in the place of child dialog.
  4. Replies
    15
    Views
    15,746

    Re: Child dialog shadow remains

    child dialog shadow... when i made some settings change in child dialog & click OK shadow remains.
  5. Replies
    15
    Views
    15,746

    Re: Child dialog shadow remains

    Please reply if the sample code is helpful to answer.
  6. Replies
    15
    Views
    15,746

    Re: Child dialog shadow remains

    Below used OnModifyview dialog is child dialog of a dialog.


    void CSelectColumnViewDlg::OnModifyview()
    {
    int iIndex = m_ctrlColumnViewList.GetCurSel();
    if (iIndex < 0)
    return;
    double...
  7. Replies
    15
    Views
    15,746

    Child dialog shadow remains

    Hi, this is my first post.

    Work flow is like this:
    i open child dialog from a dialog( which is launched from a toolbar of a window) after editing i close the child dialog, after closing child...
Results 1 to 7 of 7





Click Here to Expand Forum to Full Width

Featured