Click here to Skip to main content
15,902,917 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: str length Pin
VC++Maniac29-Jan-09 19:20
VC++Maniac29-Jan-09 19:20 
GeneralRe: str length Pin
Nishad S29-Jan-09 19:42
Nishad S29-Jan-09 19:42 
Question[Message Deleted] Pin
Alex@9C29-Jan-09 18:01
Alex@9C29-Jan-09 18:01 
AnswerRe: Arabic string format issue Pin
Joseph Marzbani29-Jan-09 20:37
Joseph Marzbani29-Jan-09 20:37 
GeneralRe: Arabic string format issue Pin
Alex@9C29-Jan-09 20:53
Alex@9C29-Jan-09 20:53 
QuestionHide Dialog Application Pin
Davitor29-Jan-09 17:36
Davitor29-Jan-09 17:36 
AnswerRe: Hide Dialog Application Pin
Naveen29-Jan-09 17:50
Naveen29-Jan-09 17:50 
GeneralRe: Hide Dialog Application Pin
Davitor29-Jan-09 18:11
Davitor29-Jan-09 18:11 
ok
I am useing code in abc.cpp class in this function
BOOL CABCApp::InitInstance()
{  
CABCDlg dlg;
	m_pMainWnd = &dlg;
	INT_PTR nResponse;

	if (m_lpCmdLine[0] == _T('h'))
   {

		dlg.Create( CABCDlg::IDD ); 
		dlg.ShowWindow(SW_HIDE );
		nResponse = dlg.RunModalLoop();
		

     
   }
	
	else
	{
		

		
		
		nResponse = dlg.DoModal();

		


	if (nResponse == IDOK)
	{

	}
	else if (nResponse == IDCANCEL)
	{

	}
	}
}

Plz help me
GeneralRe: Hide Dialog Application Pin
Naveen29-Jan-09 18:13
Naveen29-Jan-09 18:13 
GeneralRe: Hide Dialog Application Pin
Davitor29-Jan-09 18:27
Davitor29-Jan-09 18:27 
GeneralRe: Hide Dialog Application Pin
Naveen29-Jan-09 18:30
Naveen29-Jan-09 18:30 
GeneralRe: Hide Dialog Application Pin
Davitor29-Jan-09 18:43
Davitor29-Jan-09 18:43 
GeneralRe: Hide Dialog Application Pin
Naveen29-Jan-09 18:52
Naveen29-Jan-09 18:52 
GeneralRe: Hide Dialog Application Pin
Davitor29-Jan-09 18:54
Davitor29-Jan-09 18:54 
GeneralRe: Hide Dialog Application Pin
David Crow30-Jan-09 4:21
David Crow30-Jan-09 4:21 
QuestionRelacing the image in CImageList contl Pin
gopalraja29-Jan-09 17:19
gopalraja29-Jan-09 17:19 
AnswerRe: Relacing the image in CImageList contl Pin
ATM@CodeProject29-Jan-09 17:36
ATM@CodeProject29-Jan-09 17:36 
GeneralRe: Relacing the image in CImageList contl Pin
gopalraja29-Jan-09 18:13
gopalraja29-Jan-09 18:13 
GeneralRe: Relacing the image in CImageList contl Pin
gopalraja30-Jan-09 0:47
gopalraja30-Jan-09 0:47 
GeneralRe: Relacing the image in CImageList contl Pin
gopalraja30-Jan-09 16:59
gopalraja30-Jan-09 16:59 
AnswerRe: Relacing the image in CImageList contl Pin
Naveen29-Jan-09 18:05
Naveen29-Jan-09 18:05 
GeneralRe: Relacing the image in CImageList contl Pin
gopalraja30-Jan-09 1:14
gopalraja30-Jan-09 1:14 
QuestionHow to pass CMap as argument between the functions? Pin
mikert_200829-Jan-09 16:28
mikert_200829-Jan-09 16:28 
AnswerRe: How to pass CMap as argument between the functions? Pin
Naveen29-Jan-09 16:45
Naveen29-Jan-09 16:45 
AnswerRe: How to pass CMap as argument between the functions? Pin
Nishad S29-Jan-09 19:14
Nishad S29-Jan-09 19:14 

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.