Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

LLValue example/tutorial?

Status
Not open for further replies.

mclumin

Programmer
Apr 10, 2008
3
CA
I'm trying to understand how to properly instantiate a LLValue object for certain LAPI_Documents object methods that require these as parameters and as a return object.

For example:

LAPI_Documents.GetObjectAttributesEx(LLValue objectID, LLValue catID, LLValue catVersion)

How do I create each of these LLValue objects? Is it like...

LLValue catVersion = (new LLValue()).setAssocNotSet();

When do I use the the .setAssocNotset, .setAssoc, .set<whatever> ???

If you haven't noticed...I'm quite green with LAPI.

Thanks in advance for any reply
 
the best way would be to start small read the llvalue documentation along with some working examples.It will greatly help if you understood the llvalue datastructures the most used ones are assocs,RecArray's,Lists.if you program lapi with java or C# these datastructures can be enumerated well so you can better understand them.Some good starting examples can be found in greggriffits.org or the livelink SDK zone.

Well, if I called the wrong number, why did you answer the phone?
James Thurber, New Yorker cartoon caption, June 5, 1937
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top