Click here to Skip to main content
15,889,116 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: VC++ 2005 Express Beta with Windows Platform SDK? Pin
Lord Kixdemp11-Sep-05 17:47
Lord Kixdemp11-Sep-05 17:47 
GeneralRe: VC++ 2005 Express Beta with Windows Platform SDK? Pin
Christian Graus11-Sep-05 18:46
protectorChristian Graus11-Sep-05 18:46 
GeneralRe: VC++ 2005 Express Beta with Windows Platform SDK? Pin
Lord Kixdemp12-Sep-05 10:13
Lord Kixdemp12-Sep-05 10:13 
GeneralRe: VC++ 2005 Express Beta with Windows Platform SDK? Pin
Christian Graus12-Sep-05 12:01
protectorChristian Graus12-Sep-05 12:01 
GeneralRe: VC++ 2005 Express Beta with Windows Platform SDK? Pin
Lord Kixdemp12-Sep-05 12:12
Lord Kixdemp12-Sep-05 12:12 
QuestionDisable popup menu in Macromedia Flash ActiveX Pin
johnnyXP11-Sep-05 12:31
johnnyXP11-Sep-05 12:31 
AnswerRe: Disable popup menu in Macromedia Flash ActiveX Pin
nguyenvhn11-Sep-05 14:12
nguyenvhn11-Sep-05 14:12 
GeneralRe: Disable popup menu in Macromedia Flash ActiveX Pin
johnnyXP12-Sep-05 2:22
johnnyXP12-Sep-05 2:22 
I found a solution (may be little amateuristic, but works). Generate an MFC class fown Shockwave Flash ActiveX. Override the PreTranslateMessage:

<br />
BOOL CShockwaveFlash::PreTranslateMessage(MSG* pMsg)<br />
{<br />
	// TODO: Add your specialized code here and/or call the base class<br />
	if(pMsg->message == WM_RBUTTONDOWN)<br />
	{<br />
                //Wow wasn't right click dude!<br />
		pMsg->message = WM_LBUTTONDOWN;<br />
	}<br />
<br />
	return CWnd::PreTranslateMessage(pMsg);<br />
}<br />


The job is done!
QuestionPrinter Driver Pin
Ghasrfakhri11-Sep-05 9:27
Ghasrfakhri11-Sep-05 9:27 
Questionhow can I Create an Office plugin? Pin
Ghasrfakhri11-Sep-05 9:24
Ghasrfakhri11-Sep-05 9:24 
AnswerRe: how can I Create an Office plugin? Pin
ThiefXXX11-Sep-05 11:34
ThiefXXX11-Sep-05 11:34 
QuestionWebbrowser Pin
RaymondM11-Sep-05 9:15
RaymondM11-Sep-05 9:15 
QuestionC++ question Pin
Sveta8011-Sep-05 7:44
Sveta8011-Sep-05 7:44 
AnswerRe: C++ question Pin
Nemanja Trifunovic11-Sep-05 7:59
Nemanja Trifunovic11-Sep-05 7:59 
AnswerRe: C++ question Pin
PJ Arends11-Sep-05 9:52
professionalPJ Arends11-Sep-05 9:52 
GeneralRe: C++ question Pin
Sveta8011-Sep-05 10:36
Sveta8011-Sep-05 10:36 
GeneralRe: C++ question Pin
Marc Clifton11-Sep-05 12:09
mvaMarc Clifton11-Sep-05 12:09 
GeneralRe: C++ question Pin
PJ Arends11-Sep-05 12:35
professionalPJ Arends11-Sep-05 12:35 
GeneralRe: C++ question Pin
Marc Clifton11-Sep-05 13:48
mvaMarc Clifton11-Sep-05 13:48 
GeneralRe: C++ question Pin
PJ Arends11-Sep-05 19:28
professionalPJ Arends11-Sep-05 19:28 
GeneralRe: C++ question Pin
Christian Graus11-Sep-05 12:46
protectorChristian Graus11-Sep-05 12:46 
GeneralRe: C++ question Pin
Marc Clifton11-Sep-05 13:49
mvaMarc Clifton11-Sep-05 13:49 
GeneralRe: C++ question Pin
Christian Graus11-Sep-05 13:53
protectorChristian Graus11-Sep-05 13:53 
GeneralRe: C++ question Pin
Nemanja Trifunovic12-Sep-05 2:26
Nemanja Trifunovic12-Sep-05 2:26 
GeneralRe: C++ question Pin
Nemanja Trifunovic12-Sep-05 2:30
Nemanja Trifunovic12-Sep-05 2:30 

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.