Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > Visual C++ MFC > Toolkit Pro
  New Posts New Posts RSS Feed - CXTPTabClientWnd problems!
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

CXTPTabClientWnd problems!

 Post Reply Post Reply
Author
Message
Razr View Drop Down
Newbie
Newbie
Avatar

Joined: 15 July 2004
Location: Russian Federation
Status: Offline
Points: 7
Post Options Post Options   Thanks (0) Thanks(0)   Quote Razr Quote  Post ReplyReply Direct Link To This Post Topic: CXTPTabClientWnd problems!
    Posted: 26 April 2005 at 5:57am

In my old MDI application i'm use CXTMDIWndTab! This class has:

GetFrameWnd(i)

GetItemCount()

- i'm can use this method and get CChildFrame windows.

Now, i begin rewrite this app with use CXTPTabClientWnd... How i can get analog this method in this class ? How i can get all my CChildFrame attached with CXTPTabClientWnd ??

Hi all !!! :-)))
Back to Top
Oleg View Drop Down
Senior Member
Senior Member


Joined: 21 May 2003
Location: United States
Status: Offline
Points: 11234
Post Options Post Options   Thanks (0) Thanks(0)   Quote Oleg Quote  Post ReplyReply Direct Link To This Post Posted: 26 April 2005 at 1:25pm

// start enumerating from currently active MDIChild

CChildFrame* pChildWnd = m_wndMDITabWindow.GetWindow(GW_CHILD);

// enumerate all child windows

while (pChildWnd)

{

pChildWnd = (CChildFrame*) pChildWnd->GetWindow(GW_HWNDNEXT);

}

 

 

:)

 

Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS
Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.04
Copyright ©2001-2021 Web Wiz Ltd.

This page was generated in 0.047 seconds.