Originally posted by: T.K.seok
Sir,
I create a Dialog Box in Vc++6
The problem is :
The parent Window is create and the dialog box
create, page is create.
but I want transfer diaglog to page.
How to get current dialog page?
Thanking You.
Reply
Originally posted by: HARI HARAN
Sir,
I create a Modaless Dialog Box in Vc++ version 5
but when i changed to vc++ 6 this code is not working.
The problem is :
The parent Window is created but the dialog box
is not displayed when the command is given.
Waiting for your replay at the earlist.
Thanking You.
Reply
Originally posted by: Cezar
I am trying to make an applivation invisible as it is launched. How do I do that ???
Thanks.
Hi !
Originally posted by: Mike Liss
See:
http://codeguru.earthweb.com/dialog/ChildDialogInADialog.shtml
ReplyOriginally posted by: Anil Raskar
To support ActiveX controls, you must add one line of code to two of your project's files.
Modify your main dialog's InitInstance function (found in CONTAINER.CPP) by making a call to AfxEnableControlContainer, as in the following example:
// CContainerApp initialization
BOOL CContainerApp::InitInstance()
{
AfxEnableControlContainer();
...
}
Add the following to your project's STDAFX.H header file:
#include <Afxdisp.h>
After you have completed these steps, rebuild your project by clicking Build on the Build menu.
Originally posted by: Anil Raskar
I am trying to use CStackDialog application. I have found that it is not working properly, If I place third party control on any page. It is not showing me that perticular dialog. It is not createing page dialog in AddPage() function.
Regards
anilraskar@hotmail.com
Hi
Can somebody tell me what is the problem?
-Anil
Originally posted by: Mario Leboute
The article is great, but suffers from a amazing keyboard
problem: is impossible to integrate tab key navigation
between the stacked pages and the main page.
I am personaly having the same problem while integrating
CTabCtrls directly inside dialogs to avoid the fuzzy
CPropertyPages. If I solve this problem, I will
post the solution.
Reply
Originally posted by: Ryan
How can class wizard derive a class from TStackedDialog?
ReplyOriginally posted by: Ken
I'm interested in doing something similar to this application except using MDI and CFormView. To make a long story short, I decided to use dialogs inside my view with a picture placeholder, and a combo box to select the various dialogs. Pointers to the dialogs are data members of my View class. I get some strange behavior (my dialog disappears) when I press the enter or escape keys within a control in a dialog that is in the view. I think it is because messages aren't being sent to the dialog (WM_ERASEBKGND messing me up??) but I don't really know. Any ideas??
Thanks.
BTW, as you can tell I'm new to windows programming
Reply