> I am writing a bunch of data to a file from a LabVIEW VI. I am
> using the standard file I/O routines. I would like to view this
> file with another program while LabVIEW is running -- this is
> no problem with programs that open the file for reading only, but
> most programs attempt to open it with write-permissions as well
> which fails under Windows95. Is there a way I can tell LabVIEW
> to relax all locking on the file itself so that I can view it with
> wordpad or others?
>
In LV you can look at changing the Deny Mode setting on the file
Open function. You may also want to use this in conjunction with
the Range Locking if you do allow the other app to modify the file.
Both of these are in the File I/O > Advanced Palette, and you will
need to turn on the Deta
iled Diagram Help in the Help window to get
more information on the parameters.
The other option is to look at the help on Notepad. I'm not at a PC
right now, but many text editors can be launched with a view or
noedit flag, disabling their editing features and allowing them to
open files they don't have write access too.
Greg McKaskle