Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Listview SubItems in VFP 5
Message
 
À
12/02/1999 11:02:10
Information générale
Forum:
Visual FoxPro
Catégorie:
Contrôles ActiveX en VFP
Divers
Thread ID:
00187041
Message ID:
00187981
Vues:
20
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
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform