Save As function in Labview 8.6

I am not able to get the "save as" duplicate all dependences function to work as I assumed it would.
The function will not allow me to utilize the *.lvlib files names in the project I am copying from into the new project. It gives me an box with "name is already open in memory".
If I change the names and then try to open the new project it says it can't find the new names and is looking for the original names.
I am trying to move the project from my development system (XP) to a newer lab system (XP) to be able to work closer to the machine that the project will be utilized on.
Both systems are running Labveiw 8.6 (just upgraded last week) and I need to make this happen soon.
Help
RSI

Hi RSI,
Thanks for your post and I hope your well.
It has been sometime since you posted your issue and I am sorry to see you have not received any support. Please accept my applogy for the delay. I am not sure why one of the Applications Engineer World Wide haven't been notified the your post has gone unanswered. I do hope, however, that you may have resolved your issue by now. However, just incase you have not:
The best way to transfer a project from one machine to another is by using the Application Builder toolkit, do you have this? 
If so, please read more information in the following Knowledgebase article:
How Can I Transport My LabVIEW 8.0 Project to Other Machines?
http://digital.ni.com/public.nsf/allkb/166ECBD0AB87C320862571080082AA0F?OpenDocument
Please let me know what you think, 
Kind Regards
James Hillman
Applications Engineer 2008 to 2009 National Instruments UK & Ireland
Loughborough University UK - 2006 to 2011
Remember Kudos those who help!

Similar Messages

  • Problems with "Save as" function in CS6

    Hi,
    One of our employees uses Adobe CS6 and has discovered a problem when they try to use the "save As" function.
    The problem arises when trying to assign filesnames that have a fullstop in them(typically to indicate version numbers) and this then seems to confused with the file extension.
    Is there a workaround or setting within the product that can fix this issue?
    Cheers,
    Andrew

    This has nothing to do with Adobe, this is a general limitation in your operating system's file naming conventions. Some special characters simply are not allowed or reserved by the operating system itself. Since you didn't bother to provide any system info, nobody can advise specifically, but it's probably normal within the bounds of whatever OS you use and the respective region/ language settings.
    Mylenium

  • File download "save as" function doesn't work correctly

    I am using Firefox 24.3.0 ESR on Linux LXLE 12.04.3. I have problems downloading some files from some sites. After some investigation I found that the files have been given the generic MIME type octet-stream by the server. Presumably this is to encourage me to download the file rather than have it open automatically in the browser.
    For instance, if downloading one of these files that is a pdf file, left click gives me the standard box that allows me to choose to open the file in the default application or "save as". Once I do the left click, I can see that the file immediately starts to download in the background (network activity). If I wish to open it in the default application, it works. The green download arrow flashes and eventually the default application opens with the downloaded file when the download is complete. The download is then listed in my download library.
    If I select "save as" and my preference is set to download files to a fixed directory, it ignores the directory they should go to and places them in my home directory. The green download arrow flashes and again records the download in the download library.
    If I set the preference to "always ask me where to save files" then when I click on "save as" nothing happens. The green download arrow doesn't flinch and nothing appears in the download library.
    After hunting around I found that the file has actually downloaded to my /tmp directory. Clearly that was the background activity mentioned above. The name of the file in the /tmp directory is made up of seemingly random characters and I can retrieve it from there but this isn't exactly ideal and I would like this to work the way it is supposed to. i.e. I want to be able to click on "save as" and select where I want the file to be downloaded to (and it to go there).
    What could be causing this behaviour and how do I get the "save as" function to work?

    jscher:
    Thanks. The /tmp and home directories are on the same partition as the main operating system. The Downloads directory is actually set up as a sub-directory of the home one but is a symbolic link to a NAS drive. It works fine for other MIME types. It is just when web sites use the application/octet-stream MIME type that I get this problem.
    I checked the permissions and the /tmp and Downloads directories have full read write permissions for everyone. The home directory is the one with the restriction that only I can write to it.
    So, I don't expect that sheds any light on the problem.
    cor-el:
    Thanks. I meant to say in my first post (but pressed the button before it got in) that I actually created a completely new Firefox profile and the problem is still there. Sorry, I should have included that.
    The only difference with the fresh profile is that the "open in default application" isn't available, presumably because no default application has been assigned. The "save as" behaviour is still the same.
    So, if the problem exists in a pristine profile, it looks like there is something deeper wrong.

  • Save AS Function Not working properly

    Hi,
    I have a weird problem in Adobe Acrobat 7.1. under Windows 7 (64 bit version).
    When i open a document i often want to Save it with the SAVE AS  function as a different name. To simplify the explenation , this is what i  do :
    1) Open pdf (either from local drive or internet)
    2) Click SAVE AS
    3) Browse to the location where you want to save the file.
    3) Then i click an existing Filename and change e.g. the last digit. e.g. if TEST.pdf exists i click it, edit it and change it to TEXT2.pdf.
    Now i always get the answer : Do you want to overwrite TEST.pdf. It never shows TEST2.pdf.
    I tried this for locally stored pdf, internet downloaded pdf's.... It always wants to overwrite the original file.
    ANYBODY any clue what this problem could be and how to solve it ?
    Greetings,

    Hi,
    Yes, typing a new name works. But, not selecting first an old name and then
    retyping to a new name. That will not work.
    Greetings,

  • Need Help With Save As function Very Important

    i working on a project and i have to create a Save As function for it. When you click on Save As its supposed to open a dialog window where u can choose the where you would like to save the file and what you would like to name it. I know there is alot wrong with my code but i'm not sure on how to fix it so any and all help is greatly appreciated
    private void doSaveAs(){
              //display file dialog
              FileDialog fDialog2 = new FileDialog (this, "Save As...", FileDialog.SAVE);
              fDialog2.setVisible(true);
              //Set the file name chosen by user
              String name = fDialog2.getFile();
              // user canceled file selection, return without doing anything.
              if(name == null)
                   return;
              fileName = fDialog2.getDirectory() + name;
              // Try to create a file writer
              FileWriter writer = null;
              try{
                   writer = new FileWriter(fileName);
              } catch (IOException ioe){
                   MessageDialog dialog = new MessageDialog (this, "Error Message",
                             "Error writing the file: "+ioe.toString());
                   dialog.setVisible(true);
                   return;
              BufferedWriter bWriter = new BufferedWriter(writer);
              //Try to write the file
              StringBuffer textBuffer = new StringBuffer();
              try {
                   String textLine = bWriter.write(2);
                   while (textLine != null) {
                        textBuffer.append(textLine + '\n');
                        textLine = bWriter.write(name);
                   bWriter.close();
                   writer.close();
              } catch (IOException ioe){
                   MessageDialog dialog = new MessageDialog (this, "Error Message", "Error writing file: "+ioe.toString());
                   dialog.setVisible(true);
                   return;
         setTitle("JavaEdit " +name);     // reset frame title
         text.setText(textBuffer.toString());
    null

    And again with indentation
       private void doSaveAs(){
       //display file dialog
       FileDialog fDialog2 = new FileDialog (this, "Save As...",     
       FileDialog.SAVE);
          fDialog2.setVisible(true);
       //Set the file name chosen by user
       String name = fDialog2.getFile();
       // user canceled file selection, return without doing anything.
       if(name == null)
          return;
       fileName = fDialog2.getDirectory() + name;
       // Try to create a file writer
       FileWriter writer = null;
          try{
             writer = new FileWriter(fileName);
          } catch (IOException ioe){
          MessageDialog dialog = new MessageDialog (this, "Error Message", "Error writing the file: "+ioe.toString());
                dialog.setVisible(true);
                return;
       BufferedWriter bWriter = new BufferedWriter(writer);
       //Try to write the file
       StringBuffer textBuffer = new StringBuffer();
       try {
          String textLine = bWriter.write(2);
          while (textLine != null) {
             textBuffer.append(textLine + '\n');
             textLine = bWriter.write(name);
          bWriter.close();
          writer.close();
       } catch (IOException ioe){
          MessageDialog dialog = new MessageDialog (this, "Error Message", "Error writing file: "+ioe.toString());
          dialog.setVisible(true);
          return;
       setTitle("JavaEdit " +name); // reset frame title
       text.setText(textBuffer.toString());
    }

  • Excel Save As functionality using ABAP

    Hi Gurus,
       I have an Excel file on Presentation server. I need to save this file in specified directory in Presentation server (Means Save As functionality). How can I do it in ABAP.
    Is there any API available. Could you help me on this.
    Thanks,
    Rayudu

    Hi,
    To upload the Excel file, please refer this thread :
    Re: Upload excel file
    To download the Excel file on application server, please refer this thread :
    Excel download in Application Server
    To summarize :
    You need to use GUI_UPLOAD to upload the excel file and need to use FM MS_EXCEL_OLE_STANDARD_DAT to download the excel file on application server.
    Best regards,
    Prashant

  • Acrobat Pro "save as" function in the file menu does not show the current directory of the file

    I have installed CC but Acrobat Pro gives me headaches.
    The "save as" function in the file menu does not show the current directory of the file but something I have worked on in the past.
    It forces me to navigates through my hard disk for this very straightforward thing in normal conditions. I precise: Acrobat is the only software reacting like that.
    I use Windows7 professional 64bits.

    I use what seems to be the latest version available on the Cloud:
    To illustrate my point, I open a directory with explorer and double-click on the only PDF in there:
    So here it is, open:
    When I do a "Save as", it takes me to a totally different place on the disk!
    Very annoying...
    Thanks for your time!
    JJ

  • Acrobat pro 9 "save as" function is greyed out

    I can't save pdf 's in acrobat 9 pro
    save as function is greyed out
    happened all of a sudden
    is this a registration problem with master collection ?

    bman99 wrote:
    oh thanks for the quick reply. Then there's really no reason to save templates, there nothing without the apple templates.
    that's not really true. you can make an email yourself, add some images to it if you want and customize it to your liking. you can save that as stationery. you can also make an html document using your favorite html editor, open it in safari and do command+i. this will open it in Mail and you can save it as stationery from there. you just can't easily customize the premade templates right from Mail. you can do it using the links I gave you though.
    Brandon

  • How do I save as a pdf while in acrobat cloud?  the "save as" function only lets me save as a complete webpage or html

    how do I save as a pdf while in acrobat cloud?  the "save as" function only lets me save as a complete webpage or html

    What application are you using?
    Acrobat's Save As has 21 choices available.
    Be well...

  • Original document should not copy thro save as Function in WORD & EXCEL

    Hi,
    When the microsoft originals like Word or XL file are displayed using ECL viewer in document display transaction (CV03N), the originals can be copied to local disc using " SAVE AS" function in microsoft word and excel menu. Is there any option to make those button in display mode.
    Please suggest.
    Regards
    Chandrasekaran

    Hi
    SAP DMS and also ECL Viewer & Office viewer does not have any authorization object for controlling "save as.." function.
    All existing authorization objects are related to Display originals. It means that if users have authorization object for Display an original, also they can "save as" this original.
    But you can set "save as" to gray (display) with ABAP codes by changing related screens.
    regard,
    akbar rangamiz

  • Save As Function Problems

    Hi Guys
    I hope you can help me, I'm fairly new to the MAC version of Excel and have always previously used Windows.
    I recently purchased a MacBook Air and am really happy with it apart from the fact that when I try to save an Excel document to a specific folder it doesn't let me choose that specific folder, it only gives me a handful of options for where I can save. Can
    you tell me a fix or give me some advice on how I can expand folders further when using the Save As function as with Windows?

    Hello,
    The current forum is for Windows-based developers and Excel specific programming questions. I'd suggest asking non-programming Office for MAC related questions in
    the corresponding forum thread instead.

  • SmartView disables the "Save As" Function in MS Excel 2007 / Vista

    Does anyone know how to get around this issue? I have Vista and Office 2007. When SmartView is installed, it does not allow me to use the "Save As" Function in Excel. SmartView has now rendered my Excel to be useless. Thank you Oracle.
    Does anyone have any thoughts?
    Thanks,

    Hi,
    Could this be related to this thread:
    Smartview Office Error (Unable to Save)
    Seb

  • How to disable Save & Print functionality in PDF form?

    Hi,
    This is the requrement, client need to disable Save & Print functionality in PDF form. (They not allow employee save & print the hrforms payslip)
    May I know how to do it. Thank you.
    What is the parameter value in structure SFPOUTPUTPARAMS  that I need to set in order to  disable Save & Print functionality ?
    call function 'FP_JOB_OPEN'
        changing
          ie_outputparams = SFPOUTPUTPARAMS
        exceptions
          others          = 1.

    Hi Nayan,
    I'm the person who did the WD as well, using IFrame to contain the PDF binary. WD site didn't contro the binary source.
    I pre-define the 'FP_JOB_OPEN' before calling the PDF generation.
    Optional: Set output parameters
      gs_outputparams-nodialog  = ''.
      gs_outputparams-preview   = ''.
      gs_outputparams-getpdf    = 'X'.
      gs_outputparams-nopreview = 'X'.
      gs_outputparams-noprint   = 'X'.
      gs_outputparams-noarchive = 'X'.
      gs_outputparams-nopributt = 'X'.
      gs_outputparams-arcmode = '1'.
      gs_outputparams-noarchive = 'X'.
    Open print job
      CALL FUNCTION 'FP_JOB_OPEN'
        CHANGING
          ie_outputparams = gs_outputparams
        EXCEPTIONS
          OTHERS          = 1.
    Regards,
    Eric

  • My MacBook pro mid 2012 doesn't seem to have a "save as" function, so I can't seem to save multiple page pdf's together after moving thumbnails into the sidebar. It only saves the first page. I can't figure out the rename function either. Help?

    My MacBook pro mid 2012 doesn't seem to have a "save as" function, so I can't seem to save multiple page pdf's together after moving thumbnails into the sidebar. It only saves the first page.
    I do have a 2008 version of Microsoft Office installed to save money, but that shouldn't affect things. I can't figure out the "rename" function either. Help?

    Oh, and I also reset my NVRAM, my computer hasn't frozen again yet, so I'm not sure if it has made a difference.

  • Security - Preventing "Save As" Functionality

    I am a user of Version 8 and have established password security in its strictest form.  My problem is that the Save As functionality is not prevented.  So you can perform a Save As file operation.  The new file does retain all the password security that was established with the parent file.  I need to find a way to prevent the Save As file operation from being performed.  As it is, when posted a pdf on the web, the user can still save a copy to their system.  I am having a tremendous problem with copyright infringement.
    Any suggestions?

    What is a bid process issues?  The files is question are public display for free genealogical research.  So you want the user to view the file, but not copy or edit the file.  Preferentially, I would not be adverse to printing.  But print to scan to reformat is an easy step; so no printing.  I also wish to prevent screen extraction / mining / scraping whatever it is called.  Which, I believe, would stop most data miners.  But I use FreeFind to index my pdf data files for the search capability that is provided.  Although FreeFind contends that it will block their index; I need to put it to the test.  I would hate to lose search capabilities.
    For the low to average user PDF security is a low cost and effective approach to copyright infringement.

Maybe you are looking for

  • Can't get music from my CDs to Ipod!!  Please help!

    I am SOOOO frustrated.  I told the sales person I needed something easy.  Told him I wanted an MP3 player for music only.  He told me the IPod Touch (4th) would be the best and easiest.  I've had it three days, and still don't have a song transferred

  • I can't display a document in solution manager after installing Sapgui 7.10

    After Installation of  SAPGUI 7.10 i can't display any documents  in solution manager! A failure message occurs "Document cannot be displayed" Message ID: SOLAR_DOC021! Does anybody have an idea ?

  • Safari browser too slow

    After upgrading to Mountain Lion, my Safari browser has slowed to a crawl and I see the spinning top all the time. What can I do to fix this ?

  • Process Chain elements

    Hello Gurus, I want to build a PC for Transaction Data from Flatfile. The Dataflow is: First PSA, then in a DSO, after that in an other DSO and at last into a Cube. The Dataflow is in BW3.5. Always Full upload... Can Some one explain me, what i Need

  • JSP - MVC coding standards

    It seems that the world of server-side MVC application development is getting quite fuzzy as to what technologies to utilize. For examples - EL once was in JSF now it is in JSP 2.0. - JSF has custom tags that overlap with JSTL - JSF seems to do what