Convert Labview5 VI into Labview 2011

Hi
Who can please convert the attached VI's made in LV5 into LV2011?
Appreciate your time!
Fred
Attachments:
APBT data collection.vi ‏2146 KB
H-reflex data collection.vi ‏2155 KB

Both VIs you attached are saved with 7.1 and can be opened in 2011 without conversion.
Christian

Similar Messages

  • Conversion of 5.1 file into Labview 2011

    Could you convert this VI from 5.1 to 2011
    Thank you
    Solved!
    Go to Solution.
    Attachments:
    from 5.1 to labview 2011.vi ‏959 KB

    Attached as 8.2. Hope you know the password.
    Attachments:
    from 5.1 to labview 2011.vi ‏309 KB

  • Transfring from CSV file to LabVIEW 2011 and view it in XY Graph

    Hi, I would like to seek for your assistance in my project.
    I have an excel file which is in CSV format and intend to transfer it into LabVIEW 2011.
    I want to create a storage to store all the excel file for viewing purpose and in the mean while I want to view it in graph form. 
    Hope to that you will be able to help me with this. Thank you.
    Attachments:
    History_power2013-10-27 12-53-32 ch1 tv ch 2 fan.csv ‏209 KB

    Thank you for replying.
    But I have problem displaying the whole CSV file.
    However, I have a batch of CSV file to monitor, so is there a way to consolidate all the data in one page?  
    Attachments:
    Open CSV file and history files.vi ‏33 KB

  • LabVIEW 2011 to 2010

    Hi all, 
    Need help to convert VIs attached below (LabVIEW 2011) to LabVIEW 2010.
    Thank you very much
    Solved!
    Go to Solution.
    Attachments:
    Arduino mod for apc220-43.zip ‏4908 KB

    Here you go.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines
    Attachments:
    NET Basic Serial Write and Read (1).vi ‏17 KB

  • Convert from LabVIEW 2011 to LabVIEW 9.0

    Please convert from LabVIEW 2011 to LabVIEW 9.0
    Attachments:
    Watlow Vis.zip ‏76 KB

    Looks like somebody forgot to attach the zip file.  Here you go.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines
    Attachments:
    Watflow.zip ‏57 KB

  • How to convert a optionset into multi selection picklist in crm 2011 using javasacript??

    hi,
    where user want to select not only one but multiple value
    from a pick list. I tried  examples but it shows some errors.
    How  to do it??

    Hey I meet a problème on my development see my result :
    link : https://social.microsoft.com/Forums/getfile/652331
    a multiple select list on my crm 2013 I do this process on this forum :
    link : https://social.microsoft.com/Forums/en-US/2db47a59-165d-40c9-b995-6b3262b949eb/how-to-convert-a-optionset-into-multi-selection-picklist-in-crm-2011-using-javasacript?forum=crmdevelopment
    my development :
    // var_sc_optionset >> Provide schema-name for Option Set field
    // var_sc_optionsetvalue >> Provide schema-name for field which will store the multi selected values for Option Set
    // OS >> Provide Option Set field object
    // OSV >> Provide text field object which will store the multi selected values for Option Set
    //Method to convert an optionset to multi select Option Set
    function ConvertToMultiSelect(var_sc_optionset, var_sc_optionsetvalue, OS, OSV)
    if( OS != null && OSV != null )
    OS.style.display = "none";
    Xrm.Page.getControl(var_sc_optionsetvalue).setVisible(false);
    // Create a DIV container
    // var addDiv = document.createElement("<div style='overflow-y:auto; color:#000000; height:160px; border:1px #6699cc solid; background-color:#ffffff;' />");
    var addDiv = document.createElement("div");
    addDiv.style.overflowY = "auto";
    addDiv.style.height = "160px";
    addDiv.style.border = "1px #6699cc solid";
    addDiv.style.background = "#ffffff";
    addDiv.style.color = "#000000";
    OS.parentNode.appendChild(addDiv);
    // Initialise checkbox controls
    for( var i = 1; i < OS.options.length; i++ )
    var pOption = OS.options[i];
    if( !IsChecked( pOption.text , OS, OSV) ){
    // var addInput = document.createElement("<input type='checkbox' style='border:none; width:25px; align:left;' />" );
    var addInput = document.createElement("input" );
    addInput.setAttribute("type","checkbox");
    addInput.setAttribute("style","border:none; width:25px; align:left;");
    else {
    // var addInput = document.createElement("<input type='checkbox' checked='checked' style='border:none; width:25px; align:left;' />" );
    var addInput = document.createElement("input" );
    addInput.setAttribute("type","checkbox");
    addInput.setAttribute("checked","checked");
    addInput.setAttribute("style","border:none; width:25px; align:left;");
    // var addLabel = document.createElement( "<label />");
    var addLabel = document.createElement( "label");
    addLabel.innerText = pOption.text;
    // var addBr = document.createElement( "<br />"); //it's a 'br' flag
    var addBr = document.createElement( "br"); //it's a 'br' flag
    OS.nextSibling.appendChild(addInput);
    OS.nextSibling.appendChild(addLabel);
    OS.nextSibling.appendChild(addBr);
    ///////Supported functions
    // Check if it is selected
    function IsChecked( pText , OS, OSV)
    if(OSV.value != "")
    var OSVT = OSV.value.split(";");
    for( var i = 0; i < OSVT.length; i++ )
    if( OSVT[i] == pText )
    return true;
    return false;
    // var_sc_optionsetvalue >> Provide schema-name for field which will store the multi selected values for Option Set
    // OS >> Provide Option Set field object
    // Save the selected text, this field can also be used in Advanced Find
    function OnSave(OS, var_sc_optionsetvalue)
    var getInput = OS.nextSibling.getElementsByTagName("input");
    var result = '';
    for( var i = 0; i < getInput.length; i++ )
    if( getInput[i].checked)
    result += getInput[i].nextSibling.innerText + ";";
    //save value
    control = Xrm.Page.getControl(var_sc_optionsetvalue);
    attribute = control.getAttribute();
    attribute.setValue(result);
    I have to do 2 field one is option list field and the second is textfield, 
    option list field : new_books
    textfiled          : new_picklistvalue
    my js is on onload event see : 
    link : https://social.microsoft.com/Forums/getfile/652333
    thanks you for you'r help 

  • I want to convert my source code in Labview 5.1 to labview 2011

    HI
    I want to convert a labview program which is in labview 5.1  to labview 2011 version
    i am not able to open the program in the 5.1 version.
    if there is no way to convert it ,then can you tell me if 5.1 version is avialable online that is compatible with the windows7 .?
    thanks
    Attachments:
    plant.vi ‏31 KB
    PID.vi ‏104 KB
    integration3.vi ‏18 KB

    Post your request in this Version conversion Board
    The best solution is the one you find it by yourself

  • Read 16 bit binary image into LabVIEW, convert to TIFF and display

    Hello,
    I have what is probably a simple problem - I have RAW images (1536 x 1944) saved in binary files consisting of unsigned 16 bit integers that I need to read into LabVIEW and be able to view on the front panel (so presumably convert to TIFF or something like that).  
    This is not information that was written using LabVIEW - it was actually written using the fwrite command in C++ if that is any help, and has no header information.
    I found this example VI:
    http://forums.ni.com/t5/LabVIEW/read-the-raw-image-file/td-p/505871/page/2
    The picture of the final VI solution that is posted at that link - it looked promising, but the flatten pixmap function appears to only take in 8 or 24 bit inputs, not 16 bit inputs, and I was unsure it if was possible to configure it for 16.  Is it possible to use this same structure to read in my binary files as well?  If so, what changes need to be made?  Otherwise do I need a different function?  I am very new to image processing in LabVIEW.  
    Thank You.

    Hello,
    The flatten pixmap function does not appear to be able to take in 16 bit inputs and I cannot find a function that flattens a 16 bit pixmap.  Is there any way you can convert your binary file into that of 8 or 24 bits?  
    Also, I don't know if this other forum thread may help or give context to the subject.
    http://forums.ni.com/t5/LabVIEW/Can-a-16-bit-image-be-displayed-in-a-picture-control/td-p/33347 
    Cameron T
    Applications Engineer
    National Instruments

  • Convert TCPIP_Nagle_algorithm.zip from LabVIEW 2012 to LabVIEW 2011

    Hello,
    can somebody convert the VIs in the zip file from LabVIEW 2012 to LabVIEW 2011 please. I need them to study.
    Thank you very much for your support.
    Solved!
    Go to Solution.
    Attachments:
    TCPIP_Nagle_algorithm.zip ‏63 KB

    Additionally I am sorry that I have put my post in LabVIEW and not under Version Conversion

  • Convert these VIs ZLibInflat​e,ZLibDefl​ate of LabVIEW version 5.0 into LabVIEW 2009

    Convert these VIs ZLibInflate.vi,ZLibDeflate.vi of LabVIEW version 5.0 into LabVIEW 2009

    Hi priyash,
    you should be able to download them with the VIPM.
    Mike

  • Converting HP-BASIC code into Labview or Labwindows

    I need some insight on as to whether I can use all my HP-Basic code in labview or labwindows and how? Can I create dlls and call them into labview or use the code itselg in LabWindows?
    Any information will be appreciated.

    A very long time ago, there was a BASIC version of LabWindows.  You could not convert a Rocky Mountain BASIC program directly, but it was a fairly simple fit.  You could then translate that into C code automatically through LabWindows.  That was one of its selling points; you didn't have to lose all of that old BASIC code.  About 10 years ago, they decided to go with only a C version of LabWindows and renamed it LabWindows/CVI.  This change was made because most people who were converting from BASIC to C already had and supporting two languages and a translator was very expensive (cost, memory, processing power, complexity, - expensive in every way). 
    If someone has an old version, you might have an upgrade path with your old code (no, I don't have any that old).  Otherwise, you could build DLLs and call them with either LabVIEW or LabWindows/CVI.  You could also recreate the code with the newer language.
    Hope that this helps,
    Bob Young
    Bob Young - Test Engineer - Lapsed Certified LabVIEW Developer
    DISTek Integration, Inc. - NI Alliance Member
    mailto:[email protected]

  • Please Convert tktds5xx from LabView 2012 to LabView 2011.

    I was directed here to have an instrument driver converted from LabView 2012 to LabView 2011.
    Thanks in advance!
    Solved!
    Go to Solution.
    Attachments:
    tktds5xx.zip ‏777 KB

    Here you go.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Attachments:
    tktds5xx.zip ‏529 KB

  • Please Convert Vis from Labview 2013 to Labview 2011

    Please convert the attached Vis from Labview 2013 to Labview 2011
    Solved!
    Go to Solution.
    Attachments:
    Convert from2013 to 2011.zip ‏255 KB

    Here you go.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Attachments:
    Converted to 2011.zip ‏176 KB

  • Labview programming to convert weight measurement into mass flow

    Hello,
    I have continuous analog input measurement from weight scale. I want to convert the weight measurement to mass flow measurement.
    E.g.:
    1st minute weight measurement: 200kg
    2nd minute weight measurement: 300 kg
    3rd minute weight measurement: 350 kg
    and so on.
    I want to convert those weight into mass flow which is
    1st mass flow300-200)keg/1min = 100kg/min
    2nd mass flow: (350-300)kg/1 min = 50 kg/min
    and so on.
    So the weight and should be updated every minute, whatever the time value of while loop iteration.
    Can somebody give solution of this case with labview programming? (structure in block diagram)
    Thanks,
    Eko

    Hi Eko,
    is this some kind of homework?
    Well I suggest to use two shift registers to hold mass and time, then two subtract nodes to get the difference of current and old vlaue for both and finally a simple divide to get the mass flow...
    Look here to get the basics!
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Please convert Labview 2011 file to Labview 7.0

    Please convert Labview 2011 file to Labview 7.0. Thanks alot!
    Attachments:
    FreqResponse.vi ‏104 KB

    attached
    You will need to replace the front-panel graph. Downconversion sometimes corrupts graphs.
    Attachments:
    FreqResponse.vi ‏299 KB

Maybe you are looking for

  • Shared Photo Stream in Finder

    Good day anyone, I just restored my MacBook and I would like to have my Shared Photostream at my disposal at the sidebar in the Finder. I have seen several tutorials on how to do this with your regular Photostream, however. One of these steps was tha

  • How do I get itunes to import more than 100 songs from Windows music library

    I have been trying to import 175 songs from Windows music library inti itunes. The most itunes will accept is 100. Tried everything I know, need some ides.

  • ANN: Half-hour webinars (free) -- Web-based videos in PDFs (Apr 18) / Metadata in PDFs (Apr 25)

    (free; no fluff, no hype, no nonsense; starting 9am PT) Integrating web-based videos in your PDFs (with FrameMaker-to-Acrobat TimeSavers + Multimedia Asst) Thursday, April 18 https://www3.gotomeeting.com/register/954869454 Metadata in PDFs authored w

  • Weird audio issue pavilion dv6

    Hello, I recently bought a pavilion dv 6 (HP DV6-6B50ED), but i have a weird problem with the audio. Sometimes, the laptop randomly starts using the speakers for sound, even when i have plugged in headphones. This happens at random. For example, yest

  • Black screen after pm-suspend

    Last week I purchased a hp dv6 and immediately installed arch linux as the only operating system.  So far, everything seems to be working fine except that the screen will not turn back on when the laptop resumes from its suspended state.  I am using