Click here to Skip to main content
15,896,348 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRe: load dll Pin
CPallini4-Sep-11 21:34
mveCPallini4-Sep-11 21:34 
AnswerRe: load dll Pin
Orjan Westin4-Sep-11 23:44
professionalOrjan Westin4-Sep-11 23:44 
AnswerRe: load dll Pin
Eugen Podsypalnikov5-Sep-11 3:24
Eugen Podsypalnikov5-Sep-11 3:24 
Questionmfc100u.lib Pin
columbos149274-Sep-11 2:10
columbos149274-Sep-11 2:10 
AnswerRe: mfc100u.lib Pin
enhzflep4-Sep-11 4:02
enhzflep4-Sep-11 4:02 
QuestionAdd new sheet in Excel using mfc... Pin
spalanivel3-Sep-11 21:42
spalanivel3-Sep-11 21:42 
AnswerRe: Add new sheet in Excel using mfc... Pin
_Flaviu8-Sep-11 5:37
_Flaviu8-Sep-11 5:37 
QuestionShowNotifyBaloon problem [modified] Pin
_Flaviu3-Sep-11 3:41
_Flaviu3-Sep-11 3:41 
I have the follow code :
C++
#if _MSC_VER > 1200
BOOL CMainFrame::ShowNotifyBaloon(LPCTSTR lpszBalloonTitle, LPCTSTR lpszBalloonMsg, DWORD dwIcon, UINT nTimeOut)
{
	ASSERT (dwIcon == NIIF_WARNING || dwIcon == NIIF_ERROR || dwIcon == NIIF_INFO || dwIcon == NIIF_NONE);

	NOTIFYICONDATA nid = {sizeof(NOTIFYICONDATA)};
	nid.uID			= 0;
	nid.hWnd		= m_hWnd;
	nid.dwInfoFlags	= dwIcon;
	nid.uFlags	   |= NIF_INFO;
	nid.uTimeout	= nTimeOut;
	nid.uCallbackMessage = WMU_TRAYNOTIFYICON;
	::strcpy(nid.szInfoTitle,lpszBalloonTitle);
	::strcpy(nid.szInfo,lpszBalloonMsg);

	return ::Shell_NotifyIcon(NIM_MODIFY,&nid);
}
#endif // _MSC_VER > 1200


// somewhere, in CMainFrame ...
ShowNotifyBaloon(_T("Info"),_T("Test message"),NIIF_INFO,5);

and the ShowNotifyBaloon method is calling because I verify that through a TRACE macro, but still, I don't see any baloon in system tray ( I have to mention that application is minimized in system tray ).
What I'm doing wrong ?

modified on Saturday, September 3, 2011 10:12 AM

AnswerRe: ShowNotifyBaloon problem Pin
Richard Andrew x643-Sep-11 8:48
professionalRichard Andrew x643-Sep-11 8:48 
GeneralRe: ShowNotifyBaloon problem Pin
_Flaviu3-Sep-11 8:55
_Flaviu3-Sep-11 8:55 
GeneralRe: ShowNotifyBaloon problem Pin
Chuck O'Toole3-Sep-11 9:20
Chuck O'Toole3-Sep-11 9:20 
GeneralRe: ShowNotifyBaloon problem Pin
Richard Andrew x643-Sep-11 9:27
professionalRichard Andrew x643-Sep-11 9:27 
AnswerRe: ShowNotifyBaloon problem Pin
MicroVirus4-Sep-11 3:12
MicroVirus4-Sep-11 3:12 
GeneralRe: ShowNotifyBaloon problem Pin
_Flaviu5-Sep-11 0:03
_Flaviu5-Sep-11 0:03 
GeneralRe: ShowNotifyBaloon problem Pin
MicroVirus5-Sep-11 11:06
MicroVirus5-Sep-11 11:06 
GeneralRe: ShowNotifyBaloon problem Pin
Chuck O'Toole5-Sep-11 15:07
Chuck O'Toole5-Sep-11 15:07 
GeneralRe: ShowNotifyBaloon problem Pin
_Flaviu5-Sep-11 19:25
_Flaviu5-Sep-11 19:25 
GeneralRe: ShowNotifyBaloon problem Pin
MicroVirus6-Sep-11 2:39
MicroVirus6-Sep-11 2:39 
GeneralRe: ShowNotifyBaloon problem Pin
MicroVirus6-Sep-11 2:36
MicroVirus6-Sep-11 2:36 
GeneralRe: ShowNotifyBaloon problem Pin
Chuck O'Toole6-Sep-11 4:03
Chuck O'Toole6-Sep-11 4:03 
GeneralRe: ShowNotifyBaloon problem Pin
_Flaviu6-Sep-11 8:46
_Flaviu6-Sep-11 8:46 
GeneralRe: ShowNotifyBaloon problem Pin
Chuck O'Toole6-Sep-11 10:16
Chuck O'Toole6-Sep-11 10:16 
GeneralRe: ShowNotifyBaloon problem Pin
Chuck O'Toole6-Sep-11 10:25
Chuck O'Toole6-Sep-11 10:25 
GeneralRe: ShowNotifyBaloon problem Pin
MicroVirus6-Sep-11 15:45
MicroVirus6-Sep-11 15:45 
GeneralRe: ShowNotifyBaloon problem Pin
_Flaviu7-Sep-11 7:15
_Flaviu7-Sep-11 7:15 

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.