Click here to Skip to main content
15,920,438 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Superscipt in sourcecode/dialog caption Pin
Roger Allen29-Jan-03 0:55
Roger Allen29-Jan-03 0:55 
GeneralRe: Superscipt in sourcecode/dialog caption Pin
John Oliver29-Jan-03 1:17
John Oliver29-Jan-03 1:17 
GeneralMDI & Html Pin
jeremysay28-Jan-03 22:24
jeremysay28-Jan-03 22:24 
GeneralRe: MDI & Html Pin
HENDRIK R28-Jan-03 22:28
HENDRIK R28-Jan-03 22:28 
GeneralRe: MDI & Html Pin
jeremysay28-Jan-03 22:46
jeremysay28-Jan-03 22:46 
GeneralContrilling Smart App's from internal Web pages Pin
Peter Tewkesbury28-Jan-03 21:53
professionalPeter Tewkesbury28-Jan-03 21:53 
GeneralRe: Contrilling Smart App's from internal Web pages Pin
HENDRIK R28-Jan-03 22:12
HENDRIK R28-Jan-03 22:12 
Generalcascaded and tiled dialogs in SDI MFC applications Pin
annona28-Jan-03 21:19
annona28-Jan-03 21:19 
Hi...i wanna to create many dialogs, each display chart control.They are modeless dialogs
i want to make a menu command the makes all the dialogs be cascaded or tiled.i can't make the dialogs in child style cz that makes them misdrawed

The code that i am using to generate the dialogs
void CDelete15View::OnDialogModeless() 
{
	// TODO: Add your command handler code here
	if (!modeless)
	{
		modeless=new CModeless (this);
		modeless->Create(IDD_DIALOG1,GetWindow(GW_HWNDFIRST));
	}
	modeless->ShowWindow(SW_SHOW);

	
	if (!p1)
	{
		p1=new CModeless (this);
		p1->Create(IDD_DIALOG1,GetWindow(GW_HWNDFIRST));
	}
	p1->ShowWindow(SW_SHOW);

	if (!p2)
	{
		p2=new CModeless (this);
		p2->Create(IDD_DIALOG1,GetWindow(GW_HWNDFIRST));
	}
	p2->ShowWindow(SW_SHOW);

	if (!p3)
	{
		p3=new CModeless (this);
		p3->Create(IDD_DIALOG1,GetWindow(GW_HWNDFIRST));
	}
	p3->ShowWindow(SW_SHOW);

	if (!p4)
	{
		p4=new CModeless (this);
		p4->Create(IDD_DIALOG1,GetWindow(GW_HWNDFIRST));
	}
	p4->ShowWindow(SW_SHOW);

	if (!p5)
	{
		p5=new CModeless (this);
		p5->Create(IDD_DIALOG1,GetWindow(GW_HWNDFIRST));
	}
	p5->ShowWindow(SW_SHOW);
	if (!p6)
	{
		p6=new CModeless (this);
		p6->Create(IDD_DIALOG1,GetWindow(GW_HWNDFIRST));
	}
	
	p6->ShowWindow(SW_SHOW);

all the dialog is pop style and thin frame style

Thanks And Best Regards

Ann
GeneralIcon in the status bar - like Yahoo messenger... Pin
Florin Ochiana28-Jan-03 21:02
Florin Ochiana28-Jan-03 21:02 
GeneralRe: Icon in the status bar - like Yahoo messenger... Pin
Rickard Andersson2028-Jan-03 21:40
Rickard Andersson2028-Jan-03 21:40 
GeneralRe: Icon in the status bar - like Yahoo messenger... Pin
Rickard Andersson2028-Jan-03 21:43
Rickard Andersson2028-Jan-03 21:43 
GeneralRe: Icon in the status bar - like Yahoo messenger... Pin
Florin Ochiana28-Jan-03 21:46
Florin Ochiana28-Jan-03 21:46 
GeneralA question about TransmitFile Pin
Kerry Chou28-Jan-03 20:51
Kerry Chou28-Jan-03 20:51 
GeneralRe: A question about TransmitFile Pin
Abbas_Riazi29-Jan-03 9:05
professionalAbbas_Riazi29-Jan-03 9:05 
Generaltwo or more classes with cross-reference Pin
Sergei Yevseyev28-Jan-03 20:47
Sergei Yevseyev28-Jan-03 20:47 
GeneralRe: two or more classes with cross-reference Pin
Joaquín M López Muñoz28-Jan-03 20:53
Joaquín M López Muñoz28-Jan-03 20:53 
GeneralRe: two or more classes with cross-reference Pin
Sergei Yevseyev28-Jan-03 21:12
Sergei Yevseyev28-Jan-03 21:12 
Questionget selected text from web page??? Pin
xxhimanshu28-Jan-03 20:18
xxhimanshu28-Jan-03 20:18 
AnswerRe: get selected text from web page??? Pin
jeremysay29-Jan-03 5:14
jeremysay29-Jan-03 5:14 
GeneralEmbedded Word Automation... Pin
Aswin Kumar28-Jan-03 20:09
Aswin Kumar28-Jan-03 20:09 
GeneralCOM and multithreading Pin
Shah Shehpori28-Jan-03 20:09
sussShah Shehpori28-Jan-03 20:09 
GeneralRe: COM and multithreading Pin
Hans Ruck29-Jan-03 2:22
Hans Ruck29-Jan-03 2:22 
General'CDocument::UpdateAllViews' : illegal call of non-static member function problem Pin
boon kian28-Jan-03 19:34
boon kian28-Jan-03 19:34 
GeneralRe: 'CDocument::UpdateAllViews' : illegal call of non-static member function problem Pin
trustno128-Jan-03 21:14
trustno128-Jan-03 21:14 
GeneralRe: 'CDocument::UpdateAllViews' : illegal call of non-static member function problem Pin
boon kian30-Jan-03 2:02
boon kian30-Jan-03 2:02 

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.