How do I hide the VI loading window for an exe file when deployed

Is there some set point or registry entry that I need to switch to hide the vi load window when an exe is executed?
Tim
Johnson Controls
Holland Michigan

aeastet wrote:
Jeff Bohrer wrote:
aeastet wrote:
Is there some set point or registry entry that I need to switch to hide the vi load window when an exe is executed?
several years ago Mark and I shared a cube wall.  (actually, several cube walls over the years)  He developed 1 example of a splash screen that has been available for use to hide the loading window.  I haven't looked too deep in it for several years but It worked! 
Splash screen example code
I actually have the splash screen vi's that you are talking about and that is what I based mine on. It is nice to have that code to see how others would do it. So thanks Mark for the push in the right direction on this.
OK- so another method that we tossed about. was to place a simple vi AS main with a FP that "Looked" like a splash screen.  use THAT vi to dynamically load and run the real main vi for the application with a vi server ref (wait for completion F auto dispose T) and then close itself after a delay.  We debated that the method was "cheesy" and required a dynamic call to the real top level VI so it was easy to botch the build spec.  but we did try it and it hid the Loading screen effectively
Jeff

Similar Messages

  • My auto install for Premiere Elements failed and told me i needed to do a restart and try installing again. Having restarted my laptop, how do I install the software? There are two .exe files in the folder - oem and start-up. Which should i run?

    My auto install for Premiere Elements failed and told me i needed to do a restart and try installing again. Having restarted my laptop, how do I install the software? There are two .exe files in the folder - oem and start-up. Which should i run?
    thanks

    for windows you should have an exe and a 7z file.  put both in the same directory and double click the exe.
    Downloadable installation files available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4, CS4 Web Standard | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.7.1| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5.5, 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • How do I find the dc load line for a BJT on multisim 11

    Im trying to find the dc load line for a BJT on multisim 11.

    Thanks for reply. Would please tell me the procedure to get output jfet characteristic curve by changing d-s voltage at different g-s voltage to drain current? I attached my document. It's better if you send me a sample simulation file if possilble. actually i will try for other jfet model once i know how to simulate it. it would be great help. thank you in advance.
    Attachments:
    expecting waveform.JPG ‏32 KB
    char.JPG ‏345 KB

  • How do I change the RESCUE email address for my security questions, when I have forgot the security questions and answers?

    How do I change the RESCUE email address listed for my security questions to my Apple ID notification to change security questions? The current email for changing my security questions is no longer my email. And I forgot my security questions answers. What do I do?
    iPad 2, iOS 7.1

    There is no need to post multiple versions of your question, the answers will be the same,
    Please see your other thread.
    https://discussions.apple.com/thread/6078685?tstart=0

  • How can I get the drop down window for a ID and P/W "Always remember" Auto Fill

    Recently I had a mail issue with my ATT (Yahoo)  Mail account and they temporarily changed by Password.
    After the issue was resolved I changed it back but the auto fill kept the temporary Password in Safari when I log onto my e-mail account via the internet instead of the Apple Mail program.
    In the Past, whenever I would put a different P/W or ID there would be a drop down window that said :
    Never, later or Always remember", at least something like that terminology.
    Since I have had no reason to change P/W or ID lately I do  ot know if it is Lion issue or if there is a way of getting the drop down to appear.
    Thanks,
    Greg

    If I am not making my request understood, please let me know and I will try and reword it.
    It is always easy to understand what I are asking but it does not always mean that others understand it.
    Thanks,
    Greg

  • How do i dissable the master password feature for saving web passwords , when i don't have the master password?

    I have mistakenly enabled the need for a master password for firefox to autofill passwords for me.I have no clue what the master password is.Is there any way to disable or change the master password , without knowing what the master password is?

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    You have to close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • How can I get the console Output generated by a exe file

    when I am trying to use method getOutputSteam of Process to gain the outputStream,I got nothing!
    I have also tried to use stream redirect,also no result!
    please help me! Thank you in advance!
    my main code are below:
    Process ps=Runtime.getRuntime().exec("xxx.exe");/*xxx.exe is a executable program which will generate a console with the message I want to gain.*/
    int exitVal= ps.waitFor();
    if(exitVal==0){
    BufferredReader br = new BufferedReader(new InputStreamReader(ps.getInputStream())); String st;
    while((st = br.readLine()) !=null){
    System.out.println("write:"+st);
    }//my result show that I got nothing from the progam.

    ok, this works (I tried) :
    import java.lang.*;
    import java.io.*;
    public class ps {
            public ps() {
            public static void main(String[] args)
                    try
                            Runtime rt=Runtime.getRuntime();
                            Process ps = rt.exec("ps");
                            BufferedReader br = new BufferedReader(new InputStreamReader(ps.getInputStream()));
                            String st;
                            while((st = br.readLine()) !=null){
                                        System.out.println("write:" + st);
                    } catch (Exception e)
                            e.printStackTrace();
    }But it's not the same that a simple ps :
    [host@localhost java]$ ps
    PID TTY TIME CMD
    4065 pts/1 00:00:00 bash
    4319 pts/1 00:00:00 ps
    [host@localhost java]$java ps
    write: PID TTY TIME CMD
    write: 4065 pts/1 00:00:00 bash
    write: 4320 pts/1 00:00:00 java
    write: 4321 pts/1 00:00:00 java
    write: 4322 pts/1 00:00:00 java
    write: 4323 pts/1 00:00:00 java
    write: 4324 pts/1 00:00:00 java
    write: 4325 pts/1 00:00:00 java
    write: 4326 pts/1 00:00:00 java
    write: 4327 pts/1 00:00:00 java
    write: 4328 pts/1 00:00:00 java
    write: 4329 pts/1 00:00:00 java
    write: 4330 pts/1 00:00:00 java
    write: 4331 pts/1 00:00:00 ps
    write: 4332 pts/1 00:00:00 java
    write: 4333 pts/1 00:00:00 java
    [paul@localhost java]$
    And I don't know why...

  • How to hide the Columns and Views for Login user in SharePoint 2013

    Hi Friends,
    How to hide the Columns and Views for Login user in SharePoint 2013? Is it possible using OOB features? If not possible how can we hide the Columns and Views for Login user?
    Could you please help on this.
    Thanks,
    Tiru
    Tiru

    Hello Tirupal,
    There is no OOB way to do this.
    Please check this codeplex solution to achieve the same.
    https://sp2013columnpermission.codeplex.com/
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • How to display the Get info window for a file or folder

    Hello,
    How can I display the Get Info window for a file or folder using Applescript - instead of selecting it in the finder and using Command-I ?
    Thanks.
    lenpartico

    The item property that the Get Info was opened for is read only, so it doesn't look like you can just throw a file path at it. You could do something like telling the Finder to reveal the item, then keystroke the command, e.g.:
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #FFEE80;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    tell application "Finder"
    reveal "Path:to:your:file"
    activate
    end tell
    tell application "System Events" to keystroke "i" using {command down}
    </pre>
    ... but this doesn't seem to be much different than the regular method. There are other methods to get various information, what are you wanting to do?
    Edit:
    Hmmm, I could have sworn (I do a lot of that these days) I tried Hiroto's method, but that does work. It still seems to be a roundabout way of doing something though.
    Message was edited by: red_menace

  • How to hide the report progress window

    hii all
    i am running a report using a run_product builtin from a form but i want to hide the report progress window
    how can i do that
    thanks

    Ayman,
    the only way to do this is to run teh Reports in asynchronous mode which will have it running as a background job.
    frank

  • How do I move the page-load progress meter from the bottom task bar to the top menu bar, or inside the top/header toolbar? I am currently using Firefox Version 3.6.19

    How do I move the page-load progress meter from the bottom task bar to the top menu bar, or inside the top/header toolbar? I am currently using Firefox Version 3.6.19.
    URL Eaddress: [email protected]

    You see the orange (on Linux gray) Firefox button if the Menu Bar is hidden, so you need to hide the Menu bar to get the new appearance.<br />
    If you need to access the hidden Menu bar then press F10 or hold down the Alt key to make the Menu Bar appear temporarily.<br />
    You can place the Tab Bar on top.
    * View > Toolbars : [ ] Menu Bar
    * View > Toolbars : [X] Tabs on Top
    The Tab bar only appears on the title bar if the Firefox window is maximized.

  • How we can automate the data loading from BI-BPC

    Dear  Guru's
    Thanks for watching this thread,my question is
                  How we can load the data from BI7.0 to BPC.My environment is SAP-BI 7.0 and BPC is 7.5 MS version and 2008SQL.
    How we can automate the data loading from  BI- BPC Ms version.Is manual flat file load is mandatory in ms version.
    Thanks in Advance,
    Srinivasan.

    Here are some options
    1) Use standars packages and schedule them :
        A) Openhub masterdata file into a flat file/ BPC App server  and Schedule the package - Import Master Data from a Data File and  other relevent packages.
    2 ) Using Custom Tasks in Custom Packages ( SSIS)
    Procedure
    From the Microsoft SQL Server Business Intelligence Developer Studio, open the Microsoft SSIS folder.
    Create a new package, or select an existing package to modify.
    Choose  Task  Register Custom Task .
    In the Task Location field, browse for the target .dll file.
    Note
    By default, the .dll files are stored in BPC/Websrvr/bin.
    End of the note.
    Enter a task description, select an appropriate icon, then click OK.
    Drag the icon to the designer window. Enter data as required.
    Save the package.

  • How can I hide the preview content of the text on ios 5?

    How can I hide the preview content of the text on ios 5?

    one complement. I want to hide it in the popup window.

  • How do I load windows for mac

    How do I load windows for mac I have DVD software

    You can install Windows on a Mac with Boot Camp or a virtual machine. If you need maximum performance, use Boot Camp.
    If you want to use Boot Camp, first check that the Windows version you want to install is compatible with your iMac > http://support.apple.com/kb/HT5634 Then, open Boot Camp Assistant, in /Applications/Utilities, and follow the steps to install Windows. Check > http://manuals.info.apple.com/en_US/boot_camp_install-setup_10.8.pdf
    If you want to use the virtual machine, you have to install an application like Parallels, VMware Fusion or VirtualBox, create a virtual machine and install Windows there

  • How do I hide the "preview panel" in Mail. Double clicking the "separator bar" hasn't worked ( I think I know where that bar is.)

    How can I hide the "preview panel" in Mail? Double clicking on the "separator bar" , as directed by Mail Help, does nothing. ( I am not certain where that bar is, but believe it to be the zone where the preview panel and the message space meet.) This issue only arose after I upgraded to Mavericks.

    Maggie 6 wrote:
    How can I hide the "preview panel" in Mail? Double clicking on the "separator bar" , as directed by Mail Help, does nothing. ( I am not certain where that bar is, but believe it to be the zone where the preview panel and the message space meet.) This issue only arose after I upgraded to Mavericks.
    The only way I found to hide the "preview panel" is to drag the separator to the edge of the window. It shrinks the panel down to perhaps 1/2 inch in height and then disappears only when you drag it to the bottom (classic layout) or perhaps a couple inches wide (in the new layout). It is also annoying to me that you can double click to open the preview panel but you cannot repeat that to hide it. [sigh]
    I submitted feedback about the help file as well - you may want to do the same. I could not find the double click mentioned in the new "Mail Help" - I know it was in the old version.

Maybe you are looking for