How to open a labview 2012 code in labview 7?

Hi there,
  I have a vi code written in labview 7 and I open that in labview 2012, modify the code and save it. But when I open that in labview 7, it doesn't open. Is that any way that I can save the code in 2012 so which can be open in labview 7?

dragondriver wrote:
altenbach wrote:
You can only "save for previous" down to version 8.0. After that you need to open it in 8 and save for 7.1, then open it in 7.1 and save it for 7.0.
(details)
Easier might be to post the VI in the version conversion board.
I don't have labview 8, so there is no way to do so!? ...
You somehow ignored my second paragraph.
LabVIEW Champion . Do more with less code and in less time .

Similar Messages

  • How to open LabVIEW 7.x to 2012?

    How can I open the LabVIEW 7.X by LabVIEW 2012?  I tried but it failed.  Can I install both versions on the same machine? 
    Solved!
    Go to Solution.

    Please make sure that LV 2012 has the same toolkits/modules installed as you had for LV 7.x. Also driver APIs might be a source for "fails".
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • How to save vi designed in Labview 7.0 express, so that it opens in labview 4.1 ?

    I have student version of Labview on my computer and have designed a vi in it. However my lab as Labview 4.1. The "save with options" gives only option of saving it for 6.0 version. How do I save it so that my vi opens in labview 4.1
    Thanks
    Ujwal

    Every LabVIEW version only saves in the previous version, so you would need 6.1, 6.0, 5.1, and 5.0 to convert to 4.1.
    The main problem is that many features got added with each version upgrade, so it might not be possible to convert everything back if you use any new features in your VI (e.g. event structures).
    If the VI is rather simple, it might be easiest to just rewire it in 4.1. You can also post it here, maybe somebody has all versions still installed and can do it for you. (I can currently only go back to 5.1, earler versions are no longer installed).
    LabVIEW Champion . Do more with less code and in less time .

  • How to open and read Excel Sheet from SharePoint 2013 Document Library using C# Visual Studio 2012

    Hi,
    To achieve these are the steps that I had followed :
    1. Add the document Library path into Central Admin -> Application Mgmt -> Manage Service App -> Excel Service App -> Trusted File Locations
    2. Add Documnet Library link to Trusted Connection Proivder
    3. Open Visual Studio as Run as Administrator
    4.Create an SharePoint 2013 Empty Project.
    5.Add Service Reference : http:\\<server>\_vti_bin/excelservice.asmx
    6.Service added successfully
    7.Create a class file and add the Service Reference namespace
    There is no such class as ExcelService to call. 
    Please let me know if somebody knows how to open the Excel file into C#(2012)  either using ExcelService or any other way to open. I tried old methods of Sharepoint 2010 server but it's not able to access classes.
    Requirement is :
    Need to read the excel sheet  from Document Library and transfer all data into DataTable.
    Please help asap. 

    Hi,
    This is the forum to discuss questions and feedback for Microsoft Office, I'll move your question to the SharePoint 2013 development forum
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/home?forum=sharepointdevelopment
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    George Zhao
    TechNet Community Support

  • How to open a .MAT file in LABVIEW

    Hey everyone,
    I currently have a .MAT image file which I would like to open in LABVIEW to apply some image filters. However, I am unsure as to how to open the .MAT file in LABVIEW. Ideally I would like to be able to open the .MAT file without using matlab, and it seems the only way to accomplish this task is through the mathscript node. I have attached an example of the image im trying to open, as well as the LABVIEW program which I would like to use on the image. Thanks for the feedback! =]
    Attachments:
    MAT_Image_Adjust.zip ‏1779 KB

    Hi Boiler,
    1) Do you have a choice in the format you export your data from MATLAB?
    "ASCII Format
    Complete the following steps if you want to import or export data between LabVIEW and the MATLAB® environment, the process is straightforward as long as you are using ASCII format.
    From the MATLAB® environment to LabVIEW
    To save a vector or a matrix Xin ASCII format with tab delimiter, enter the following in the command window or m-script file in the MATLAB® environment:   
    >>SAVE filename X -ascii -double -tabs
        This creates a file whose name is filename, and it contains the data X in ASCII format with a tab delimiter.
    Import the file into LabVIEW using the Read From Spreadsheet File VI located on the Programming»File I/O palette.
    2) Have you tried using the mathscript node? Did you get any errors?
    "Binary Format
    Complete the following steps if you want to import or export data between LabVIEW and MATLAB®.
    From the MATLAB® environment to LabVIEW
    To read a .mat file in LabVIEW would require a VI to parse the file. This may be easier if each variable is saved to a separate file.
    " -- this was done here, no ideas if it still works,
    I want to read a Matlab MAT file into labview
    Hope this helps, James
    Kind Regards
    James Hillman
    Applications Engineer 2008 to 2009 National Instruments UK & Ireland
    Loughborough University UK - 2006 to 2011
    Remember Kudos those who help!

  • How to open labview program with Quit Labview function inside?

    Hi Any idea how to open labview program with  Quit Labview function inside?
    I forgot to add and set the condition of the type for this program.
    If the program is an application, it would close straight away.
    If it is still labview work, it will go straight to editing program without closing.
    So I need to recover, open it and make some changes.
    Clement
    Solved!
    Go to Solution.

    Put the VI in a project and open it from there, then it shouldn't autorun. You can use App.kind property of application to decide whether to close or not.
    /Y
    LabVIEW 8.2 - 2014
    "Only dead fish swim downstream" - "My life for Kudos!" - "Dumb people repeat old mistakes - smart ones create new ones."
    G# - Free award winning reference based OOP for LV

  • How do I write a javascript code to open InDesign File, import Doc, save and export to pdf?

    How do I write a javascript code to open InDesign File, import Doc, save and export to pdf?

    Hi hasvi,
    Need Template(.indt), textframes etc for the following script:
    var myFolderInd = Folder.selectDialog();
    var myFile = myFolderInd.getFiles("*indt");
    app.open(myFile)
    var myDoc = app.activeDocument;
    var myDocName = myDoc.name;
    var mySaveFile = app.activeDocument.save(myFolderInd.fsName + "/" + myDocName.split(".indt").join(".indd"));
    var myFolderDoc = Folder.selectDialog();
    var myFile1 = myFolderDoc.getFiles("*doc");
    mySaveFile.pages[0].textFrames[0].place(File(myFile1))
    //~ mySaveFile.place(File(myFile1))
    app.activeDocument.textPreferences.smartTextReflow = true;
    var myPDFFile = new File(mySaveFile.filePath + "/" + mySaveFile.name.split(".indd").join(".pdf"))
    myDoc.exportFile(ExportFormat.PDF_TYPE, File("~/Desktop/abc.pdf"));
    alert("Process Completed")
    Regards
    Siraj

  • How to open sdf files in SQL server 2012?

    How to open sdf files in SQL server 2012?
     I couldn’t figure out how to open the sdf files in SQL server 2012
     Thank you
     Best
     Jamal

    I don't think it's hard if understood the question properly you can try this I do it most of the time and this might be the solution for you, sometimes minor simple click is a life saver:)
    1. 
    Open SQL Server Management Studio, or if it's running select File -> Connect Object Explorer... and click the
    connect drop down arrow
    2. 
    In the Connect to Server dialog you will see Database Enghine, Analaysis Servie on so on and you go head change Server type to
    SQL Server Compact Edition
    3. 
    From the Database file drop-down as shown below click the drop down arrow and select <
    Browse for more...>
    4. 
    And you will see C:\, D:\, G:\
    drive and so on and open, your SDF file where it is located
    I hope this has been informative for you and good luck
    Please remember to click “Mark as Answer” on the post that has answered your question as it is very relevant to other community members dealing with same problem in seeking the right answer

  • How to open labVIEW 8 file in LabVIEW 7.1

    Hi
    I want to open a LabVIEW 8 file into LabVIEW 7.1 version? when i tried to open there is an error appiers and I couldnt open it so please give suggestion how to open it..
    Thank you 

    If you open the vi with a higher version of LV and save it, you can't open it with the earlier version, as I said before, because the vi is no backward compatible.
    What you could do is open the vi with LV8.0 and browse the menu to File >> Save for Previous Version. Then just follow the instructions given on the dialogs.
    Using LV8.0
    Don't be afraid to rate a good answer...

  • How to open an external file in Labview?

    Hi, Who knows how to open an external file in LabView? I want to open an .UDL file(data link API) which is a dialog window letting me input correlated database information, but I dont know how to open this type of file in my LabView Program.
    Thanks.
    Red

    A UDL is technically a text file, so you could open it with "Read Characters from file", put the result string into a string control, edit it and save it back using the "Write Characters to File".
    UDLs however have their own configuration dialog embedded in the Windows OS. You can use this dialog in your LabVIEW application. The attached VI shows how to create a new UDL. You can edit an existing UDL by switching the method node to PromptEdit and wiring in an open ADO connection reference.
    Attachments:
    ConfigureDatabaseConnection.vi ‏26 KB

  • How to open pdf in labview

    How to open pdf in labview?
    please help me
     1110340028

    Unfortunatly, most of the PDF questions I have seen recently aren't simply "How do I launch another application in Windows"
    Edit: What Jeff and Dennis were getting at in their own way is that you can easily launch adobe reader to display a pdf if that is your only goal.  See: http://digital.ni.com/public.nsf/allkb/68A6F2A00872837E862576940059C142
    I am also quite certain you could find an ActiveX object that would just display PDFs as well.

  • HT201394 I just updated my iPhone 4s to iso 8.2  How do I create a pass code to open my phone without using my password every time?

    I just updated my iPhone 4s to iso 8.2  How do I create a pass code to open my phone without using my pass word every time?

    I couldn't find the edit button on my original post so I am posting an update here.
    I have gone through more apps and have had good luck on all but one more.  And it's not that the app doesn't work, I am talking about the Yahoo Weather app, It works fine, but when you swipe between cities the screen lags a bit and it sometimes doesn't move between pages the way it should.  On iOS 7.1.2 it was smooth as butter but on iOS 8.0, not so much.  I will post a note in the app store to let them know.  I really like the Yahoo app better than the new stock app.
    I have been going through my games and they all work fine. Angry Birds (Original and Stella), Canabalt, Minecraft, Bejeweled 2, Silly Walks, PopWords, Doodle Jump, Deep Green all seem to work just fine. 
    Starbucks app works as it should. 
    I will stop back again next week after I have had the weekend to play with it in detail and post my thoughts again.

  • How to open dat file in labview

    how to open dat file in labview.???how to make use of biomedical startup kit for doing so???

    Please post this question on the Biomedical User Group here:  www.ni.com/biomedusers
    This is where you will find the best support for the Biomedical Starter Kit.
    Steve
    Visit the NI Biomedical User Group at:
    www.ni.com/biomedusers

  • [Q]: How to put MatLab 5.2 code (*.m) in LabVIEW 5 ?

    Hi,
    Is there somebody who know if it is possible (and how)
    to put MatLab 5.2 code (*.m) in LabVIEW 5.0 ?
    I use LabVIEW for my Audio sound and graphical Interface
    and I use MatLab for sound mathematic calculation....
    Thanks in advance.
    Best regards.

    Try to read this.
    http://digital.ni.com/public.nsf/3efedde4322fef198​62567740067f3cc/2f8ed0
    f588e06be1862565a90066e9ba?OpenDocument
    Paul
    In article <[email protected]>,
    [email protected] wrote:
    >
    > Hi,
    >
    > Is there somebody who know if it is possible (and how)
    > to put MatLab 5.2 code (*.m) in LabVIEW 5.0 ?
    > I use LabVIEW for my Audio sound and graphical Interface
    > and I use MatLab for sound mathematic calculation....
    >
    > Thanks in advance.
    > Best regards.
    >
    >
    Sent via Deja.com http://www.deja.com/
    Before you buy.

  • How to open sounds and audio properties using Labview function

    Hi All,
    How to open the sounds and audio properties of the control panel using the Labview system exe vi.
    Is there any dll also to open this property.
    If there is dll which is that and how to program the dll to serve my purpose.
    Solved!
    Go to Solution.

    Have you looked at the "Graphics and Sounds" section within the Functions Palette (Block Diagram)? There are VI's that already exist for this.
    R
    Message Edited by JoeLabView on 09-04-2008 07:44 AM
    Attachments:
    sounds.PNG ‏12 KB

Maybe you are looking for

  • Fiscal Year Variant change

    Hello, We are being asked to switch our fiscal year variant from 445 to calendar month based beginning 1/1/2010.  I am curious as to how to approach this change from the BW perspective. I first did a quick look at the system to see how and where fisc

  • Issue in Chart of Depreciation

    Respected Experts, I am facing an issue in assigning the chart of Depreciation to Company Code. The error implies that there should be one depreciation area for each parellel currency defined. Can you please guide me as to how I should go about creat

  • DCR-HC32 not being recognized

    Trying to transfer videos from a Sony Mini-DV camcorder ( Model DCR-HC32 ) to MacBook Pro (early 2013 model 15" with retina display). Trying to connect it via the Thunderbolt port on a Thunderbolt to Firewire adapter although it is not recognized via

  • AX and D-Link DI 604

    Howdy I've just moved and I'm using a new setup in my new pad. I am running a motorola surfboard cable modem into my D-Link router and then from the router to my Airport Express. The AX works great with printing and AirTunes but I cannot connect thro

  • Load  .flv dynamically or at runtime

    Hi, I stucked in a problem when i was trying to load Approptiate .flv file dinamically when I click on HTML hyperlinks. Actually I called a .flv file inside Flash Video using Action Script and as a result i got the approprite flash file played using