Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Listview SubItems in VFP 5
Message
 
To
12/02/1999 11:02:10
General information
Forum:
Visual FoxPro
Category:
ActiveX controls in VFP
Miscellaneous
Thread ID:
00187041
Message ID:
00187981
Views:
21
Hi Dale,

This example will give you an idea for implementing you logic with VFP.

*-- Column Headers
THISFORM.ListView.ColumnHeaders.Add(,,"Description", 200 )
THISFORM.ListView.ColumnHeaders.Add(,,"Amount", 85, 1 ) && Right justified

*-- Adding ListItems
oItem = THISFORM.ListView.ListItems.Add(,,"Test")
WITH oItem
.SubItems(1) = "VFP 6.0"
.SubItems(2) = TRANS( 200.00, "$ 99,999,999.99" )
ENDWITH
Juan L. Romero
gcandela@javanet.com
Previous
Reply
Map
View

Click here to load this message in the networking platform