CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Oct 2004
    Posts
    3

    CListCtrl LVIS_GLOW

    Does anyone know what the LVIS_GLOW state flag is for? I can't find it documented anywhere.

  2. #2
    Join Date
    May 2005
    Location
    Oregon
    Posts
    3,725

    Re: CListCtrl LVIS_GLOW

    have a look on this thread may be you are going to find Something.
    http://www.codeguru.com/forum/showthread.php?p=984567

  3. #3
    Join Date
    Oct 2004
    Posts
    3

    Re: CListCtrl LVIS_GLOW

    Thanks, but I did search the forums and saw that article before I posted my question. It mentions the existance of LVIS_GLOW, but not the reason for it.

  4. #4
    Join Date
    May 2005
    Location
    Oregon
    Posts
    3,725

    Re: CListCtrl LVIS_GLOW

    Quote Originally Posted by gsuing
    Thanks, but I did search the forums and saw that article before I posted my question. It mentions the existance of LVIS_GLOW, but not the reason for it.
    i Think your are loking for this.Style of a List Control
    Code:
     
    enum type
    { 
    	 focused = LVIS_FOCUSED, selected = LVIS_SELECTED, cut = 
    	 LVIS_CUT, drop_highlight = LVIS_DROPHILITED, 
    	 glow = LVIS_GLOW, activating = LVIS_ACTIVATING, overlay_mask 
    	 = LVIS_OVERLAYMASK, state_image_mask = 
    	 LVIS_STATEIMAGEMASK 
    }
    just Click on any of the item to know about this. But don't think you are going to get about those item which is marked as Bold because recently they have added. so no enough documentation is here for them.

    Thanx
    Last edited by humptydumpty; June 12th, 2006 at 01:10 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured