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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. llprogrammer

    window.onload event is not fired?

    Hi all, I'm a beginner in JavaScript and can not figure out why my code is not executed. I have the following JS code (in my Google Chrome plugin): if (window.top.onload) { var existingOnload = null; existingOnload = window.top.onload; window.top.onload = function (ev) {// never get...
  2. llprogrammer

    Accessing Livelink via script language

    Thank you for your explanation, appnair! This approach doesn't suit me. Well... I have to write my own COM interface to Livelink:)
  3. llprogrammer

    Accessing Livelink via script language

    appnair, what do you mean by saying "lapi client files in my idea can be added as references to vbscript and I have used them in excel VBA"? Does it mean that there's a COM interface for accessing Livelink? Does Livelink support COM API? I have looked in OleView and LAPI dlls but didn't find any...
  4. llprogrammer

    Accessing Livelink via script language

    No I don't have acces to KB... Thank you, Greg, appnair!
  5. llprogrammer

    Accessing Livelink via script language

    Hi, does anybody know how to access Livelink via script language (VBScript, for example)? Is it possible? Can we access the user personal workspace and find a certain folder via script? Any ideas are hugely appreciated!
  6. llprogrammer

    How to access EnterpriseWS's parent level?

    OK, James, thank you very much! I've created my dialog!) Could you please also look at my new thread-question "Accessing Livelink via script language"?
  7. llprogrammer

    How to access EnterpriseWS's parent level?

    appnair, I didn't understand your answer... I have called LL_AccessEnterpriseWS() and looked for parentID: parentID == -1 (though Livelink API documentation says nothing about parentID in the output of LL_AccessEnterpriseWS()...). Now what is the next thing I have to do? How do I get VolumeID...
  8. llprogrammer

    How to access EnterpriseWS's parent level?

    Hi, does anybody know how to access "Livelink workspace" (Livelink level containing Enterprise workspace, Personal workspace etc.) via Livelink API? Is it possible? We have an LL_AccessEnterpriseWS() function for accessing Enterprise workspace, but how can we get one level higher? I want to...
  9. llprogrammer

    How to explore alias to folder?

    Thank you very much, ggriffit and appnair! It works now!
  10. llprogrammer

    How to explore alias to folder?

    Hmm... how can I use ListReferences if I don't know VolumeID and ID of original (referenced) object? The problem is I want to get child nodes of original (referenced) object but I can not obtain its VolumeID and ID. I only have VolumeID and ID of alias object.
  11. llprogrammer

    How to explore alias to folder?

    Hi All, I can not found out how to explore programmatically child nodes of folder to which i have alias. I use the following LAPI fucnctions to recursively walk through hierarchy of directories and aliases of Livelink Enterprise Workspace: 1. LL_ListObjects(session, VolumID, ID, "DTree", 0...
  12. llprogrammer

    LAPI memory leaks?

    appnair, thank you for suggestion, but i have no time to write to support so i dicedided to implement quick-fix: LLSTATUS f(){ LL_SessionAllocEx( &session, server, port, "", login, password, NULL); if (session != NULL){ LL_SessionFree( session ); } } void g(){...
  13. llprogrammer

    LAPI memory leaks?

    Hi All, I work on Livelink project and can't find the source of memory leaks in it. The project is COM dll that send documents to Livelink server, so there's method StoreDoc(): DocSender::StoreDoc() { LL_Initialize( LL_HEADER_VERSION ); ... LL_SessionAllocEx( &session, server, port...

Part and Inventory Search

Back
Top