LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Save folder with images on remote machine

Hello All,
 
- I'm have issue with saving folder with images on remote machine (server side) from client side.
 
 TCP/IP functions operates only with string formats, but I need to save images.
 
 
 
0 Kudos
Message 1 of 6
(4,478 Views)
Multiple posts.  Refer to this thread.
Message 2 of 6
(4,476 Views)
Somebody knows: Lab View can create global shared variable for specific type of data or Lab View works only with standard types?
0 Kudos
Message 3 of 6
(4,453 Views)
Shared variables will work for any data type, but some (e.g. references) do not make any sense in a global variable.  If you need any sort of handshaking or synchronization, a custom TCP/IP solution will probably work better for you than network shared variables, although it will take longer to create.
0 Kudos
Message 4 of 6
(4,436 Views)

DFGray wrote:
Shared variables will work for any data type, but some (e.g. references) do not make any sense in a global variable.  If you need any sort of handshaking or synchronization, a custom TCP/IP solution will probably work better for you than network shared variables, although it will take longer to create.

 

Hi DFGray,

actually it seems that Shared Variables do NOT accept references as data type. It took me hours to find out why I could not write a big cluster of data as variant to a shared variable. Just producing generic error 42 all the time. Seems that I have to disassemble the cluster, get rid of the ref and bundle the rest again...  

I wonder if this is documented behaviour, at least I could not find something on it.

 

D.

 

 

0 Kudos
Message 5 of 6
(4,314 Views)

Variant Shared Variables also do not accept the following I/O types (there may be others):  Shared Variable Controls (BV Tag), DAQmx Task Names, and VISA Resource Names.  Flatten to string before going "To Variant" for those (or Flatten their parent container).  Otherwise, you get Error 42 (as of LV 8.6.1).

 

-Jason

Message Edited by LabBEAN on 03-16-2009 02:08 PM

Certified LabVIEW Architect
TestScript: Free Python/LabVIEW Connector

One global to rule them all,
One double-click to find them,
One interface to bring them all
and in the panel bind them.
0 Kudos
Message 6 of 6
(4,201 Views)