One possible way is to write program what monitoring is LabVIEW open or not,
if not RUN IT.
I use VC++ and these functions.
FindWindow(NULL, "LabVIEW: labview.exe - Application Error"); (if LV is
crached, i receive this window,
also you can monitor window with any name)
PostMessage(hdlMsWheel, WM_QUIT, NULL, NULL); // Close Crach error window
automaticly
CreateProcess() // Run LabVIEW.
I hope, it help you.
Deniss Karai
"ergolab" wrote in message
news:506500000008000000525A0000-1027480788000@exchange.ni.com...
> Hello,
>
> I have a LabVIEW vi that automatically opens when the user starts
> their computer. I want the program to be transparent to the user,
> therfore, I was wondering if there is a way to monitor the vi to
> ensure that if LabV
IEW crashes it will ideally be restarted or the
> user will be alerted to restart it.
>
> Thanks!