Tagged Questions
2
votes
5answers
333 views
Wrapping a PropertySheet; how to handle callbacks?
I'm writing an (unmanaged) C++ class to wrap the Windows PropertySheet. Essentially, something like this:
class PropSheet {
PROPSHEETHEADER d_header;
public:
PropSheet(/* parameters */);
...
2
votes
4answers
1k views
How do I force my app to come to the front and take focus?
I'm working on an application that happens to be the bootstrap for an installer that I'm also working on. The application makes a few MSI calls to get information that I need for putting together the ...
1
vote
1answer
58 views
How to catch the “tab changed” event in a property sheet
How to catch and handle the notification about that the currently selected tab has changed in the class derived from CPropertySheetImpll? I added TCN_SELCHANGE handler to message map but a peoperty ...
1
vote
1answer
50 views
PSN_QUERYCANCEL does not close Property Sheet
I have a property sheet that I have created and each of the tab pages share the same pfnDlgProc. In the pfnDlgProc, I have this code:
switch (msg) {
case WM_NOTIFY:
nmhdr = ...
1
vote
1answer
52 views
The exception thrown from the property sheet pages' handlers
I'd like to catch and handle an excption by the top level application's try-catch block rather then inside the property sheet pages' handlers (for example, OnInitDialog handler). Thus, in the code ...
0
votes
1answer
33 views
Can't use PropSheet to create a centered property sheet dialog
I am creating a modeless property sheet using the following settings:
PROPSHEETHEADER pshdr = { 0 };
pshdr.dwSize = sizeof(PROPSHEETHEADER);
pshdr.dwFlags = PSH_NOAPPLYNOW | ...
0
votes
0answers
67 views
Property Sheet background Image
How to put a background image to a propery sheet so that it should cover a whole client area of a porperty sheet including the bottom part where the property sheet's buttons are placed? Thus, I'd like ...
0
votes
1answer
65 views
property sheet data validation
When the user clicks the OK or APPLY button on a property sheet and the program determines data on some page is invalid, how can I cause the page containing the error to be displayed along with a ...
0
votes
0answers
190 views
Team Build: VisualStudioPropertySheet overrides the OutputDirectory, but the project still gets built locally
I'm working with Team Build to automate the building of various projects (C#, VB.NET, C++).
The C++ projects mostly build correctly, but with one major drawback; one or two of the projects are ...
0
votes
1answer
228 views
PropertySheet tabs close on click
I am making a PropertySheet control with the Windows API, and for some reason tabs are closing when I click on them.
For instance, if I add 4 tabs:
Then if I click on any of those tabs except ...