The MASM Forum Archive 2004 to 2012

Project Support Forums => IDE Development and Support => Easy Code => Topic started by: Bieb on May 31, 2005, 05:50:55 PM

Title: Lists?
Post by: Bieb on May 31, 2005, 05:50:55 PM
What API functions and/or macros do I need to use to work with the list control in Easy Code?
Title: Re: Lists?
Post by: Ramon Sala on May 31, 2005, 11:50:30 PM
Hi Robert,

ListView controls are managed by sending messages to them (SendMessage API call). Have a look at messages beginning with LVM_ (i.e. LVM_INSERTITEM).

I'll try to make an example tomorrow.

Ramon
Title: Re: Lists?
Post by: Ramon Sala on June 01, 2005, 06:31:41 AM
Hi,

I attach a zip file demonstrating how to use a ListView control.

Ramon


[attachment deleted by admin]
Title: Re: Lists?
Post by: Bieb on June 01, 2005, 11:44:10 AM
Thank you.  I'll take a look at the code shortly.