CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    May 1999
    Posts
    3

    Tabs with property page

    I have a dialog box, which has 4 different tabs. Those tabs are derived from the CPropertyPage. Inside the dialog box I have 4 buttons, OK, Cancel, Apply, and Help.
    Depending on which tab I am in after I push the Apply button the apply button is disabled or reenabled.
    Is there anybody know how to enable the apply button all the time?

    Thanks,

    Suehyun Chung


  2. #2
    Join Date
    May 1999
    Posts
    5

    Re: Tabs with property page

    In order to enable the apply button call SetModified(true).

    For further details lookup help for CPropertyPage::SetModified()
    in VC++ documentation.


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