Hello,
I'm trying to create a property sheet or tabbed dialog within another
tabbed dialog. I found a code snippet at
http://www.codeguru.com/propertysheet/inside_dialog.shtml
and it describes creating a property sheet within a dialog. Only
problem is his example uses MFC to creage the property sheet
and when he creates it he calls...
m_dlgPropSheet.Create (this, Ws_Child | Ws_Visible, 0);
I am not using mfc so I can't seem to duplicate this call with just
the commctrl api. I call PropertySheetA from CommCtrl.dll and
pass in a property sheet header with all the info in it. I can't
seem to set the window styles of the property sheet at creation
time. I tried to change the style after it is created, but this doesn't
seem to work. Anyone know how to create the property sheet
without mfc another way than mine? Any help is greatly
appreciated.
Thanks
Andrew