Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How create a FoxPro object collection
Message
From
03/07/2002 17:05:06
Daniel Antich
Informática Industrial
Heredia, Costa Rica
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Object Oriented Programming
Title:
How create a FoxPro object collection
Miscellaneous
Thread ID:
00675126
Message ID:
00675126
Views:
95
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
Next
Reply
Map
View

Click here to load this message in the networking platform