A property sheet is a window that allows the user to view and edit the properties of an item. It uaually has several pages, usually navigated by 'Next'/'Previous' buttons or tabs.
Questions tagged [propertysheet]
93 questions
2
votes
1 answer
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 = (NMHDR*)lParam;
switch (nmhdr->code) {
case…

Seth Carnegie
- 73,875
- 22
- 181
- 249
2
votes
1 answer
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)?

Mike D
- 2,753
- 8
- 44
- 77
2
votes
1 answer
How do I prevent this CMFCPropertySheet from resizing too small in the height?
I have a CResizingMFCPropertySheet with several pages on it. This class is derived from CMFCPropertySheet. The class definition is fairly basic:
#include "stdafx.h"
#include "ResizingMFCPropertySheet.h"
#include…

Andrew Truckle
- 17,769
- 16
- 66
- 164
2
votes
1 answer
append %PATH% of many Visual Studio property sheets (.props) additively
To define PATH locally in a project from property sheet, I need to add it in LocalDebuggerEnvironment.
This approach works well when there is only 1 property sheet that define PATH.
If I have more than one property sheet, while I want to use…

cppBeginner
- 1,114
- 9
- 27
2
votes
1 answer
enable/disable "Whole program optimization" (/GL) in property sheet (.props)
In project property > C/C++ > Optimization > Whole Program Optimization, I can set /GL.
Can I enable/disable the /GL in a shared property-sheet (.props file) and make many projects bases from it?
I have tried :-
…

cppBeginner
- 1,114
- 9
- 27
2
votes
1 answer
CMFCPropertySheet "Page" resources are not resizing with dynamic layout
I am really confused. :(
Here is a new property sheet:
#include "stdafx.h"
#include "resource.h"
#include "VisitsRotaMFCPropertySheet.h"
CVisitsRotaMFCPropertySheet::CVisitsRotaMFCPropertySheet()
:CResizingMFCPropertySheet(_T("VisitsRota"),…

Andrew Truckle
- 17,769
- 16
- 66
- 164
2
votes
2 answers
VS2017 Property sheet ordering
So, I have a project in VS2017, and VS2017 has recently received an update. I have then added all the wxWidgets modules as projects to my initial solution and have dealt with build order so they're built in the proper order.
However, I always get…

Karlovsky120
- 6,212
- 8
- 41
- 94
2
votes
1 answer
How can I get the current tab while this tab is not active
I am using Eclipse RCP and EMF models. I have created my own property tabbed sheets than refreshes when an Object is selected in a view. Until here, everything works fine. Then, I wanted to refresh the property tab when I make a change in my model.…

vanvana
- 128
- 7
2
votes
1 answer
Add CheckComboBox to PropertySheet JavaFX
I want to add CheckComboBox to PropertySheet in controlsfx library. Default editor contains only ComboBox implementation. Is it possible to add CheckComboBox? I tried to implement PropertyEditor with AbstractPropertyEditor but getting exception.
…

Korvin Gump
- 383
- 4
- 7
2
votes
1 answer
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.

user347744
- 41
- 4
2
votes
0 answers
Can I include a .targets file in a .props property sheet?
I'm developing in C++ using Visual Studio 2012; I have about 25 projects in a solution that all use the same property sheet (.props file). I now need every project that uses said props file to also use a specific .targets file. Instead of editing…

NobodyNothing
- 155
- 3
- 13
2
votes
5 answers
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 */);
INT_PTR show();
private:
…

Thomas
- 174,939
- 50
- 355
- 478
2
votes
0 answers
using multiple property sheets in VStudio
How do you correctly use multiple property sheets in VStudio?
Assuming I want to have two separate propsheets for two libraries A and B then what I do is create sheet 1 for library A where I enter all the required directory paths and stuff. This…

user1709708
- 1,557
- 2
- 14
- 27
2
votes
1 answer
Exporting a Property Sheet in Visual Studio?
Sometimes when working on projects that people have posted online, I have to frantically modify my own property sheets to match theirs in order for my project to work (things like: MTd, linker stuff, Unicode/Multibyte settings).
I was wondering if…

James Linden
- 1,055
- 3
- 11
- 21
1
vote
0 answers
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 this:
What ever I do the Taskbar and the menubar…

user1153547
- 11
- 2