Click here to Skip to main content
15,904,877 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralSolved: VC++ 2003 NET apps without NET installed? Pin
gunrunnerjohn30-Jul-05 7:58
gunrunnerjohn30-Jul-05 7:58 
AnswerRe: VC++ 2003 NET apps without NET installed? Pin
McClamm29-Jul-05 5:49
McClamm29-Jul-05 5:49 
GeneralRe: VC++ 2003 NET apps without NET installed? Pin
gunrunnerjohn29-Jul-05 7:33
gunrunnerjohn29-Jul-05 7:33 
GeneralRe: VC++ 2003 NET apps without NET installed? Pin
Judah Gabriel Himango29-Jul-05 8:14
sponsorJudah Gabriel Himango29-Jul-05 8:14 
GeneralRe: VC++ 2003 NET apps without NET installed? Pin
gunrunnerjohn29-Jul-05 8:30
gunrunnerjohn29-Jul-05 8:30 
Generalline printing charset Pin
Anonymous (scp)29-Jul-05 4:56
sussAnonymous (scp)29-Jul-05 4:56 
GeneralRe: line printing charset Pin
Blake Miller29-Jul-05 5:29
Blake Miller29-Jul-05 5:29 
GeneralCDialog derived Child Pin
23_44429-Jul-05 3:19
23_44429-Jul-05 3:19 
I have an SDI application with a FormView. The FormView has two buttons. One opens a CDialog derived class that is Modal and a Child.
The other opens a CDialog derived class that is Modeless and a Child.

Everything works fine when the Child style is removed and WS_POPUP is applied.
When it is applied the dialogs open up but are

(Modal and Child)
behind Mainframe with no way to get at it except minimize Mainframe. After the minimization of Mainframe the dialog does not allow one to click on it (Frame titlebar is grayed. I believe the whole dialog box is disabled.

(Modeless and Child
appears but does not allow one to click on it as the Frame titlebar is grayed. I believe the whole dialog box is disabled.

Now understand everything works as it should with the WS_POPUP style. Switch that and I get problems. The ONLY difference is the style. What is wrong?

Thanks.


//Modal Child
void CParentExamplesView::OnButton3()
{
CModalChild cmd;
cmd.DoModal();

}

//Modeless Child
void CParentExamplesView::OnButton4()
{
if (!m_pModelessChildDialog)
m_pModelessChildDialog= new CModelessChild;

if (!::IsWindow(m_pModelessChildDialog->GetSafeHwnd()))
m_pModelessChildDialog->Create(IDD_DIALOG6, this);

m_pModelessChildDialog->ShowWindow(SW_SHOW);


}
GeneralRe: CDialog derived Child Pin
Blake Miller29-Jul-05 4:56
Blake Miller29-Jul-05 4:56 
GeneralRe: CDialog derived Child Pin
23_44429-Jul-05 5:49
23_44429-Jul-05 5:49 
GeneralRe: CDialog derived Child Pin
David Crow29-Jul-05 8:33
David Crow29-Jul-05 8:33 
GeneralRe: CDialog derived Child Pin
Anonymous29-Jul-05 8:39
Anonymous29-Jul-05 8:39 
GeneralRe: CDialog derived Child Pin
David Crow29-Jul-05 9:22
David Crow29-Jul-05 9:22 
GeneralRe: CDialog derived Child Pin
23_4443-Aug-05 3:31
23_4443-Aug-05 3:31 
GeneralReading a CSV file Pin
Arrun29-Jul-05 3:13
Arrun29-Jul-05 3:13 
GeneralRe: Reading a CSV file Pin
Marc Soleda29-Jul-05 3:32
Marc Soleda29-Jul-05 3:32 
GeneralRe: Reading a CSV file Pin
Roland Pibinger29-Jul-05 8:43
Roland Pibinger29-Jul-05 8:43 
GeneralRe: Reading a CSV file Pin
Marc Soleda31-Jul-05 19:18
Marc Soleda31-Jul-05 19:18 
GeneralRe: Reading a CSV file Pin
knapak29-Jul-05 11:49
knapak29-Jul-05 11:49 
GeneralRe: Reading a CSV file Pin
Roland Pibinger29-Jul-05 12:24
Roland Pibinger29-Jul-05 12:24 
GeneralRe: Reading a CSV file Pin
knapak29-Jul-05 12:33
knapak29-Jul-05 12:33 
GeneralRe: Reading a CSV file Pin
Roland Pibinger29-Jul-05 23:52
Roland Pibinger29-Jul-05 23:52 
GeneralRe: Reading a CSV file Pin
knapak1-Aug-05 11:41
knapak1-Aug-05 11:41 
GeneralRe: Reading a CSV file Pin
Roland Pibinger6-Aug-05 0:39
Roland Pibinger6-Aug-05 0:39 
Questionhow to convert a directory path to a relative path to another directory Pin
HeartFriend29-Jul-05 2:05
HeartFriend29-Jul-05 2:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.