OK, I see ... This is the #define code taken from my COMMCTRL.H:

#define LVM_SETITEMSTATE        (LVM_FIRST + 43)
#define ListView_SetItemState(hwndLV, i, data, mask) \
{ LV_ITEM _ms_lvi;\
  _ms_lvi.stateMask = mask;\
  _ms_lvi.state = data;\
  SNDMSG((hwndLV), LVM_SETITEMSTATE, (WPARAM)i, (LPARAM)(LV_ITEM FAR
*)&_ms_lvi);\
}


Ciao,
Carlos

----- Original Message ----- 
From: "Palmer, Jean L." <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, May 25, 2004 11:04 PM
Subject: RE: [msvc] ListView_SetCheckState


> Well, I put check boxes on the list items (LVS_EX_CHECKBOXES) and from
what I read, the way to make a check box NOT show up for a particular item
is to use ListView_SetCheckState, passing in a zero for the state.
SetCheck() only checks or unchecks the box.  I want to make some check boxes
disappear.
> -Jean
>
> > -----Original Message-----
> > From: Juan Carlos [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, May 25, 2004 5:06 PM
> > To: [EMAIL PROTECTED]
> > Subject: Re: [msvc] ListView_SetCheckState
> >
> >
> > Hi,
> >
> > Can't you use CListCtrl::SetCheck(...) instead of
> > ListView_SetCheckState?
> >
> > Perhaps you're not using MFC ...
> >
> > Ciao,
> > Carlos
> >
> >
> >
> > ----- Original Message ----- 
> > From: "Palmer, Jean L." <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Tuesday, May 25, 2004 10:23 PM
> > Subject: [msvc] ListView_SetCheckState
> >
> >
> > > I am trying to use the macro
> > > ListView_SetCheckState
> > > but it is not in my file <commctrl.h>.
> > >
> > > The 'Get' call (ListView_GetCheckState) is there, but not the 'Set'
> > version.  They're not too keen on providing updates here so I
> > probably just
> > don't have the right SDK version.  Could someone post the
> > '#define' code for
> > ListView_SetCheckState for me, from commctrl.h?  Thanks.
> > >
> > > Jean Palmer
> > > Northrop Grumman
> > > > * [EMAIL PROTECTED]
> > > > * (410-993-2627)
> > > >
> > > >
> > >
> > > _______________________________________________
> > > msvc mailing list
> > > [EMAIL PROTECTED]
> > > See http://beginthread.com/mailman/listinfo/msvc_beginthread.com for
> > subscription changes, and list archive
> >
> > _______________________________________________
> > msvc mailing list
> > [EMAIL PROTECTED]
> > See
> > http://beginthread.com/mailman/listinfo/msvc_beginthread.com
> > for subscription changes, and list archive.
> >
>
> _______________________________________________
> msvc mailing list
> [EMAIL PROTECTED]
> See http://beginthread.com/mailman/listinfo/msvc_beginthread.com for
subscription changes, and list archive

_______________________________________________
msvc mailing list
[EMAIL PROTECTED]
See http://beginthread.com/mailman/listinfo/msvc_beginthread.com for subscription 
changes, and list archive.

Reply via email to