LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

opening a file in wordpad from CVI

I am using CVI to create a data file called abc.txt.

I would like to have a CVI button that would open this file in wordpad.

Any ideas?

0 Kudos
Message 1 of 2
(2,795 Views)

Try:
LaunchExecutable("wordpad abc.txt");
or
system("wordpad abc.txt");
Also the entry by JoeTestEngineer at the end of this thread
http://forums.ni.com/ni/board/message?board.id=180&message.id=23545&requireLogin=False
will help if you run into timing issues.

Good Luck

 

Message Edited by mvr on 06-21-2006 02:23 PM

0 Kudos
Message 2 of 2
(2,789 Views)