Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How create a FoxPro object collection
Message
De
03/07/2002 17:05:06
Daniel Antich
Informática Industrial
Heredia, Costa Rica
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Programmation Orientée Object
Titre:
How create a FoxPro object collection
Divers
Thread ID:
00675126
Message ID:
00675126
Vues:
94
Hi,
I know how VFP can use objects collection. For example, with the next code I can process each message in the outlook inbox:

oOutlook = CreateObject("Outlook.Application")
oNameSpace=oOutlook.GetNameSpace("MAPI")

oMessages = oNameSpace.GetDefaultFolder(olFolderInbox) && olFolderInbox=6

FOR EACH Item IN oMessages.Items
WITH Item
....
....
ENDWITH
ENDFOR

Now, I am writing a VFP COM server and need create a class with an object collection same as Outlook "oMessages" for store each invoice items.

How can I indicate that my class is a object collection?

Thanks in advance
Daniel
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform