Search found 47 matches

by BillG
Wed May 06, 2015 12:14 am
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Detecting cameras on citrix
Replies: 5
Views: 5457

Re: Detecting cameras on citrix

Cannot start camera or fetch image System.ArgumentException: Value does not fall within the expected range. at System.Runtime.InteropServices.Marshall.ThrowExceptionForHRInteral(Int32 errorCode, intPtr errorinfo) at System.Runtime.InteropServices.Marshall.ThrowExceptionForHR(Int32 errorCode) at 5.t....
by BillG
Sun May 03, 2015 4:38 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Detecting cameras on citrix
Replies: 5
Views: 5457

Re: Detecting cameras on citrix

when i click the start button i get the following exception. I should add the code works on a standalone machine. the only problem is when it is run on a citrix server. I can see the name of the camera above the viewer control so it seems to be able to detect the camera. And Yes we are checking for ...
by BillG
Tue Apr 21, 2015 4:43 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Detecting cameras on citrix
Replies: 5
Views: 5457

Detecting cameras on citrix

We have the vintasoft portion of our application working perfectly on desktop machines. The issue we are having is when the software is run on a citrix server, it sees the camera on the server, but it is unable to start the camera. Is there anything we have to do differently to start a camera on a c...
by BillG
Sun Sep 28, 2014 2:20 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: getting the name of the camera
Replies: 1
Views: 4201

Re: getting the name of the camera

got it working. just had it in the wrong place.
by BillG
Sun Sep 28, 2014 5:49 am
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: getting the name of the camera
Replies: 1
Views: 4201

getting the name of the camera

i have a form with 2 image viewers on it. i want to place a label above each viewer identifying the camera it is displaying. is this how i get the name of the name. it doesn't seem to be working. if (_slaveViewers[0].CaptureDevice != null) { Camera1Name.Text = _slaveViewers[0].CaptureDevice.Friendly...
by BillG
Sat Sep 27, 2014 6:59 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Retrieving an image from the database
Replies: 2
Views: 6254

Retrieving an image from the database

I am trying to retrieve my image from the database. here is what I have so far. // retrieves the row in the MemberPhoto table as an object memberPhoto = Repository.GetMemberPhoto(currentMember.SocSecNo); if (memberPhoto != null) // verifies the valid row was retrieved { byte[] data = memberPhoto.Pho...
by BillG
Sat Sep 27, 2014 6:54 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: loading an image from a file
Replies: 1
Views: 4146

loading an image from a file

I display an openfiledialog and the user selects the file they want to upload to the Vintasoft image viewer. I had it working with a regular image now I am converting the app to us the VintasoftImage and viewer. OpenFileDialog dialog = new OpenFileDialog(); dialog.Filter = GetImageFilter(); if (dial...
by BillG
Thu Aug 21, 2014 4:08 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: saving a vintasoft image to a database table
Replies: 1
Views: 4511

saving a vintasoft image to a database table

i have a sql server database table named MemberPhotos. It has a field with a type of varbinary(MAX). Can I save a VintasoftImage to it or do I have to convert it to something else first?

Bill