11-22-2005 02:56 AM
11-22-2005
03:35 AM
- last edited on
12-01-2025
01:10 PM
by
Content Cleaner
If I remember correctly, you must have at least one FP open to keep the run-time engine working.
However, a quick test I made shows that even if add the line HideRootWindow=True in the application's INI file and use a property node to set the Front Panel Window>>State property to be hidden, the VI will keep running, so you can try doing these two things.
As another solution, how about this [broken link removed]?
11-22-2005 03:37 AM
Hi, it can be done
In your block diagram put a property node -> select class VI server ->VI. Now select properties-> front panel state ->hidden(VI attached)
now build your Executable, FP will not show up.
Hope you have worked out a logic to stop this exe, or u will have to use windows task manager! 😉
regards
Dev
01-04-2006 06:07 PM
01-05-2006 01:40 AM
Yes, add the line I mentioned earlier (hiderootwindow=true) to the application's INI file under the [executable name] section.
BTW, how do you work with the system tray? Did you use the available VIs which work with the ActiveX object or did you make direct calls into the windows API?
01-05-2006 11:29 AM
I used the axs lvtrayicon service.
I tried adding that to the ini file and it seems to do nothing.
I'm using LV8. Did the syntax change maybe?
01-05-2006 11:57 AM
I wouldn't expect it too. Are you sure you place the line in the right section?
@atk_nut wrote:
I'm using LV8. Did the syntax change maybe?
01-05-2006 12:00 PM
Here it is:
[testset server]
HideRootWindow=True
UseTaskbar=false
server.app.propertiesEnabled=True
server.ole.enabled=True
server.tcp.paranoid=True
server.tcp.servic="My Computer/VI Server"
server.vi.callsEnabled=True
server.vi.propertiesEnabled=True
WebServer.DirectoryIndex="index.htm"
WebServer.MimeTypes="htm;text/html;gif;image/gif;jpg;image/jpeg;png;image/png;txt;text/plain;html;text/html;jpeg;image/jpeg;css;text/css;llb;application/x-labview-llb;vi;application/x-labview-vi;doc;application/msword;dot;application/msword;bin;application/octet-stream;exe;application/octet-stream;rtf;application/rtf;pdf;application/pdf;ai;application/postscript;eps;application/postscript;ps;application/postscript;csh;application/x-csh;gtar;application/x-gtar;gz;application/x-gz;sh;application/x-sh;tar;application/x-tar;zip;application/zip;hqx;application/mac-binhex40;ua;audio/basic;wav;audio/wav;tif;image/tiff;tiff;image/tiff;xbm;image/x-xbitmap;rtx;text/richtext;qt;video/quicktime;mov;video/quicktime;avi;video/x-msvideo;movie;video/x-sgi-movie;aif;audio/aif;aifc;audio/aif;aiff;audio/aif;aim;application/x-aim;dif;video/x-dv;div;video/x-dv;js;application/x-javascript;pntg;image/x-macpaint;xlb;application/vnd.ms-excel;xls;application/vnd.ms-excel;ppa;application/vnd.ms-powerpoint;ppt;application/vnd.ms-powerpoint;pps;application/vnd.ms-powerpoint;pot;application/vnd.ms-powerpoint;pwz;application/vnd.ms-powerpoint;mid;audio/mid;midi;audio/mid;enc;video/mpeg;m1v;video/mpeg;mp2;video/mpeg;mpa;video/mpeg;mpe;video/mpeg;mpeg;video/mpeg;mpg;video/mpeg;psd;image/x-photoshop;bmp;image/bmp;pic;image/pic;ra;audio/vnd.rn-realaudio;rf;image/vnd.rf-realflash;rm;application/vnd.rn-realmedia;rp;image/vnd.rn-realpix;ram;audio/x-pn-realaudio;rmm;audio/x-pn-realaudio;rnx;application/vnd.rn-realplayer;rt;text/vnd.rn-realtext;rv;video/vnd.rn-realvideo;smi;application/smil;ssm;application/streamingmedia;sithqx;application/mac-binhex40;sit;application/x-stuffit"
WebServer.RootPath=D:\labview\LabVIEW 8.0\www
WebServer.TcpAccess="c+*"
WebServer.ViAccess="+*"
DebugServerEnabled=False
DebugServerWaitOnLaunch=True
I tried putting at the bottom also, and I've tried all combinations of the vi front panel settings. (Allowing user to minimize etc...)
It does work exactly like I want it to in development mode.