Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Notes problem
Message
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Title:
Miscellaneous
Thread ID:
00382877
Message ID:
00403741
Views:
20
>>>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
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform