Click here to Skip to main content
15,895,370 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
Generalin>>hex>>a + istringstream = Trouble! Pin
Paracelsus__12-Aug-04 3:08
Paracelsus__12-Aug-04 3:08 
GeneralRe: in>>hex>>a + istringstream = Trouble! Pin
darkbyte25-Aug-04 10:27
darkbyte25-Aug-04 10:27 
Generallinux C++ Pin
morrird11-Aug-04 8:23
morrird11-Aug-04 8:23 
QuestionBest IDE for WTL? Pin
rob agar11-Aug-04 2:00
rob agar11-Aug-04 2:00 
General[ Parse Data file & put the data into vector] Pin
Member 128563310-Aug-04 1:03
Member 128563310-Aug-04 1:03 
GeneralRe: [ Parse Data file & put the data into vector] Pin
Nitron26-Aug-04 5:09
Nitron26-Aug-04 5:09 
GeneralToolbar with trucolor bitmap buttons Pin
Mandalay8-Aug-04 3:56
Mandalay8-Aug-04 3:56 
GeneralRe: Toolbar with trucolor bitmap buttons Pin
Mandalay8-Aug-04 7:33
Mandalay8-Aug-04 7:33 
i do it only with editing atlframe.h

i changed some code, if we are not in WIN_CE block

[code]
/*
ATLASSERT(false);
TBADDBITMAP tbab = { 0 };
tbab.hInst = hInst;
tbab.nID = nResourceID;
::SendMessage(hWnd, TB_ADDBITMAP, nBmp, (LPARAM)&tbab);
*/

HBITMAP hBmp = LoadBitmap( hInst, MAKEINTRESOURCE(nResourceID) );
HIMAGELIST hImageList = ImageList_Create( pData->wWidth, pData->wWidth,
ILC_COLOR32, pData->wItemCount, 0 );

ImageList_Add( hImageList, hBmp, (HBITMAP)NULL );
::SendMessage(hWnd, TB_SETIMAGELIST, 0, (LPARAM)hImageList);
[/code]
====================

maybe there is some other way ? Smile | :)

----------------------------
never stop coding.
GeneralRe: Toolbar with trucolor bitmap buttons Pin
Tom J10-Aug-04 22:31
Tom J10-Aug-04 22:31 
QuestionHow to make tool bar for outlook express Pin
curious_keen7-Aug-04 1:10
curious_keen7-Aug-04 1:10 
QuestionHow to make tool bar for outlook express Pin
curious_keen7-Aug-04 1:09
curious_keen7-Aug-04 1:09 
GeneralAlex Kolesnichenko's "Building Rich COMponents with Attributed ATL" Pin
Rob Severin6-Aug-04 15:13
Rob Severin6-Aug-04 15:13 
GeneralPre-Allocating stl maps / multimaps Pin
Jabin Reinhold4-Aug-04 4:35
Jabin Reinhold4-Aug-04 4:35 
GeneralRe: Pre-Allocating stl maps / multimaps Pin
gokings9-Aug-04 2:17
gokings9-Aug-04 2:17 
GeneralRe: Pre-Allocating stl maps / multimaps Pin
gokings9-Aug-04 8:03
gokings9-Aug-04 8:03 
GeneralRe: Pre-Allocating stl maps / multimaps Pin
Jörgen Sigvardsson20-Aug-04 9:32
Jörgen Sigvardsson20-Aug-04 9:32 
QuestionVC6 compiler limits with STL's mem_fun? Pin
T.T.H.28-Jul-04 23:03
T.T.H.28-Jul-04 23:03 
AnswerRe: VC6 compiler limits with STL's mem_fun? Pin
Kevin McFarlane7-Aug-04 8:16
Kevin McFarlane7-Aug-04 8:16 
GeneralATL Composite Control print - HOW TO Pin
VKatti27-Jul-04 5:56
VKatti27-Jul-04 5:56 
Generalconflict between ATL and MFC Pin
Anonymous25-Jul-04 20:57
Anonymous25-Jul-04 20:57 
GeneralRe: conflict between ATL and MFC Pin
Kevin McFarlane7-Aug-04 3:14
Kevin McFarlane7-Aug-04 3:14 
GeneralRe: conflict between ATL and MFC Pin
Jörgen Sigvardsson7-Aug-04 7:57
Jörgen Sigvardsson7-Aug-04 7:57 
GeneralRe: conflict between ATL and MFC Pin
gokings9-Aug-04 2:22
gokings9-Aug-04 2:22 
GeneralRe: conflict between ATL and MFC Pin
Kevin McFarlane28-Aug-04 0:18
Kevin McFarlane28-Aug-04 0:18 
QuestionHow to map WM_CHAR messages for a modeless dialog Pin
asimeqi23-Jul-04 11:16
asimeqi23-Jul-04 11:16 

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.