Click here to Skip to main content
15,904,655 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: inverse function of SystemTimeToTzSpecificLocalTime() Pin
Stuart Dootson22-Jun-09 22:57
professionalStuart Dootson22-Jun-09 22:57 
AnswerRe: inverse function of SystemTimeToTzSpecificLocalTime() - OS = Win2K Pin
cmk23-Jun-09 10:42
cmk23-Jun-09 10:42 
QuestionUsing VS 2008 Pin
Deepu Antony22-Jun-09 20:28
Deepu Antony22-Jun-09 20:28 
AnswerRe: Using VS 2008 Pin
KarstenK22-Jun-09 21:31
mveKarstenK22-Jun-09 21:31 
GeneralRe: Using VS 2008 Pin
Deepu Antony22-Jun-09 21:32
Deepu Antony22-Jun-09 21:32 
AnswerRe: Using VS 2008 Pin
Stuart Dootson22-Jun-09 21:31
professionalStuart Dootson22-Jun-09 21:31 
GeneralRe: Using VS 2008 Pin
Deepu Antony22-Jun-09 21:38
Deepu Antony22-Jun-09 21:38 
GeneralRe: Using VS 2008 Pin
Stuart Dootson22-Jun-09 23:08
professionalStuart Dootson22-Jun-09 23:08 
GeneralRe: Using VS 2008 Pin
Deepu Antony22-Jun-09 23:57
Deepu Antony22-Jun-09 23:57 
QuestionMFC Pin
p_196022-Jun-09 19:47
p_196022-Jun-09 19:47 
AnswerRe: MFC Pin
Chandrasekharan P22-Jun-09 19:51
Chandrasekharan P22-Jun-09 19:51 
GeneralRe: MFC Pin
p_196022-Jun-09 20:02
p_196022-Jun-09 20:02 
GeneralRe: MFC Pin
Chandrasekharan P22-Jun-09 20:22
Chandrasekharan P22-Jun-09 20:22 
GeneralRe: MFC Pin
p_196022-Jun-09 20:33
p_196022-Jun-09 20:33 
AnswerRe: MFC Pin
Rajesh R Subramanian22-Jun-09 21:14
professionalRajesh R Subramanian22-Jun-09 21:14 
AnswerRe: MFC Pin
Hamid_RT22-Jun-09 22:19
Hamid_RT22-Jun-09 22:19 
QuestionPreventing Sleep (sometimes) Pin
Peter Weyzen22-Jun-09 14:44
Peter Weyzen22-Jun-09 14:44 
QuestionRe: Preventing Sleep (sometimes) Pin
David Crow22-Jun-09 17:20
David Crow22-Jun-09 17:20 
AnswerRe: Preventing Sleep (sometimes) Pin
Peter Weyzen22-Jun-09 17:38
Peter Weyzen22-Jun-09 17:38 
QuestionTrying to Create a Toolbar using the class ToolBar Pin
BobInNJ22-Jun-09 8:59
BobInNJ22-Jun-09 8:59 
AnswerRe: Trying to Create a Toolbar using the class ToolBar Pin
bolivar12322-Jun-09 9:30
bolivar12322-Jun-09 9:30 
GeneralRe: Trying to Create a Toolbar using the class ToolBar Pin
BobInNJ22-Jun-09 9:52
BobInNJ22-Jun-09 9:52 
GeneralRe: Trying to Create a Toolbar using the class ToolBar Pin
bolivar12322-Jun-09 10:12
bolivar12322-Jun-09 10:12 
You should not have to do anything special in the OnPaint.

Give this a try:

	if(!toolBar.Create(
		NULL,
		this,
		IDR_TOOLBAR,
		WS_CHILD | WS_VISIBLE | CBRS_TOP |  CBRS_FLYBY | CBRS_SIZE_DYNAMIC
		| CBRS_TOOLTIPS
		| CBRS_HIDE_INPLACE | CBRS_GRIPPER
		) ||
		!toolBar.LoadToolBar( IDR_TOOLBAR )
		)
	{
		TRACE0("Failed to create toolbar\n");
		return -1;      // fail to create
	}

toolBar.SetButtonStyle( 0, TBBS_CHECKBOX );
toolBar.SetButtonStyle( 1, TBBS_CHECKBOX );
toolBar.SetButtonStyle( 2, TBBS_CHECKBOX );
toolBar.SetButtonStyle( 3, TBBS_CHECKBOX );
toolBar.SetButtonStyle( 4, TBBS_CHECKBOX );
toolBar.SetButtonStyle( 5, TBBS_CHECKBOX );

const UINT idArray[] = {
IDM_LINES, IDM_RECTANGLES, IDM_ELLIPSES,
IDM_ENLARGE, IDM_ORG, IDM_RESET
};

BOOL status3 = toolBar.SetButtons( idArray, 6 );
toolBar.UpdateWindow();
BOOL status4 = toolBar.ShowWindow( SW_SHOW );
toolBar.Invalidate();
this->Invalidate();

GeneralRe: Trying to Create a Toolbar using the class ToolBar [modified] Pin
BobInNJ22-Jun-09 10:50
BobInNJ22-Jun-09 10:50 
QuestionGeneric Specialized Template Definitions Pin
Skippums22-Jun-09 8:42
Skippums22-Jun-09 8:42 

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.