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

Search:

Type: Posts; User: wieser

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    916

    Re: MFC CTypedPtrList in a CTypedPtrList error

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

    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
    2,685

    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
    2,685

    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



HTML5 Development Center

Click Here to Expand Forum to Full Width