LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

dos

why when i run the command dos in labview with "System exec.vi" appears error messagge : "LabVIEW: Memory is full."

thank
0 Kudos
Message 1 of 3
(2,827 Views)
In this case, the error description, listed under Possible Reason(s), is misleading. The real error is that the command "dos" was not found. Under Windows 95/98 or 2000, there is no command named "dos".
What do you want to do? Run a DOS command (like DIR or TYPE, etc.) or just open a DOS command prompt window?
Depending on what version of Windows you're running, to open a DOS command prompt window, use one of the following command lines with System exec.vi:
COMMAND.COM
or
CMD.EXE
and have wait until completion False.
If you want to run an internal DOS command like DIR, use one of the following command lines:
COMMAND.COM /C DIR
or
CMD.EXE /C DIR
If you set wait until completion True, the output from DIR will go to System exec.vi's string indicator labeled st
andard output.
0 Kudos
Message 2 of 3
(2,827 Views)
Does this link help?
http://digital.ni.com/public.nsf/3efedde4322fef19862567740067f3cc/ea1600eba422e97286256aa20073c616?OpenDocument


2006 Ultimate LabVIEW G-eek.

0 Kudos
Message 3 of 3
(2,827 Views)