Click here to Skip to main content
15,896,278 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
AnswerRe: ATL COM with IIS6 Pin
Michael Dunn24-Jan-06 7:23
sitebuilderMichael Dunn24-Jan-06 7:23 
GeneralRe: ATL COM with IIS6 Pin
MaX B.24-Jan-06 21:55
MaX B.24-Jan-06 21:55 
GeneralRe: ATL COM with IIS6 Pin
Igor Vigdorchik27-Jan-06 16:17
Igor Vigdorchik27-Jan-06 16:17 
QuestionCManualAccessor - No rows if using properties Pin
Guybrush23-Jan-06 9:05
Guybrush23-Jan-06 9:05 
AnswerRe: CManualAccessor - No rows if using properties Pin
Guybrush25-Jan-06 7:04
Guybrush25-Jan-06 7:04 
QuestionICopyHook Pin
ragavan23-Jan-06 3:00
ragavan23-Jan-06 3:00 
QuestionTransparent Static control ATL Pin
Anilkumar K V22-Jan-06 22:26
Anilkumar K V22-Jan-06 22:26 
AnswerRe: Transparent Static control ATL Pin
Stephen Hewitt22-Jan-06 23:17
Stephen Hewitt22-Jan-06 23:17 
Add a message handler like list to the dialog:
MESSAGE_HANDLER(WM_CTLCOLORSTATIC, OnCtlColorStatic)

Add the handler:
LRESULT OnCtlColorStatic(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)<br />
{<br />
    HWND hEdit = GetDlgItem(IDC_STATIC1);<br />
    if ( hEdit == reinterpret_cast<LRESULT>(lParam) )<br />
    {<br />
        HDC hDC = reinterpret_cast<HDC>(wParam);<br />
        SetBkMode(hDC, TRANSPARENT);<br />
        return reinterpret_cast<LRESULT>(GetStockObject(HOLLOW_BRUSH));<br />
    }<br />
<br />
    return 0;<br />
}<br />


Steve
GeneralRe: Transparent Static control ATL Pin
Anilkumar K V23-Jan-06 0:00
Anilkumar K V23-Jan-06 0:00 
GeneralRe: Transparent Static control ATL Pin
Stephen Hewitt23-Jan-06 0:10
Stephen Hewitt23-Jan-06 0:10 
GeneralRe: Transparent Static control ATL Pin
Anilkumar K V23-Jan-06 0:52
Anilkumar K V23-Jan-06 0:52 
GeneralRe: Transparent Static control ATL Pin
Stephen Hewitt23-Jan-06 1:36
Stephen Hewitt23-Jan-06 1:36 
GeneralRe: Transparent Static control ATL Pin
Anilkumar K V23-Jan-06 1:50
Anilkumar K V23-Jan-06 1:50 
GeneralRe: Transparent Static control ATL Pin
Stephen Hewitt23-Jan-06 1:58
Stephen Hewitt23-Jan-06 1:58 
GeneralRe: Transparent Static control ATL Pin
Anilkumar K V23-Jan-06 16:13
Anilkumar K V23-Jan-06 16:13 
GeneralRe: Transparent Static control ATL Pin
Stephen Hewitt23-Jan-06 16:17
Stephen Hewitt23-Jan-06 16:17 
GeneralRe: Transparent Static control ATL Pin
Anilkumar K V23-Jan-06 16:43
Anilkumar K V23-Jan-06 16:43 
GeneralRe: Transparent Static control ATL Pin
Stephen Hewitt23-Jan-06 17:07
Stephen Hewitt23-Jan-06 17:07 
GeneralRe: Transparent Static control ATL Pin
Anilkumar K V23-Jan-06 18:29
Anilkumar K V23-Jan-06 18:29 
GeneralRe: Transparent Static control ATL Pin
Stephen Hewitt23-Jan-06 19:07
Stephen Hewitt23-Jan-06 19:07 
GeneralRe: Transparent Static control ATL Pin
Anilkumar K V23-Jan-06 19:53
Anilkumar K V23-Jan-06 19:53 
GeneralRe: Transparent Static control ATL Pin
Stephen Hewitt23-Jan-06 19:58
Stephen Hewitt23-Jan-06 19:58 
GeneralRe: Transparent Static control ATL Pin
Anilkumar K V23-Jan-06 20:32
Anilkumar K V23-Jan-06 20:32 
QuestionProgramming WTL with VC++ Express 2005 Pin
Defenestration20-Jan-06 5:29
Defenestration20-Jan-06 5:29 
AnswerRe: Programming WTL with VC++ Express 2005 Pin
Michael Dunn20-Jan-06 7:01
sitebuilderMichael Dunn20-Jan-06 7:01 

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.