|
-
May 1st, 1999, 04:42 PM
#1
Property Sheets/Pages
I've created a property sheet and added few pages to it. up to here everything worked fine. when I inserted an ActiveX object into one of the property pages , I was not able to view (I think create ?) the page. Any idia what the problem is ?
-
May 4th, 1999, 10:00 AM
#2
Re: Property Sheets/Pages
Can you include ActiveX control in other dialogs in your application? If not, the project was probably not create with support for ActiveX controls. To fix this you will have to add the following line to your StdAfx.h:
#include <afxdisp.h>
And add the following line to your InitInstance (in the App class)
AfxEnableControlContainer();
Outside of that, you could try debugging into the Create of your dialog and see where exactly the problem is.
-
May 4th, 1999, 01:08 PM
#3
Re: Property Sheets/Pages
Yes, this have solved the problem, lot's of 10x.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|