CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Guest

    Question on Tabs on Property Sheets?

    Having a class called CUserView which inherits from CPropertySheet
    and two pages called:
    CTaskPage and CUserPage both inherit from CProptertyPage.

    I embed the page fine in the sheet fine. Now I would like to be able to find out what I need to do to be able to figure out which tab i selected. Either CtaskPage or CUserPage. Is there a message for pages to say the tab/dialog has been selected?

    Thanks


  2. #2
    Guest

    Re: Question on Tabs on Property Sheets?

    If you need to know after the fact, use CPropertySheet::GetActivePage(). Otherwise, you can determine when a page is selected by handling CPropertyPage::OnSetActive()


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured