asked on August 24, 2015
Using the following code, the InsertPagesAt = InsertAt.Ask doesn't seem to ever cause LFScan.exe to prompt the user where to insert the scanned pages at. Have I set something incorrectly or am I not expecting the correct behavior? Thank you.
Using lfc As New ClientManager()
Dim sOptions As New ScanOptions()
sOptions.ServerName = _settings.LFServer
sOptions.RepositoryName = _settings.LFRepository
If Not _settings.LFWindowsAuthentication Then
sOptions.UserName = _settings.LFUser
sOptions.Password = _settings.LFPassword
End If
sOptions.EntryId = CInt(docId)
sOptions.InsertPagesAt = InsertAt.Ask
sOptions.ScanMode = ScanMode.Basic
sOptions.CloseAfterStoring = True
sOptions.WaitForExit = True
lfc.LaunchScanning(sOptions)
RefreshView()
End Using
0
0