Tagged Questions
The propertysheet tag has no wiki summary.
2
votes
0answers
302 views
Add Visual C++ property sheets using CMake
I'm currently porting a gcc project to Visual C++. It's defined in a CMake file, and I have created a Visual C++ property sheet to aid in compatibility (GccCompat.props). Everytime the Visual C++ ...
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
0answers
24 views
PropertySheet Full Screen
I'm porting an application from windows Pocket PC2003 to Windows Mobile 6.5.
On startup my application shows a PropertySheet with two Pages which I want
to show in full screen mode.
The problem is ...
1
vote
0answers
17 views
How to reload a property sheet in Visual Studio 2010
Is there a way to reload a property sheet that was edited outside of Visual Studio? Visual Studio doesn't detected automatically that the file was modified (like it does with project files). The only ...
1
vote
1answer
38 views
Get Include Directories for custom build step
I would like to know if there is a possibility to get the list of project's include directories when building files with custom build step.
Imagine following situation: my project consists of A.cpp, ...
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
2answers
292 views
property sheet in dialog using WINAPI example (without using MFC)
Can anyone point me at an WINAPI example of embedding a property sheet in a dialog box using WINAPI (not MFC)?
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 ...
1
vote
1answer
213 views
on Eclipse plug-in:how to implement such a property view?
I want to display a array of objects in PropertyView/PropertySheet,just like this:
How to do it?
thx.
0
votes
0answers
13 views
Adding command line options through property sheets in VS2010
I'm trying to port over a project from VS2008 to VS2010. The .vcproj (2008 project file) references a couple of .vsprops (2008 property sheets) and I've got the .vcxproj (2010 project file) ...
0
votes
1answer
32 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
1answer
43 views
C# using VC++2010 property sheet
We store version numbers for our software in a vc++2010 property sheet. I have 2 C# projects that need to access these numbers. Is there a way to reasonably do this?
thanks!
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
61 views
How can I change the text on a property sheet APPLY button
I'd like to change the text on a property sheet APPLY button but I don't know the control's ID or HWND. I do have the property sheet's HWND. Any ideas?
0
votes
1answer
46 views
property sheet - how can I remove the border?
I've embedded a property sheet in a dialog box IDC_CONTAINER by specifying the HWND of the container in the hwndParent of the property sheet header when creating the property sheet. In the callback I ...
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
188 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
227 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 ...
0
votes
1answer
265 views
Adding controls to a Property Sheet at runtime (without Dialog Templates)
As far as I can see, the way you normally create Property Sheets in Win32 (I am using the API, not MFC) programming is you have a bunch of dialog templates for each tab page, and you make the property ...
0
votes
3answers
520 views
How to respond to a PropertySheet's OK or Apply button after the pages have processed it?
The PropertySheet API lets you define a PropSheetProc that can (on Windows XP and above) receive messages when the OK or Apply button is pressed. This lets you do processing when one of these buttons ...