| 909 | } |
| 910 | |
| 911 | void CMainFrame::OnScriptPath() |
| 912 | { |
| 913 | CQPathDlg dlg; |
| 914 | dlg.m_strPath = m_strQPATH; |
| 915 | if (dlg.DoModal() == IDOK) |
| 916 | { |
| 917 | m_strQPATH = dlg.m_strPath; |
| 918 | CString set_qpath; |
| 919 | set_qpath.Format("QPATH=%s", m_strQPATH); |
| 920 | if (_putenv(set_qpath)) |
| 921 | AfxMessageBox(IDS_ENV_FULL); |
| 922 | } |
| 923 | } |
| 924 | |
| 925 | void CMainFrame::OnScriptPrompt() |
| 926 | { |
nothing calls this directly
no outgoing calls
no test coverage detected