From: B.S on
i am tring creat popup menu, it is creating but it is veri slim even
imposible to see.
pleas help

case NM_RCLICK:
{
POINT p;
GetCursorPos(&p);
HMENU menu=CreateMenu();

AppendMenu(menu,MF_STRING,ID_ADD,"Add");
AppendMenu(menu,MF_STRING,ID_RUN,"Run");
AppendMenu(menu,MF_SEPARATOR,0,"");
AppendMenu(menu,MF_STRING,ID_DELETE,"Dlete");

TrackPopupMenuEx(menu, TPM_BOTTOMALIGN | TPM_LEFTALIGN,p.x,p.y,hwnd,
0);
}
From: Timo Kunze on
Use CreatePopupMenu instead of CreateMenu.

Timo
--
www.TimoSoft-Software.de - Unicode controls for VB6
"Those who sacrifice freedom for safety deserve neither."
"Demokratie ist per Definition unsicher. Ihr Schutz entsteht aus der
Überzeugung, dass die demokratischen Kräfte überwiegen und sich – auf
demokratischem Wege – durchsetzen."
From: B.S on
Thanks very muchrchsetzen.