Active X problem
-
I have downloaded an MDI project. The PROBLEM is when I insert any ActiveX component or control to any of the dialogs and run, Iam unable to VIEW the dialog to which I had added the ActiveX. That specific dialog is not popping up. The PROBLEM occurs specific to THIS PROJECT only. Is there any project settings to be done for enabling ActiveX controls. Please help me out. I thank u in advance. Mughi
-
I have downloaded an MDI project. The PROBLEM is when I insert any ActiveX component or control to any of the dialogs and run, Iam unable to VIEW the dialog to which I had added the ActiveX. That specific dialog is not popping up. The PROBLEM occurs specific to THIS PROJECT only. Is there any project settings to be done for enabling ActiveX controls. Please help me out. I thank u in advance. Mughi
is there a call to OleInit() in the initinstance of the application.
Still Alive!!! Thank you God.
-
I have downloaded an MDI project. The PROBLEM is when I insert any ActiveX component or control to any of the dialogs and run, Iam unable to VIEW the dialog to which I had added the ActiveX. That specific dialog is not popping up. The PROBLEM occurs specific to THIS PROJECT only. Is there any project settings to be done for enabling ActiveX controls. Please help me out. I thank u in advance. Mughi
Add the command AfxEnableControlContainer(); in your Apps InitInstance()-Method !!! e.g. ///////////////////////////////////////////////////////////////////////////// // CMyApp initialization BOOL CMyApp::InitInstance() { AfxEnableControlContainer(); greets al
-
Add the command AfxEnableControlContainer(); in your Apps InitInstance()-Method !!! e.g. ///////////////////////////////////////////////////////////////////////////// // CMyApp initialization BOOL CMyApp::InitInstance() { AfxEnableControlContainer(); greets al
-
is there a call to OleInit() in the initinstance of the application.
Still Alive!!! Thank you God.