Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
3k views

Which is preferred CTabCtrl vs. CPropertSheet in MFC?

I don't know how to use both of them. So a sample code with pros and cons is perfect. Which one is preferred? Why?
2
votes
1answer
97 views

Tool to create wizards in C++

The MFC concept (using PropertySheet / PropertyPages) to build a wizard has let me down many times and for several reasons. I googled the subject somewhat but could not turn up with any library or ...
2
votes
2answers
388 views

How to delete the default Help button in CPropertySheet in MFC?

I am using CPropertySheet class for my design in MFC application,normally in CPropertySheet there would be 4 default buttons..I want to hide/delete the HELP button..I tried the following..but its not ...
1
vote
0answers
185 views

How to get Apply button to show in property sheets in Windows Mobile 5 / PocketPC

I have an C++ MFC applications that runs on most flavours of Windows CE / Mobile / PocketPC and Win32. When using CPropertySheet based tabbed dialogs the application under Win32, I get Ok,Cancel, ...
0
votes
0answers
52 views

Context help button missing from CPropertySheet

I'm adding help to an MFC/COM/ATL app(comprises about 50 dlls) using VS2010. It was originally written using VS6. My only problems are several CPropertySheets - no matter what I do I cannot get the ...
0
votes
1answer
594 views

How to delete the default button in CPropertySheet Wizard MFC application?

Hey guys..I am designing a set-up wizard using CPropertySheet and CpropertyPage in MFC application...I have completed the design but the thing is..In normal CProperty Sheet there are four default ...
0
votes
1answer
549 views

MFC: How to Identfy if Dialog was created using CPropertySheet or CTabCtrl

In reference to this question:Which is prefered CTabCtrl vs CPropertySheet I have a DDK that uses MFC which I am new to. The basic example from the DDK implements a simple dialog box with 3 tabs ...
0
votes
1answer
466 views

Update Property Page or Tab Control Layout

After changing the text in a tab control's tab header, how do I tell it to recalculate the layout of the children (e.g., if the new tabs take up two rows)? I am changing the tab text like this, from ...