LabVIEW prompts you to save the vi during the closing of the reference

In our application, we - open reference vi - find its executing state - the closing vi reference. In closing, LV prompts you to save the vi, how to avoid it. I can see option to activate the guest of LV, but no option to skip. 0x20 for now allows us to avoid the load dialog box.

We appreciate your comments

Thank you

SAS

Looks like when leaving the possibility to 0x0 or using any other option other than 0 x 4, should not prompt the user to save the file. But for some reason, I met the guests user to save the file... Don't know why! but I got the solution now :-)

It will be good to know why I got the guests even for option 0 x 20!

Thank you

SAS

Tags: NI Software

Similar Questions

  • How to stop the ObjectChoiceField prompt you to save the window?

    Hi, I have 3 ObjectChoiceFields in my code to let the user select the information, then it passes the value to the next screen again. However when I click on the back button to return to the previous screen and exit the application, he always invites a window of notice asking me if I want to save, delete, or cancel. If I click on save, and then run the code again, the ObjectChoiceFields still shows the original value, if the backup does not really work. I would like to know how to do the backup works, so that the next time I run the code, it will present the values I chose last time. or another solution, how can I stop ObjectChoiceField prompt you to save the window?

    Thank you very much!

    Hello

    There are two ways to do this (assuming that the judgment save prompt will solve the problem)

    1.

    In the api using onSavePromptMethod();

    This method is a member of the screen class (AFAIK). You can override this and simply return true;

    Who can't let the application display quick check

    2.

    First, use this code in the onClose method

    If (getMainManager () .isDirty ()) {}
    getMainManager () .setDirty (false);
    }

    I found that 2 still works and uncertain about 1. But I prefer to use 1 and you asking to try that and tell if it worked on the side or not...

  • prompt you to save the image in an avi file

    Hello

    I try with vision acquisition software and I managed to acquire my webcam image and store it in an avi file, but the problem is when I run vi again it will crush the avi file. Is is possible to create a new avi file every time I stop and run the program again?

    Thank you

    Use a file dialog prompt that you can only create new files.

    Use a code that detects if the file name already exists and loop it back to allow the user to select a new file name.

  • You can save the music from itunes with the sound recorder?

    You can save the music from itunes with the sound recorder?

    The principle is simple in nature, although the tape recorder is not the best option available for you, even in free software for audio recording you can.

    If you want to use sound recorder, you will need to get a 1/8 inch male-male stero (cable basically a helmet with two male ends) and put one of your speakers into your microphone in the port (line in).

    Then open sound recorder and give it a shot. The recorded files will be in .wav format, so you need to get a freeware to convert to program them to .mp3 if necessary. Or use this:

    http://www.media-convert.com/

    You can also use Windows Media Encoder 9, which in my opinion is much better in features and maintaining the quality. It is freely accessible to the public.

    http://www.Microsoft.com/downloads/details.aspx?FamilyID=5691ba02-e496-465a-bba9-b2f1182cdf24&displaylang=en

    You use the same configuration that with tape recorder, get a stereo cable and speaker output connection > microphone.

  • All of a sudden I can't type data on registered forms. The purple bar above shows "Please fill out the following form. "You can save the data entered in this for."

    All of a sudden, I can't type data on registered forms. The purple bar above shows "Please fill out the following form. You can save the data entered in the form.

    Program used to complete the form (I guess they are in PDF format)? OPERATING SYSTEM? Versions of both? Forms were filled before you save them?

  • is that you can save the files to your document to your ipads storage cloud in adobe reader software?

    is that you can save the files to document to the storage of ipad cloud in adobe acrobat reader is?

    Hello

    You may want to take a look at the options that I have provided here: How can I copy a file in the cloud to document local Adobe on my iOS device?

    Thank you

    Abhishek

  • Acrobat Pro XI - The action Wizard prompts you to save

    For a particular project, I need to read a file containing several thousands of RTF files and save them as PDF files. I have done successfully with "Assistant action" (and precursors) in earlier versions of Acrobat, but can't make it work in Pro XI. That's all I have available now.

    The script reads each file correctly, save in PDF format correctly, but then will not continue until I have save the 'original '. It seems that opening the RTF creates a significant change, and the wizard of the Action will not continue without registering or by deleting this change. I tried to add additional save steps and looked for some kind of action 'close' which would ignore the opened file. But without success. How can I make this work? I don't want to press 'Cancel' 1200 times in the course of an hour, once a week.

    Thanks for your suggestions.

    J

    Add just a drive backup with the PDF Optimization option enabled, but no actual command selected under it. Who must convert the PDF non-fichiers to PDF, save and then close them and move on.

  • Error-2147352567 when you use save the vi report

    Hello

    I am developing a software test bench end line for a company. Everything was going well until I met an unexpected error which I don't understand. My code works a simulation engine and stores data in two excel files. When I have the path disconnected to save the report to the File.vi (screenshot 1), my program works without problem and records one of the files and returns an error due to the vi save report being disconnected (as expected). But when I connect the path to save the report to the File.vi, I get an error-2147352567 (screenshot 2) at a table to append to report.vi elsewhere in the code, which worked perfectly well until the road was connected to the vi to save the report. Also, now the second excel file is saved because its path has been connected. I don't understand what is the question. I couldn't find any source that has given me a reasonable solution to the problem either. I use Labview for less than 2 weeks, so forgive me if I forgot something.

    Hi DPAC.

    My apologies for the confusion in the previous post, I thank very you much to clarify it.

    Following my last post; the error was due to a race condition. There is no data flow between two separate writing report files. This means that LabVIEW will try to run the two bits of code in parallel. However, it was sometimes causing one of the sub-vis to be called by two different parts of the code at the same time, causing the error.

    This is the reason for which the code executes without error above if you have disconnected the path to the first 'save report to File.vi', because this part of the code was not running, allowing the second party to run freely.

    To counter this I simply wired terminal 'error' "save report to File.vi" (the one that used the All_Saved.xlsx) in the terminal ' error in ' of the 'new Report.vi' (one who has used the Template.xlsx). Because the screws will not work until all entries are filled, this forces the writing of the first report before the writing of the second report, not occur at the same time.

    I have attached the revised version of the "EOL_V1.vi" where you will be able to see how I wired errors to force execution.

    I also noticed that you have not initialized your shift register "speed". This means that every time that you run the program, it will retain the last value from the previous execution. Is - this intentional? This means that your worksheet does not properly update if you run the program twice in a row.

    Thank you

  • Adobe Acrobat Pro DC 2015 student and Teacher Edition for Windows EU English2015 by Adobe. This version allows you to save the file, a file of size?

    Hello.

    This version of Acrobat DC has the possibility to save your file as a reduced file size, so that I can download my PDF files on my email and Web sites of the University?

    If someone could please inform me if this is possible, I would be very grateful, because I want to buy the software.

    Thank you

    Concerning

    Dominic G

    Hi Vandomo,

    Yes, you can save your PDF files as a file size reduced by using Acrobat Pro DC Optimization PDFs (Adobe Acrobat Pro DC).

    Then, you can download these PDF files on E-mail & sites of the University.

    Kind regards
    Nicos

  • Windows prompts you to change the password

    Don't bother you answer this, it's obvious that you're not and want things your way. Hope you solve your problem.  We are all volunteers right here and do our best to help but without information, it may be impossible.  Hope this helps and if you need any additional aid station and we will be happy to help you.

    The above opinion is mine and mine nothing and does not necessarily reflect that of Microsoft, it's employees, or any other Member of this forum.

    "When we try to take anything by itself, we find it hitched to everything else in the universe."-John Muir

    If this has answered your message please mark as answer.

    I would get this right... I post a topic, and then after three positions, a person keeps going in a bad way.  Whenever I try to stop them.  I get finally assert.  The question never gets addressed and I get to complain.  And then I said do not answer... wow.  Must working us on the issue?

  • [locked] Allows you to save the PDF file

    I noticed that using the form of Distribution via e-mail, Acrobat.com or a shared folder on the network, the user can save the PDF file, correct? I understand that correctly? Another thing, what happens if I don't want to send an email to but want to just the PDF form available on my site, the user will still be able to save a copy of the completed form for themselves, to print or to do what they want?

    aljCharlie wrote:

    I want to put my form on my site, and when the user fills out the form they can save at least a completed form for later printing or by e-mail, but with only the player. Is this possible?

    Yes. Go to Advanced Options > enable Adobe Reader usage rights. Activate the file, re-register and then publish your site.

  • You can save the projects that you are currently editing on an external hard drive?

    I went travelling this summer and want to make a video of all my photos / videos. As you can imagine there are many of them and they are on different cards memory. So I bought a disc external hard samsung which is comparable with Mac to store all my content. The first batch of files that I imported from my hard drive to iMovie went on well, but then I tried to import some more and I do not have enough memory space on my Macbook Air.

    Is there anyway you can get iMovie to use my external hard drive to save projects as default? So instead of import content and she being temporarily stored on my macbook while editing, it would save on my hard drive?

    I am very new and relatively new to mac for iMovie so I apologize if this doesn't make much sense.

    Yes you can.  For a long time I used iMovie 11 but transfer events to and external drive is covered in the help files to: http://help.apple.com/imovie/#mov3ac6d42c

    and the transfer of projects to: http://help.apple.com/imovie/#move7d66613

    Note that the disk should be in Mac format.  If you are not sure, check using disk utility.

    Geoff.

  • Microsoft Essentails prompts you to restart the PC after each scan cleaning.

    I receive a message to restart after security Essentiaks is a cleabig. It is vey annoining. Is it a condition that I restart every timr?

    Hi Edward,.

    Is essential to safety found no security threat after the scan?

    When Microsoft Security essentials scans your PC and detects the threats to security, he might try to delete or quarantine safely without affecting other files. However, the security threats that may have already associated with other files, making it difficult to remove when this file is used by windows. So Microsoft Security databases could you prompt to restart the computer so that he can remove it all threats safely without affecting other files. It is recommended to restart the computer when you are prompted by Microsoft Security databases.

  • With CC, you can save the files locally?

    Or, only in the cloud?

    Applications and save file are local.

    Optionally, you can upload files to the cloud using your browser or ask them to synchronize using the creative connection of cloud application.

  • LabVIEW allows you to sort the raw data of series

    I have an FPGA that is programmed to dump all its bytes of memory containing the tensions, currents, temperature etc. when a serial is estabilished with LabVIEW.

    I know how to connect in series, check all the bytes in the serial port and read the data to the serial port (using VISA).

    What I have to do now is so through what is currently playing.

    If it's reading the data in a sequence of 24 (16-bit) integers sent with the least significant bit first. I need to sort each integer and display in decimal form. How can I do this?

    sout23 wrote:

    How to actually extract each individual value. For example, the first value would be Vout second wine, etc and I want to display each value separately?

    I would do something like that.

Maybe you are looking for