Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Notes problem
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
COM/DCOM et OLE Automation
Titre:
Divers
Thread ID:
00382877
Message ID:
00403741
Vues:
25
>>>I just got thrown into a notes environment. Is there somewhere that I can go to get more information
>>>about creating these objects and whats available to me?
>>>
>>You can always read the type library. :-)
>>
>
>OK where can I find that LOL... I am working with version 4.5a
>
>Ron

Ron,
You should find it in the same directory as Notes.exe. With version 4.6, it's called Notes32.TLB. The following code will list all the Notes objects along with their parameters.

oTypeinfo = createobject("tli.tliapplication")
oTypelib = oTypeinfo.TypeLibInfoFromFile("notes32.tlb")
for each oInterface in oTypeLib.Interfaces
? oInterface.Name
for each oMember in oInterface.Members
? ' ',oMember.Name
for each oParam in oMember.Parameters
? ' ',oParam.Name
endfor
endfor
endfor


The Help file (Help4.NSF) will give you more detail than this.
Larry Miller
MCSD
LWMiller3@verizon.net

Accumulate learning by study, understand what you learn by questioning. -- Mingjiao
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform