Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8908489
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T03:11:34+00:00 2026-06-15T03:11:34+00:00

I am looking for the easiest and fastest way to create a folder in

  • 0

I am looking for the easiest and fastest way to create a folder in Livelink with VBA. I’m working with Microsoft Access 2003. For example, I want to create a folder into Livelink\Enterprise\folder1\folder2\. I also have the folder2 LivelinkID (7 digits) stored in my Access database. The Livelink server takes about ~1-2 seconds to respond each times I ping it.

What would be the best method to create a folder into Livelink within my VBA project? Livelink version is 9.7.1.0.814 with Livelink Explorer (Connect) 4.8.2.397, using Outlook 2003.

Thank you.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T03:11:35+00:00Added an answer on June 15, 2026 at 3:11 am

    Finally got it working with WebDAV. It would work too with MAPI but it’s really long to reach a deep parent folder (going thru folder by folder each times).

    Here is the function I got:

    Public Function CreateFolderToLLFolder(parentId As String, folderName As String) As String
        Dim dav As New ADODB.Record
        Dim elements As ADODB.Recordset
        Dim fields(1) As Variant
        Dim values(1) As Variant
    
        dav.Open URL_WEBDAV & parentId, "", adModeReadWrite, , , LLUser, LLPassword
        Set elements = dav.GetChildren
    
        fields(0) = "RESOURCE_PARSENAME"
        values(0) = folderName 
    
        fields(1) = "RESOURCE_ISCOLLECTION"
        values(1) = True
    
        elements.addnew fields, values
    
        elements.Close
        Set elements = dav.GetChildren
        dav.Close
    
        elements.MoveFirst
        Do Until elements.EOF
            If elements("RESOURCE_DISPLAYNAME") = folderName Then
                Exit Do
            End If
            elements.MoveNext
        Loop
        If Not elements.EOF Then
            dav.Open elements
            CreateFolderToLLFolder = dav("urn:x-opentext-com:ll:properties:nodeid")
        Else
            CreateFolderToLLFolder = -1
        End If
    
        dav.Close
        elements.Close
    Exit Function
    

    URL_WEBDAV is for example http://livelink.yourserver.com/livelinkdav/nodes/. Also use LLUser and LLPassword if needed.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm looking for the easiest/fastest (computationally) way to determine whether a shape, more specifically
I'm doing a bookmarking system and looking for the fastest (easiest) way to retrieve
I'm looking for the easiest way to block websites on my squid proxy. I've
I'm looking for the easiest possible way to hide an UpdatePanel while waiting for
I am looking for the quickest and easiest way to combine two silverlight projects.
What would be the fastest and/or easiest (speed preferred) way to find an object,
I am looking for the easiest to way to make an Android App communicate
I’m looking for the easiest, cleanest way to add X months to a JavaScript
.NET 4.0 I am looking for the easiest way to generate a Word document
Because of an imminent deadline, I'm looking for the easiest viable way to put

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.