I cannot run VI's made in LabView 8.2 in 8.5.

I have received a number of VIs from to control some hardware we bought for our lab. The VIs are made in Labview version 8.2, but we need to integrate them with our other projects made en version 8.5. The problem is that when we open the VIs made in 8.2 some of the input/output data types do not match so the VIs will not run.
When we open the VIs in version 8.2 they all match/work perfectly, but as we have a lot of projects made in 8.5 we cannot just use the older version.
Have anyone experienced this problem ??
Thank you in advance
/Lasse

8.5 isn't officially supported on 64 bit, so it might be a reason, though it usually works. If you install 8.5 on the 32-bit machine, does the same thing happen?
/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

Similar Messages

  • TS1277 I recently allowed an iTune update to be downloaded to my PC.  SInce then I'm getting a Run time Error "R6034 An application has made an attempt to load the C runtime library incorrectly."  THen I cannot run iTunes.

    I recently allowed an iTune update to be downloaded to my PC.  SInce then I'm getting a Run time Error "R6034 An application has made an attempt to load the C runtime library incorrectly."  Then I cannot run iTunes.  I tried "fixing" it, "Un-installing and re-installing iTunes.  Still getting the same message and not able to run iTunes.

    Follow the directions of tt2 in https://discussions.apple.com/thread/5822086 and note to run as admin

  • Get Error Message "itunes cannot run because some of its required files ...

    complete message that i see in a pop-up window -- "itunes cannot run because some of its required files are missing. Please reinstall itunes".
    I check windows update. Microsoft says I'm up to date. When I reinstall ipod off the CD and/or itunes/quicktime from iTunesSetup.exe file version 7.0.2.16 it installs ok. If I choose unintall then reinstall or if I repair the itunes software the install program says everything is fine.
    However when I connect to Ipod. The ipod window comes up in itunes and then shuts down real fast. Itunes continues to work but i can't see the ipod.
    The showstopper happens when i shut down itunes after the attempt to connect the ipod. When I restart itunes i get the message -- "itunes cannot run because some of its required files are missing. Please reinstall itunes".
    Reinstall **** resumes.
    What files are missing?
    It would be nice if the interface offered more details. Or I could go online to a self diagnostic and repair web page like Microsoft offers.
    Things should be made as simple as possible, but not any simpler. -- Einstien..
    I think things are too simple...
    What are my options?
    Help Please.

    "itunes cannot run because some of its required files are missing. Please reinstall itunes".
    Just uninstall and reinstall. If you get some kind of error in the uninstall process, then if it were me, I'd use windows system restore to restore your system right before the original install of iTunes. Even if you don't get the error when you uninstall, it sounds to me like it hasn't been installed properly. So if you decide to go with system restore and the same thing happens, I would download a fresh copy of iTunes installer from their website:
    http://www.apple.com/itunes/download/
    Make sure you download the one for Windows.
    "I check windows update. Microsoft says I'm up to date."
    This is because that you are. Microsoft has nothing to do with iTunes updates.

  • ITunes cannot run....problem with sound

    iTunes had been running on my PC. I've made no changes on my computer.
    Now when trying to open iTunes, this message appears and iTunes will not run:
    "iTunes cannot run because it has detected a problem with your audio configuration"
    I checked the audio config and it seems fine. My drivers are up to date. I removed the "Soundmax Integrated Digital Audio" driver then allowed it to re-install on its own. Sound still seems to work fine but iTunes will not open.
    Thanks in Advance for your assistance and ideas.
    John

    that one is typically caused by a problem with your QuickTime. (iTunes uses QuickTime for audio and video playback.)
    the following document may be of some assistance with that:
    iTunes 7 for Windows: iTunes had detected an audio configuration problem

  • Cannot run the macro 'YIELD'. The macro may not be available in this workbook or all macros may be disabled.

    Dear Sir,
              While i am calling Excel function through asp.net  using Excel 2003 i  was not facing any kind of issue it's working fine but while i am calling  Excel functions through asp.net using 
    Excel 2010  i am facing an issue even after enabling the micro in settings . issue is 
    "Cannot run the macro 'YIELD'. The macro may not be available in this workbook or all macros may be disabled." please solve this as soon as possible .
    Thanks & Regards
      Sanjeev

    // I made a singleton class and calling that class to access Excel functions
    Public Class Singleton
        Private Shared objexcel As Excel.Application
        Private Shared lock As New Object
        Private Sub New()
            System.Console.WriteLine("Instance of Singleton class created at : " & Now())
        End Sub
        Public Shared Function GetInstance() As Excel.Application
            SyncLock lock
                If objexcel Is Nothing Then
                    objexcel = New Excel.Application
                    objexcel.RegisterXLL(objexcel.LibraryPath & "\Analysis\ANALYS32.XLL")
                End If
                Return objexcel
            End SyncLock
        End Function
    End Class
    // Common Function for yield 
    Public Sub CalculateYield( _
               ByVal YTMDate As Date, ByVal FaceValue As Double, ByVal Rate As Double, _
               ByVal NonGovernmentFlag As Boolean, ByVal RateActualFlag As Boolean, _
               ByVal MaturityDate As Date, ByVal MaturityAmt As Double, _
               ByVal CouponDate As Date, ByVal CouponRate As Double, _
               ByVal CallDate As Date, ByVal CallAmt As Double, _
               ByVal PutDate As Date, ByVal PutAmt As Double, ByVal intFrequency As Int16, _
               ByVal strOption As String, ByVal dblResult As Double, ByVal strSemiAnnFlag As String)
            Try
                Dim decMarketValue As Double
                Dim intBasis As Int16
                decMarketValue = IIf(RateActualFlag = True, Rate * FaceValue / 100, Rate)
                decMarketValue = decMarketValue * 100 / FaceValue
                decMarketValue = objCommon.DecimalFormat(decMarketValue)
                MaturityAmt = MaturityAmt * 100 / FaceValue
                MaturityAmt = objCommon.DecimalFormat(MaturityAmt)
                CallAmt = CallAmt * 100 / FaceValue
                CallAmt = objCommon.DecimalFormat(CallAmt)
                PutAmt = PutAmt * 100 / FaceValue
                PutAmt = objCommon.DecimalFormat(PutAmt)
                intBasis = IIf(NonGovernmentFlag = True, 3, 4)
                If strOption = "Y" Then
                    With Singleton.GetInstance
                        If MaturityDate <> Date.MinValue And MaturityDate > YTMDate Then
                            dblYield = CType(Singleton.GetInstance.Run("YIELD", YTMDate, MaturityDate, CouponRate / 100, decMarketValue, MaturityAmt,
    intFrequency, intBasis), Double)
                            dblYTMAnn = CType(Singleton.GetInstance.Run("EFFECT", dblYield, intFrequency), Double)
                            dblYTMSemi = CType(Singleton.GetInstance.Run("NOMINAL", dblYTMAnn, 2), Double)
                            'End If
                            dblYTMAnn = dblYTMAnn * 100
                            dblYTMSemi = dblYTMSemi * 100
                        Else
                            dblYTMAnn = 0
                            dblYTMSemi = 0
                        End If
                        If CallDate <> Date.MinValue And CallDate > YTMDate Then
                            dblYield = CType(Singleton.GetInstance.Run("YIELD", YTMDate, MaturityDate, CouponRate / 100, decMarketValue, MaturityAmt,
    intFrequency, intBasis), Double)
                            dblYTCAnn = CType(Singleton.GetInstance.Run("EFFECT", dblYield, intFrequency), Double)
                            dblYTCSemi = CType(Singleton.GetInstance.Run("NOMINAL", dblYTMAnn, 2), Double)
                            'End If
                            dblYTCAnn = dblYTCAnn * 100
                            dblYTCSemi = dblYTCSemi * 100
                        Else
                            dblYTCAnn = 0
                            dblYTCSemi = 0
                        End If
                        If PutDate <> Date.MinValue And PutDate > YTMDate Then
                            dblYield = CType(Singleton.GetInstance.Run("YIELD", YTMDate, MaturityDate, CouponRate / 100, decMarketValue, MaturityAmt,
    intFrequency, intBasis), Double)
                            dblYTPAnn = CType(Singleton.GetInstance.Run("EFFECT", dblYield, intFrequency), Double)
                            dblYTPSemi = CType(Singleton.GetInstance.Run("NOMINAL", dblYTMAnn, 2), Double)
                            dblYTPAnn = dblYTPAnn * 100
                            dblYTPSemi = dblYTPSemi * 100
                        Else
                            dblYTPAnn = 0
                            dblYTPSemi = 0
                        End If
                    End With
                End If
            Catch ex As Exception
                Throw ex
            End Try
        End Sub
    // call  yield function
    GlobalFuns.CalculateYield(datYTM, decFaceValue, decRate, blnNonGovernment, blnRateActual, datMaturity, decMaturityAmt, _
                                   datCoupon, decCouponRate, datCall, decCallAmt, datPut, decPutAmt, Val(Hid_Frequency.Value
    & ""), "Y", 0, "")
    this code  is working in Excel 2003 but it's not working in Excel 2010
    //Error is
    Cannot run the macro 'YIELD'. The macro may not be available in this workbook or all macros may be disabled.

  • Run a cmd command in LabVIEW with parameters

    I have an executable program, for example myprogram.exe, located in "C:\Documents and Settings\myname\myprogram.exe" (I use windows xp 32 bit)
    When I run the program (by running cmd and type "myprogram.exe > to_text.txt" on the command line), the program will print out the result to that text file.
    But when I try to run the whole thing on LabVIEW, I can't manage to do so. LabVIEW only supports using the "Run Command" of Windows, not the cmd. (using the SystemExec vi)
    So how can I run "myprogram.txt > to_text.txt" on LabVIEW as I run it in cmd? Moreover, how can I send the break event (by pressing Ctrl+C in the cmd) by LabVIEW to stop the program?
    With my appreciations!

    I made this a while ago and haven't tested it too much but it should do what you want.  Provide the application path, then the switches in the array.  It does work with built in commands like dir and copy.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.
    Attachments:
    Execute Command Line With Switches.vi ‏24 KB

  • HT1338 i cannot run java with mountain lion

    i cannot run java with mountain lion

    @jnsmth
    I see Barney-15E made suggestions regarding Chrome preferences. There's also a setting on the Mac to deal with this. Regarding the drop-down menus not seeming to scroll through (such as a list of states)--where when you place or click your cursor over the drop-down menu and it only opens to some of the options in a list, I found that you have to change the scroll bar behavior in your computer's (and not the browser's) General Preferences within your System Preferences.
    Open System Preferences, and click on "General" inside the top row of "Personal Preferences" (as it is in my system with Mountain Lion, and I think prior operating systems before that).
    Once inside General Preferences, select the radio button option for your scroll bar which you'd like to use in the "Show scroll bar:" section ("Automatically based on mouse or trackpad," "When scrolling," or "Always." If you're using a mouse and not a trackpad, you'd probably want to select "Always" as it takes swiping over the drop-down list on the trackpad to enable (make visible) the scroll bar and/or scroll the list.
    Either with the installation of Mountain Lion, or the installation of my trackpad (I'm using a desktop iMac and not a Macbook / laptop) I found that the righthand scroll bars seem to automatically disappear. When I moused over or clicked on a drop-down menu (such as the list of states) I'd see only the first few options in the list. In order to access the rest of the states (get the list to scroll) you have to either have the scroll bar setting set to show "Always" or (if you have a trackpad) use the trackpad to swipe/scroll while hovering your cursor over the list's items to get it to scroll the list, and thus then show/reveal the lefthand scroll bar (which can then be accessed with your mouse if you prefer.
    This confused me at first when my scroll bars seemed to disappear, but was an easy fix.
    Hope that helps with that part of your issue.

  • "Xcode cannot run using the selected device" for no apparent reason.

    EDIT: It was just because I hadn't told Xcode to use my iPhone for development... I thought I had already done that. I also had to wait a few minutes after enabling it for development for it to actually work.
    I'm using Xcode 5 and an iPhone 5 for development. I made an app ID with the ID "com.myname.agreementfinder". Then I made a development provisioning profile linked to that app ID. In my developer provisioning profile dashboard, it clearly says that the app ID is "com.myname.agreementfinder". I downloaded the provisioning profile and put it on my iPhone using the Xcode organizer, no problems. So now I have a profile in my organizer that has the app identifier "U2M9******.com.myname.agreementfinder" (part of it censored). Not sure what that weird number at the beginning is, but my other profiles have one too.
    I have a project with the bundle identifier "com.myname.agreementfinder" and deployment target iOS 7.0 on iPhone, so it should work with that, right? Actually, the project was renamed from "FBFun". Well Xcode keeps saying that it can't run it on there because "No provisioned iOS devices are available with a compatible iOS version." I wish it would say which, invalid version or no provisioning profile
    How should I fix this? It seems like everything is already fine, yet it won't work. Could it be that renaming the project caused problems?

    I did. I did "Product -> Clean", it replied : "Clean vog_x20_new: Succeeded" and then I did "Product -> Build", and it replied "Build vog_x20_new: Succeeded".
    Ok, so I may have misunderstood my own problem. It's not a compilation problem. But, I still have the same message when I try to run the program (i.e. "Xcode cannot run using the selected destination").
    So it seems that I can build the project but I cannot run it.
    Here is a screenshot of the error windows
    So what should I do next ?
    Thanks for you attention and help.

  • What can I do to respond to an "Adobe Illustrator cannot run" message?

    I have a PC running Windows7 with a virtual machine running in XP Mode.  I loaded my old Adobe Illustrator 9.0 on the XP side.  The installation went smoothly.  When I try to start Illustrator I receive a "Adobe Illustrator cannot run" message.  Criptic to the point of being useless.  I used Windows Explorer to pull up all the Adobe files.  Nothing appears amiss.  Ideas/suggestions will be welcomed.
    Thanks 

    Well folks I finally got my "can't connect to iTunes" issues fixed. Seems that there was an unauthorized change to my email address and account therefore not allowing mr to connect to iTunes.
    Here is how I got it fixed.
    1. Contacted iTunes store support
    2. Followed their instructions and replyed with the following info:
    An order number from one of my purchases
    Last 4 digits of the c.c. Used for the iTunes store acct
    Answer to one of my security questions
    And 2 items from this list.
    Birthdate
    Billing address for Acct
    Phone number on acct
    It was after all of this that they saw that someone had made an account modification back in February when the issue began. Seems they changed my email address just slightly and that is what kept me from being able to sign in and not a password issue. This was likely due to a phishing email that came out in conjunction with iCloud asking users to change their passwords to a more secure form by adding a capital and number.
    To get all of this cleared up it took about 4 days as we emailed back and forth. I also needed a seperate email address they could use to send me info. Once they determined the issues and went to get them fixed by changing the email address associated with the acct and I created a new password I was able to access iTunes with no issues and even my previously thought lost acct balance was there.
    Hope this helps
    Crash

  • Cannot run xorg as non-root

    I have a fresh install of Arch Linux that is working great except I cannot run xorg as my normal login, only root.
    When I attempt to start X with either startxfce4 or startx, I get
    xf68openconsole: cannot open virtual console 1 (permission denied)
    XFCE is installed and works fine as root. I've done a lot of searching and I've found a lot of other people having this problem but none of their solutions have worked for me. I tried reinstalling xorg, checking my user permissions (I'm in the wheel group), and adding vt$XDG_VTNR to the end of my xserverrc file.
    I haven't used arch in a long time (before systemd) and I feel like a rank newbie! Nothing I have read suggests any need for permissions changes when installing X so I don't know why it's not working out of the box. I feel like it must be an obvious answer but I need someone to slap me in the face with it, obviously.
    Appreciate any help in advance-

    karol wrote:
    Post your ~/.xinitrc and the exact command you use e.g. 'startx' or 'startx -- :1 vt$XDG_VTNR -keeptty' etc. Make sure e.g. 'startx' is not aliased to something.
    Have you tried starting it from another tty? Do you run the stock linux console in the tty or e.g. tmux?
    Post the output of
    uname -a
    What's your hardware and graphics drivers?
    xinitrc here
    I am using startxfce4:
    [root@ninja-laptop /]# type startxfce4
    startxfce4 is /usr/bin/startxfce4
    I haven't made any changes to the console or tty so I'm assuming I'm running it in stock. I haven't tried starting from another tty.
    [root@ninja-laptop /]# uname -a
    Linux ninja-laptop 3.19.3-3-ARCH #1 SMP PREEMPT Wed Apr 8 14:10:00 CEST 2015 x86_64 GNU/Linux
    Thanks-

  • What is the difference in execution time between a program written in C language and the same program made with LabView?

    what is the difference in execution time between a program written in C language and the same program made with LabView?

    Hi Pepe
    You cannot say which is faster, the LV or the C programm. The only way to be sure is to program in both environments and to check than. Check this for some benchmark examples:
    http://zone.ni.com/devzone/conceptd.nsf/webmain/DC9B6DD177D91D6286256C9400733D7F?OpenDocument&node=200059
    Luca
    Regards,
    Luca

  • ITunes cannot run because it has detected a problem with your audio conf

    Yesterday iTunes worked, today it does not. Now every time I try to start iTunes I get the following error:
    "iTunes cannot run because it has detected a problem with your audio configuration"
    I have not made any changes or installed any new applications.
    I reinstalled iTunes and still get the same error.
    Windows media player works fine. I am running XP/
    Help, Please
    powerspec   Windows XP  

    I had that SAME problem and didn't change anything either.
    I have XP sp2. The only change that may have been made was an automatic software update because I added Apple as a trusted source.
    I uninstalled iTunes and reinstalled it and now a large portion of my songs do not work. It is a random selection of them, by various songs and artists.
    What does seem strange is they all have a the same last modified date. I went through my iTunes and deselected every song that doesn't work and then sorted by date.
    See the screen caps here:
    http://justanotherfangirl.com/ituneserror1.jpg
    http://justanotherfangirl.com/ituneserror2.jpg
    http://justanotherfangirl.com/ituneserror3.jpg
    They all have the same date. A system restore to a previous date doesn't solve the problem.
    Does anyone know if this is solvable. I refuse to lose 40 bucks worth of songs.

  • How do I install itunes on a windows 8 computer. I keep getting the message that the app cannot run on my computer.

    I cannot install itunes on my windows 8 computer. I get the message that the app cannot run on my computer.

    Hi mlheidt,
    If you are having trouble installing iTunes on your Windows 8 computer you may want to use the following article to help you get it up and running -
    Issues installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/HT1926
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • App cannot run on Windows Server 2012 R2

    I have an application that runs well on Windows Server 2012. The application has two editions 32-bit and 64-bit, both are from the same code base.
    However, on Windows Server 2102 R2, the x64 version of the application works, but the 32-bit version does not run. Invoking the 32-bit of the application generates the "This app cannot run on you PC" message.
    I tried the compatibility troubleshooting, and it does not help.
    Any suggestion on what could be the problem?
    Thanks.
    jwang

    <moved from Downloading, Installing, Setting Up to Photoshop General Discussion>

  • After fresh installation on a new machine, my licensed copy of Adobe Encore CS6 "cannot run in non-royalty serialized mode."

    "The application needs to be serialized with a royalty bearing serial number."
    I have done everything recommended in all of the other threads relating to this issue  -
    Uninstalled the entire CS and used the Adobe cleaner tool  - to no avail.
    Uninstalled just Encore and re-installed, nothing.
    And multiple combinations of the above mentioned.
    Really need this to work, ASAP. We've tried to contact Adobe via phone, chat, and other means. They are very to receive an audience from, it appears. Can anyone offer a different solution?
    This is for a brand new edit suite that is running Windows 7 pro, 32 GB of RAM, and the [email protected] GHz.

    I did not see this earlier. Forums are a bit odd today.
    Do you  have a subscription (to the cloud) or is this a perpetual license? You cannot run Encore in trial mode.
    Generally, with CS6 suite (or earlier?) this indicated that Premiere is not activated, or there is a problem with activation. What version are you trying to install?
    Unfortunately, the link that tells you how to fix this went missing in action some time ago.

Maybe you are looking for

  • Multiple threads?

    I'm new to Java and programming in general so this may be obvious to you veterans but it's like pulling teeth to me. Any help you could give me would be greatly appreciated. Here's my situation. I have an application in which I create a handfull of a

  • Mangal Fonts and Tunga Fonts in (MS Home and Student 2010) Word 2010 not getting converted into PDF

    Why do I get a totally blank PDF file whenever I try to convert any (Microsoft Office Home and Student 2010, Version: 14.0.6029.1000) Word document file containing either Mangal Fonts (Hindi) and Tunga Fonts (Kannada) into a PDF file (by using Adobe

  • Cube/query name is not available in trx MDXTEST

    Hi All I was trying to use a custom BI query on top of infocube 0CP_SLSC6 as a source for mdx queries. I have set the property Allow External Access To This Query in BEx for the custom BI query. But in trx mdxtest I cant see the cube name in CATALOG

  • Auto-Answer Option

    I have always wondered wht the Thunderbolt does not have an auto-answer option.  I happen to be helping an employee with his Droid 3 (he upgraded from a basic phone) and noticed that it was a setting on that phone.  I was hoping that with the all the

  • Analog to "IN" operator for ABAP?

    If I have a parameter into a function module (or subroutine, for that matter), that's a string and I need to process based upon certain groups of the possible values is there a way I can check using something like an "IN" operator? For example: IF p_