CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: David Carr

Search: Search took 0.03 seconds.

  1. Replies
    8
    Views
    11,974

    Re: Convert COLORREF to RGB???

    Don't forget the following when looking at the different bytes of an integer:
    https://www.safaribooksonline.com/library/view/vbnet-language-in/0596003080/re286.html

    "RGB = red + (green * 256) +...
  2. Re: CListCtrl alignment of items & vertical scroll

    Also achieved programmatically through CListCtrl::SetView(LV_VIEW_DETAILS), which is equivalent to:
    DWORD dw = myListCtrl.GetStyle();
    assert(dw && LVS_REPORT);
  3. Replies
    3
    Views
    3,379

    Re: CListCtrl and LVN_ITEMACTIVATE

    Also interested in the answer to this post (even 13 yrs later!). Bump!
  4. Re: SHGetFolderLocation' : undeclared identifier

    FYI, I am also having SHGetFolderPath come up as an 'undeclared identifier'. I am running VC++ v6.0sp5 on W2Ksp1 with IEv5sp2. So, there really shouldn't be a problem, however this function does...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured