Click here to Skip to main content
15,910,210 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questionhow to allow horizontal scroll for picture or custom control? Pin
cyn810-Dec-06 1:39
cyn810-Dec-06 1:39 
AnswerRe: how to allow horizontal scroll for picture or custom control? Pin
Hamid_RT10-Dec-06 6:43
Hamid_RT10-Dec-06 6:43 
GeneralRe: how to allow horizontal scroll for picture or custom control? Pin
cyn810-Dec-06 13:34
cyn810-Dec-06 13:34 
QuestionAny help to merge multiple PDFs in a single PDF: Using any thing like VC++ or VB Pin
helpcode10-Dec-06 1:16
helpcode10-Dec-06 1:16 
QuestionHow can i play a wma file? Pin
Sina Parastgary9-Dec-06 19:18
Sina Parastgary9-Dec-06 19:18 
AnswerRe: How can i play a wma file? Pin
Mark Salsbery10-Dec-06 5:48
Mark Salsbery10-Dec-06 5:48 
Questionany idea to use CToolBar in this way? Pin
includeh109-Dec-06 6:38
includeh109-Dec-06 6:38 
AnswerRe: any idea to use CToolBar in this way? Pin
Mark Salsbery9-Dec-06 7:08
Mark Salsbery9-Dec-06 7:08 
A toolbar sends a NM_RCLICK notification through a WM_NOTIFY message when the user right-clicks
on the toolbar. To get the message in your parent window, add a OnNotify() override to the
parent's class, something like:
BOOL CMyWnd::OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult)
{
	if (wParam == ID_MYTOOLBAR)
	{
		NMMOUSE *pNMMouse = (NMMOUSE *)lParam; 
 
		if (pNMMouse->hdr.code == NM_RCLICK)
		{
			//process right click
 
			return TRUE;
		}
	}
 
	return CWnd::OnNotify(wParam, lParam, pResult);
}

AnswerRe: any idea to use CToolBar in this way? Pin
Mark Salsbery9-Dec-06 8:09
Mark Salsbery9-Dec-06 8:09 
Questionhelp reading integer string "Zero-based index of the button string" Pin
swarup9-Dec-06 5:56
swarup9-Dec-06 5:56 
AnswerRe: help reading integer string "Zero-based index of the button string" Pin
includeh109-Dec-06 6:43
includeh109-Dec-06 6:43 
GeneralRe: help reading integer string "Zero-based index of the button string" Pin
swarup11-Dec-06 20:03
swarup11-Dec-06 20:03 
QuestionHow to change a specific color of an image ? Pin
SearchDream9-Dec-06 4:54
SearchDream9-Dec-06 4:54 
AnswerRe: How to change a specific color of an image ? Pin
Hamid_RT9-Dec-06 5:40
Hamid_RT9-Dec-06 5:40 
QuestionHow to use a unicode charset dll in any vc++ Pin
sAbhishek9-Dec-06 2:42
sAbhishek9-Dec-06 2:42 
AnswerRe: How to use a unicode charset dll in any vc++ Pin
karle10-Dec-06 7:55
karle10-Dec-06 7:55 
Questionframe/border for captionless rounded rectangular dialog Pin
Super Hornet9-Dec-06 2:32
Super Hornet9-Dec-06 2:32 
AnswerRe: frame/border for captionless rounded rectangular dialog Pin
Waldermort9-Dec-06 2:47
Waldermort9-Dec-06 2:47 
GeneralRe: frame/border for captionless rounded rectangular dialog Pin
Super Hornet9-Dec-06 3:14
Super Hornet9-Dec-06 3:14 
QuestionGetting a notification message Pin
Taruni9-Dec-06 0:37
Taruni9-Dec-06 0:37 
AnswerRe: Getting a notification message Pin
Mark Salsbery9-Dec-06 7:29
Mark Salsbery9-Dec-06 7:29 
QuestionHANDLE of a window Pin
RockyJames9-Dec-06 0:28
RockyJames9-Dec-06 0:28 
AnswerRe: HANDLE of a window Pin
includeh109-Dec-06 3:09
includeh109-Dec-06 3:09 
AnswerRe: HANDLE of a window Pin
Hamid_RT9-Dec-06 5:47
Hamid_RT9-Dec-06 5:47 
AnswerRe: HANDLE of a window Pin
James R. Twine9-Dec-06 11:00
James R. Twine9-Dec-06 11:00 

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.