Click here to Skip to main content
15,919,479 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionDirectShow Editing Services transition and effect priority problem... Pin
Kramer_198223-Sep-05 1:21
Kramer_198223-Sep-05 1:21 
Question::LoadBitmap Pin
Laffis23-Sep-05 1:10
Laffis23-Sep-05 1:10 
AnswerRe: ::LoadBitmap Pin
Cedric Moonen23-Sep-05 1:23
Cedric Moonen23-Sep-05 1:23 
GeneralRe: ::LoadBitmap Pin
Laffis23-Sep-05 1:41
Laffis23-Sep-05 1:41 
GeneralRe: ::LoadBitmap Pin
Cedric Moonen23-Sep-05 2:01
Cedric Moonen23-Sep-05 2:01 
GeneralRe: ::LoadBitmap Pin
Laffis23-Sep-05 2:40
Laffis23-Sep-05 2:40 
QuestionContext menu in TreeView control ?? Pin
Anonymous23-Sep-05 1:04
Anonymous23-Sep-05 1:04 
AnswerRe: Context menu in TreeView control ?? Pin
khan++23-Sep-05 1:27
khan++23-Sep-05 1:27 
There is an event for the TreeCtrl.
NM_RCLICK
You need to handle this notification message.

To show the context menu on it:
CMenu m;<br />
CMenu* p;<br />
m.LoadMenu(IDR_MENU1); //menu id here.<br />
p = m.GetSubMenu(0);<br />
CPoint pt;<br />
GetCursorPos(&pt);<br />
p->TrackPopupMenu(0,pt.x,pt.y,this,NULL); //have a look at the first parameter of this function. Use the correct parameters.




this is this.
GeneralRe: Context menu in TreeView control ?? Pin
Anonymous23-Sep-05 23:09
Anonymous23-Sep-05 23:09 
QuestionMDI without initial window Pin
tooho23-Sep-05 1:01
tooho23-Sep-05 1:01 
AnswerRe: MDI without initial window Pin
prasad_som23-Sep-05 1:56
prasad_som23-Sep-05 1:56 
AnswerRe: MDI without initial window Pin
vikas amin23-Sep-05 1:57
vikas amin23-Sep-05 1:57 
GeneralRe: MDI without initial window Pin
tooho23-Sep-05 3:26
tooho23-Sep-05 3:26 
Questionstd::multimap & std::find() Pin
Themis23-Sep-05 0:06
Themis23-Sep-05 0:06 
AnswerOfftopic Pin
Jörgen Sigvardsson23-Sep-05 0:30
Jörgen Sigvardsson23-Sep-05 0:30 
GeneralRe: Offtopic Pin
Themis23-Sep-05 2:47
Themis23-Sep-05 2:47 
QuestionLinker Error Pin
rajeevktripathi22-Sep-05 23:43
rajeevktripathi22-Sep-05 23:43 
AnswerRe: Linker Error Pin
ThatsAlok23-Sep-05 0:05
ThatsAlok23-Sep-05 0:05 
AnswerRe: Linker Error Pin
MailtoGops23-Sep-05 0:11
MailtoGops23-Sep-05 0:11 
QuestionProgram Deployment Pin
mikobi22-Sep-05 23:19
mikobi22-Sep-05 23:19 
AnswerRe: Program Deployment Pin
Mircea Puiu23-Sep-05 2:52
Mircea Puiu23-Sep-05 2:52 
Questioninitialize stl map in static scope Pin
yccheok22-Sep-05 23:10
yccheok22-Sep-05 23:10 
AnswerRe: initialize stl map in static scope Pin
toxcct22-Sep-05 23:22
toxcct22-Sep-05 23:22 
GeneralRe: initialize stl map in static scope Pin
Cedric Moonen22-Sep-05 23:46
Cedric Moonen22-Sep-05 23:46 
GeneralRe: initialize stl map in static scope Pin
toxcct22-Sep-05 23:52
toxcct22-Sep-05 23:52 

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.