CWinApp::m_pszAppName
Specifica il nome dell'applicazione.
LPCTSTR m_pszAppName;
Note
Il nome dell'applicazione possono provenire dal parametro passato al costruttore CWinApp, o, se non specificata, nella stringa di risorsa con ID AFX_IDS_APP_TITLE.Se il nome dell'applicazione non viene trovato nella risorsa, viene fornito il nome file del PROGETTO del programma.
Restituito dalla funzione globale AfxGetAppName.m_pszAppName è una variabile pubblica di tipo const char*.
[!NOTA]
Se si assegna un valore a m_pszAppName, deve essere allocata dinamicamente nell'heap.Il distruttore CWinApp chiama free( ) con questo puntatore.Molti si desidera utilizzare la funzione della libreria di runtime _tcsdup( ) per effettuare l'allocazione.Inoltre, liberare la memoria associata al puntatore prima di assegnare un nuovo valore.Di seguito è riportato un esempio:
//First free the string allocated by MFC at CWinApp startup.
//The string is allocated before InitInstance is called.
free((void*)m_pszAppName);
//Change the name of the application file.
//The CWinApp destructor will free the memory.
m_pszAppName = _tcsdup(_T("c:\\somedir\\myapp.exe"));
Esempio
CWnd* pWnd = AfxGetMainWnd();
// Set pWnd to some CWnd object whose window has already
// been created.
// The following call to CWnd::MessageBox uses the application
// title as the message box caption.
pWnd->MessageBox(_T("Some message"), AfxGetApp()->m_pszAppName);
// A more direct way to get the application title is to
// call AfxGetAppName:
pWnd->MessageBox(_T("Some message"), AfxGetAppName());
// An easier way to display a message box using the application
// title as the message box caption is to call AfxMessageBox:
AfxMessageBox(_T("Some message"));
Requisiti
Header: afxwin.h