Click here to Skip to main content
15,907,497 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
AnswerRe: ATL Add-In and MFC DLL communication problem? Pin
Roger Stoltz23-Jan-09 6:07
Roger Stoltz23-Jan-09 6:07 
GeneralRe: ATL Add-In and MFC DLL communication problem? Pin
SNI29-Jan-09 2:12
SNI29-Jan-09 2:12 
GeneralRe: ATL Add-In and MFC DLL communication problem? Pin
Roger Stoltz29-Jan-09 3:14
Roger Stoltz29-Jan-09 3:14 
GeneralRe: ATL Add-In and MFC DLL communication problem? Pin
SNI30-Jan-09 2:16
SNI30-Jan-09 2:16 
GeneralRe: ATL Add-In and MFC DLL communication problem? Pin
SNI20-Feb-09 0:26
SNI20-Feb-09 0:26 
QuestionHow to deal with "Currently ATL objects may only be added to ATL projects, or certain types of MFC projects (EXE, Control, Regular DLL)."? Pin
huangdingjun21-Jan-09 14:51
huangdingjun21-Jan-09 14:51 
AnswerRe: How to deal with "Currently ATL objects may only be added to ATL projects, or certain types of MFC projects (EXE, Control, Regular DLL)."? Pin
Stuart Dootson21-Jan-09 21:26
professionalStuart Dootson21-Jan-09 21:26 
Questionneed help with wtl 8 owner drawn controls Pin
Babil_JR21-Jan-09 5:25
Babil_JR21-Jan-09 5:25 
hi all,
i need help for making a CTrackBarCtrl transparent.
followed various threads around, but still haven't found
a working answer.
I have a template class:

template <class t=""> class CTrackBarTransparentT : public CWindowImpl<ctrackbartransparentt><t>,CTrackBarCtrl>
{...}

with handled WM_ERASEBKGND and WM_PAINT:

...
HDC dc = (HDC)wParam;
HBRUSH hbrOld = NULL;
HBRUSH hbr = NULL;
hbr = (HBRUSH)GetStockObject(HOLLOW_BRUSH);
//hbr = CreateSolidBrush(RGB(255,0,0)); //to impart color
hbrOld = (HBRUSH)SelectObject(dc, hbr);
RECT rc;
GetClipBox(dc, &rc);
PatBlt (dc , rc.left, rc.top, rc.right - rc.left , rc.bottom - rc.top,PATCOPY);
SelectObject(dc, hbrOld);
...

but this got no effect...
i think that the point should be to paint with an hollow brush, but this doesn't seems to
work for me.

Thanks in advance
AnswerRe: need help with wtl 8 owner drawn controls Pin
Stuart Dootson21-Jan-09 6:26
professionalStuart Dootson21-Jan-09 6:26 
Questionexports enum from COM Pin
vijay.victory20-Jan-09 22:13
vijay.victory20-Jan-09 22:13 
AnswerRe: exports enum from COM Pin
Jonathan Davies21-Jan-09 0:05
Jonathan Davies21-Jan-09 0:05 
GeneralRe: exports enum from COM Pin
Jonathan Davies21-Jan-09 0:28
Jonathan Davies21-Jan-09 0:28 
GeneralRe: exports enum from COM Pin
vijay.victory21-Jan-09 2:26
vijay.victory21-Jan-09 2:26 
AnswerRe: exports enum from COM Pin
Stuart Dootson21-Jan-09 0:07
professionalStuart Dootson21-Jan-09 0:07 
QuestionCAtlHttpClient Pin
TURK18-Jan-09 7:08
TURK18-Jan-09 7:08 
AnswerRe: CAtlHttpClient Pin
Stuart Dootson18-Jan-09 7:37
professionalStuart Dootson18-Jan-09 7:37 
GeneralRe: CAtlHttpClient Pin
TURK18-Jan-09 8:16
TURK18-Jan-09 8:16 
GeneralRe: CAtlHttpClient Pin
Stuart Dootson18-Jan-09 8:27
professionalStuart Dootson18-Jan-09 8:27 
GeneralRe: CAtlHttpClient Pin
TURK18-Jan-09 9:51
TURK18-Jan-09 9:51 
QuestionCListViewCtrl creation does not produce column header arrow indicating sort order Pin
Jonathan Davies18-Jan-09 4:04
Jonathan Davies18-Jan-09 4:04 
AnswerRe: CListViewCtrl creation does not produce column header arrow indicating sort order Pin
Stuart Dootson18-Jan-09 5:38
professionalStuart Dootson18-Jan-09 5:38 
GeneralRe: CListViewCtrl creation does not produce column header arrow indicating sort order Pin
Jonathan Davies18-Jan-09 11:34
Jonathan Davies18-Jan-09 11:34 
QuestionHow to achieve receiving file name using ICopyHook interface? Pin
SNI14-Jan-09 23:00
SNI14-Jan-09 23:00 
AnswerRe: How to achieve receiving file name using ICopyHook interface? Pin
Stuart Dootson17-Jan-09 23:01
professionalStuart Dootson17-Jan-09 23:01 
AnswerRe: How to achieve receiving file name using ICopyHook interface? Pin
gopu7418-Nov-09 5:53
gopu7418-Nov-09 5:53 

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.