You are viewing limited content. For full access, please sign in.

Question

Question

laserfiche repository access reference

asked on June 14, 2017

Hello all,

in visual studio i am making a vb.net program that creates folder and imports document.

i am using laserfiche.RepositoryAccess reference.(version 10)

i added it but it still gives error when i import the library (imports Laserfiche.RepositoryAccess)

0 0

Replies

replied on June 14, 2017 Show version history

What is the error that you are getting?

To import documents into the repository, you should have a reference to DocumentServices as well.

This is a code sample from the documentation:

Dim document as New DocumentInfo(mySess) 
document.Create("\Folder1\MyNewDocument", "Volume1", EntryNameOption.AutoRename)
Dim DI As New DocumentImporter ' DocumentImporter is part of DocumentServices
DI.Document = document
DI.OcrImages = True
DI.ImportImages("C:\Temp\Image.tif")

The login, folderinfo, and documentinfo are all part of RA, but document import/export is provided by DS.

0 0
replied on June 16, 2017

it turned out that i was using framework 3.5 instead of 4

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.