I have a MFC GUI application. Now I have to execute this exe from commmand prompt with parameter.I need to know where I have to change the code in order that it use parameter from cmd.
When I debug the code the control comes here:
CConnectDlg::CConnectDlg(CWnd* pParent /*=NULL*/)
: CDialog(CConnectDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CConnectDlg)
m_ul_Timeout = DEFAULT_TIMEOUT;
}
So I think I have to change here. Please suggest.