End Google Ads 201810 - BS.net 01 --> Hi, dear all,

I have a MFC program which do some calculation, store in a file, then plot the results to a graphic on dialog.

Now I have another program which only want to use the calculation result stored in file from above MFC program but don't want to show the dialog, how can I do it?

I modify the codes in InitInstance() as below:

m_pMainWnd->ShowWindow(SW_HIDE);
m_pMainWnd->UpdateWindow();
return FALSE;

the dialog is not shown, but user still can see the dialog flush before hiding, how can I avoid it?

Thanks!