Search found 6 matches

by jchristian
Wed Sep 27, 2017 4:47 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: New features request for version 8.6 of VintaSoft Imaging .NET
Replies: 7
Views: 7689

Re: New features request for version 8.6 of VintaSoft Imaging .NET

Hi Alex,

It has been a while, is there a release date available for this version?

Thanks

Jamie
by jchristian
Mon Apr 03, 2017 11:02 pm
Forum: VintaSoft Twain .NET SDK Discussions
Topic: Detecting if a scanner is connected
Replies: 3
Views: 9820

Detecting if a scanner is connected

Hi Alex, Is there a way through the Vintasoft Twain SDK to detect if a scanner is connected or not? Using the current devicemanager class, whether or not I have a scanner connected, it always shows a TWAIN device available. I would like to disable some UI elements if there isn't a scanner connected,...
by jchristian
Tue Feb 14, 2017 10:49 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: New features request for version 8.6 of VintaSoft Imaging .NET
Replies: 7
Views: 7689

Re: New features request for version 8.6 of VintaSoft Imaging .NET

Hi,
Yes, the document viewer is like a mix of image and thumbnail viewers.

Will it have more functionality than the thumbnailviewer?
Zoom, render images at different resolutions and be able to manipulate the images?
by jchristian
Tue Oct 25, 2016 7:07 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Persist "FocusedIndex" in ThumbnailViewer
Replies: 2
Views: 4333

Re: Persist "FocusedIndex" in ThumbnailViewer

Thanks for the reply Alex, unfortunately that didn't work, I did however find a different way of doing it. var images = tvRight.GetSelectedImages(); if (images.Length == 0) return; for (var count = 0; count < images.Length; count++) { tvRight.Images.Remove(images[count]); } tvRight.Focus(); // Addin...
by jchristian
Tue Oct 25, 2016 12:07 am
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Persist "FocusedIndex" in ThumbnailViewer
Replies: 2
Views: 4333

Persist "FocusedIndex" in ThumbnailViewer

Hello, I am using a thumbnailviewer and I've been trying to figure out how to keep the next selected thumbnail active after you remove a selected thumbnail. For example I click to select a thumbnail (my highlight box is colored red), I then have a button event that removes the selected thumbnail fro...