Click here to Skip to main content
15,887,676 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRe: X25 Connection Pin
prasad_som16-Jan-07 2:04
prasad_som16-Jan-07 2:04 
AnswerRe: X25 Connection Pin
Hamid_RT16-Jan-07 4:37
Hamid_RT16-Jan-07 4:37 
QuestionMDI display Pin
shobha Nanjundaiah15-Jan-07 22:05
shobha Nanjundaiah15-Jan-07 22:05 
AnswerRe: MDI display Pin
Rage16-Jan-07 1:35
professionalRage16-Jan-07 1:35 
AnswerRe: MDI display Pin
#realJSOP16-Jan-07 2:25
mve#realJSOP16-Jan-07 2:25 
QuestionHow to run project in c++ in .net Pin
Imran Khan Pathan15-Jan-07 21:38
Imran Khan Pathan15-Jan-07 21:38 
AnswerRe: How to run project in c++ in .net Pin
toxcct15-Jan-07 21:47
toxcct15-Jan-07 21:47 
QuestionWindow Minimization problem Pin
pri_skit15-Jan-07 21:19
pri_skit15-Jan-07 21:19 
Hi,

i am using ShellExecuteEx function in an Embeded VC++(MFC Based) to run other application(not MFC) but its Window not get

Minimized though i am passing ShExecInfo.nShow = SW_MINIMIZE parameter. My Code is:
BOOL CSBCApp::InitInstance()
{
CMainFrame* pFrame = new CMainFrame;
m_pMainWnd = pFrame;
pFrame->LoadFrame(IDR_MAINFRAME, WS_OVERLAPPEDWINDOW | FWS_ADDTOTITLE, NULL, NULL);

SHELLEXECUTEINFO ShExecInfo = {0};
ShExecInfo.cbSize = sizeof(SHELLEXECUTEINFO);
ShExecInfo.fMask = SEE_MASK_NOCLOSEPROCESS;
ShExecInfo.hwnd = NULL;
ShExecInfo.lpVerb = NULL;
ShExecInfo.lpFile = _T("Disk\\MyTest.exe");
ShExecInfo.lpParameters = _T("");
ShExecInfo.lpDirectory = NULL;
ShExecInfo.nShow = SW_MINIMIZE;
ShExecInfo.hInstApp = NULL;
bool ReturnType=ShellExecuteEx(&ShExecInfo);
// The one and only window has been initialized, so show and update it.
pFrame->ShowWindow(m_nCmdShow);
pFrame->UpdateWindow();
return TRUE;
}


Warm Regards,

priyank

AnswerRe: Window Minimization problem Pin
prasad_som15-Jan-07 21:40
prasad_som15-Jan-07 21:40 
GeneralRe: Window Minimization problem Pin
pri_skit15-Jan-07 22:28
pri_skit15-Jan-07 22:28 
GeneralRe: Window Minimization problem Pin
prasad_som15-Jan-07 22:37
prasad_som15-Jan-07 22:37 
GeneralRe: Window Minimization problem Pin
Rajesh R Subramanian15-Jan-07 22:43
professionalRajesh R Subramanian15-Jan-07 22:43 
AnswerRe: Window Minimization problem Pin
MuraliKrishnaP16-Jan-07 1:47
MuraliKrishnaP16-Jan-07 1:47 
GeneralRe: Window Minimization problem Pin
pri_skit16-Jan-07 2:46
pri_skit16-Jan-07 2:46 
QuestionUnresolved external symbol in vc++ Pin
harshadha15-Jan-07 21:17
harshadha15-Jan-07 21:17 
AnswerRe: Unresolved external symbol in vc++ Pin
prasad_som15-Jan-07 21:36
prasad_som15-Jan-07 21:36 
GeneralRe: Unresolved external symbol in vc++ Pin
harshadha15-Jan-07 22:35
harshadha15-Jan-07 22:35 
QuestionPrinter DC Pin
KKumarTG15-Jan-07 20:38
KKumarTG15-Jan-07 20:38 
AnswerRe: Printer DC Pin
Hamid_RT15-Jan-07 20:52
Hamid_RT15-Jan-07 20:52 
GeneralRe: Printer DC Pin
KKumarTG15-Jan-07 22:11
KKumarTG15-Jan-07 22:11 
GeneralRe: Printer DC Pin
Hamid_RT16-Jan-07 1:37
Hamid_RT16-Jan-07 1:37 
GeneralRe: Printer DC Pin
KKumarTG23-Jan-07 17:03
KKumarTG23-Jan-07 17:03 
GeneralRe: Printer DC Pin
Hamid_RT24-Jan-07 18:00
Hamid_RT24-Jan-07 18:00 
AnswerRe: Printer DC Pin
Iain Clarke, Warrior Programmer15-Jan-07 22:43
Iain Clarke, Warrior Programmer15-Jan-07 22:43 
GeneralRe: Printer DC Pin
KKumarTG15-Jan-07 23:00
KKumarTG15-Jan-07 23:00 

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.