08-31-2012 07:43 AM
hi,
i have run .exe file from my labview using exce.vi. It wokrs too. but i have problem with dialog window from .exe file.if i run .exe file using command line it appears a dialog window named for example 'START' if i pressed yes or No then again appears new dialog window and so on till finished.But problem is the first dialog window appears foreground of my labview and then others background (suppresed).to do further at first i have to minimized my labview window.how could i keep showing that dialog window always foreground of my labview??Thanks.
Solved! Go to Solution.
08-31-2012 02:48 PM - edited 08-31-2012 02:49 PM
You could add code to your LabVIEW program to detect each new dialog, and to bring it to the front. I grabbed the following two links from a similar post, either link shows how to programmatically bring a window (LabVIEW or not) to the front:
https://decibel.ni.com/content/docs/DOC-4745
https://decibel.ni.com/content/docs/DOC-4551
------
Matt Kirk
Inventor of ImageJVI
08-31-2012 11:42 PM
There are 2 ways to make a window ALWAYS in front of your panel:
1. Child window. A child window is always in front of its parent window.
2. Topmost window. Topmost windows are always in front of normal windows.