Click here to Skip to main content
15,899,475 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
General(help) Unicode and text files Pin
necroleak5-Nov-04 6:47
sussnecroleak5-Nov-04 6:47 
GeneralRe: (help) Unicode and text files Pin
peterchen5-Nov-04 23:56
peterchen5-Nov-04 23:56 
GeneralRemoving signature from a dll Pin
wrykyn5-Nov-04 6:03
wrykyn5-Nov-04 6:03 
GeneralOwner Drawn Button Pin
Timothy Grabrian5-Nov-04 5:47
professionalTimothy Grabrian5-Nov-04 5:47 
GeneralRe: Owner Drawn Button Pin
Antony M Kancidrowski5-Nov-04 6:12
Antony M Kancidrowski5-Nov-04 6:12 
GeneralRe: Owner Drawn Button Pin
Timothy Grabrian5-Nov-04 7:12
professionalTimothy Grabrian5-Nov-04 7:12 
GeneralRe: Owner Drawn Button Pin
John R. Shaw5-Nov-04 10:30
John R. Shaw5-Nov-04 10:30 
GeneralContext menu on system tray icon Pin
lillah5-Nov-04 4:31
lillah5-Nov-04 4:31 
Hi!
I want a context menu when I click over my icon so I've done:
...
NOTIFYICONDATA icon;

icon.cbSize = sizeof(NOTIFYICONDATA);
icon.hWnd = hWnd;
icon.uID = Id;
icon.uFlags = NIF_MESSAGE|NIF_ICON;
icon.uCallbackMessage = WM_ICON_NOTIFY;
icon.uFlags = NIF_MESSAGE|NIF_ICON|NIF_TIP;
icon.hIcon=LoadIcon(hInst,MAKEINTRESOURCE(Id));

Shell_NotifyIcon(NIM_ADD, &icon);

...

(WndProc)

case WM_ICON_NOTIFY:
hMenu = LoadMenu(hInst,(LPCTSTR)IDR_MENU1);


if (lParam == WM_RBUTTONDOWN)
{
GetCursorPos(&pos);
if (!SetForegroundWindow(hWnd)) return 0;
TrackPopupMenu (hMenu, TPM_NONOTIFY | TPM_RETURNCMD | TPM_LEFTBUTTON,
pos.x, pos.y, 0, hWnd, NULL);
PostMessage(hWnd, WM_NULL, 0, 0);
}
break;

I suppose i'm doing it not too well Sigh | :sigh: because it doesn't works.
Can anyone help me? Thanks.
GeneralRe: Context menu on system tray icon Pin
lillah6-Nov-04 5:28
lillah6-Nov-04 5:28 
GeneralRe: Context menu on system tray icon Pin
ThatsAlok6-Nov-04 18:12
ThatsAlok6-Nov-04 18:12 
GeneralRe: Context menu on system tray icon Pin
lillah8-Nov-04 6:13
lillah8-Nov-04 6:13 
GeneralAccessing main form from functions in other classes Pin
PaJamaMan815-Nov-04 3:56
PaJamaMan815-Nov-04 3:56 
GeneralRe: Accessing main form from functions in other classes Pin
RChin5-Nov-04 4:35
RChin5-Nov-04 4:35 
GeneralHelp me plase :: Math Class Pin
Anonymous5-Nov-04 3:49
Anonymous5-Nov-04 3:49 
GeneralRe: Help me plase :: Math Class Pin
Per Svedensten5-Nov-04 4:01
Per Svedensten5-Nov-04 4:01 
GeneralRe: Help me plase :: Math Class Pin
Arsalan Malik5-Nov-04 16:49
Arsalan Malik5-Nov-04 16:49 
Generaltalha rehman here Pin
Talha Rehman6-Nov-04 10:20
Talha Rehman6-Nov-04 10:20 
GeneralHelp me plase :: Array of CString Pin
TooLeeDiN5-Nov-04 3:44
TooLeeDiN5-Nov-04 3:44 
GeneralRe: Help me plase :: Array of CString Pin
Maximilien5-Nov-04 3:53
Maximilien5-Nov-04 3:53 
GeneralRe: Help me plase :: Array of CString Pin
Kevin McFarlane5-Nov-04 4:54
Kevin McFarlane5-Nov-04 4:54 
GeneralFile size on disk Pin
Fred_1235-Nov-04 3:21
Fred_1235-Nov-04 3:21 
GeneralRe: File size on disk Pin
David Crow5-Nov-04 5:20
David Crow5-Nov-04 5:20 
GeneralRe: File size on disk Pin
Arsalan Malik5-Nov-04 16:51
Arsalan Malik5-Nov-04 16:51 
GeneralRe: File size on disk Pin
David Crow8-Nov-04 6:19
David Crow8-Nov-04 6:19 
Generalcountact to the server Pin
basharRSB5-Nov-04 2:59
basharRSB5-Nov-04 2:59 

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.