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

Search:

Type: Posts; User: wieser

Search: Search took 0.03 seconds.

  1. Replies
    4
    Views
    2,995

    Re: MFC CTypedPtrList in a CTypedPtrList error

    You can improve option 1 (above) thus:
    listMyData.InsertAfter(NULL, pList);
  2. Replies
    4
    Views
    2,995

    Re: MFC CTypedPtrList in a CTypedPtrList error

    I stumbled on this today.

    You have two choices,
    1. listMyData.InsertAfter(list.MyData.GetTailPosition(), pList);
    2. ((CObList *) &listMyData)->AddTail((CObject *) pList);

    I lean toward the...
  3. Replies
    30
    Views
    6,729

    The problem I see occurs in an ANSI build. It...

    The problem I see occurs in an ANSI build. It works if you don't have a manifest attached to the program, and doesn't if you do.

    I am building with VC6.

    Anthony Wieser
    Wieser Software Ltd
  4. Replies
    30
    Views
    6,729

    The problem you are seeing is to do with visual...

    The problem you are seeing is to do with visual styles.

    A quick google search found this explanation:

    http://tinyurl.com/ywnvz

    I am still looking for a solution...

    Anthony Wieser
    Wieser...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured