I am trying to use a Futek load sensor example and am running into all sorts of weird issues with the coding.

Eons ago, when I took the Labview I & II courses, I remember the instructor stating that correct VI's had to have error line.  I downloaded this VI example from Futek's website and the code doesn't  use it. I am trying to utilize it for some data collection rather than have to pay for their software that goes with the sensor.  When I first try to run the VI I get an error, and if I replace the formula they use, then undo the replacement it appears to work. The engineer that I am trying to help out is basically wanting to be able to read and also write a file during test, and I am running into all sorts of problems.  
If anyone could help me I would greatly appreciate it. 
Attachments:
FUTEK LabVIEW 10 Example 2.3.2003.3.vi ‏645 KB

The first error when I start to run the VI, is states that I need to insert disc 1 of Labview.
I can usually hit stop and run, stop and run, and then it will start "working".
Then I get the Formula: Library version is incompatible with XNode version.
If I replace the fomula, and then undo replace it will correct the broken start arrow.....
I took the labview 1 and 2 courses 5 years ago, and haven't been a regular user so I am what you would call extremely rusty. 
I have an engineer here that is wanting to use the sensor for some testing and can't really understand why I am having so many issues.
Do you know if NI has someone that might be able to work through this with me, or even if there is some Labview consultant that can be paid to help out?
Thanks,
Josh

Similar Messages

  • IMac isn't loading a specific website (can't connect to that server), regardless of browser, though the same website will load on other computers on same network. Is it an issue with the iMac's settings?

    Our iMac isn't loading a specific website (we get a message saying it can't connect to that specific server), regardless of browser (I've tried it in Chrome, Safari, and Firefox). However, the same website, which is for a major medical provider, loads without any issue on our other computers on the same wireless network. Is it an issue with the iMac's settings? All other websites seem to be loading without issue on the iMac.

    ... Is it an issue with the iMac's settings?
    Possibly. Make sure you are not using a proxy server. Look in Safari Preferences > Advanced > Proxies > "Change Settings..." This will take you to the applicable Network Preferences. Make sure that nothing is selected in the "select a protocol to configure" list. It should look like this:
    Still not working?
    Locate your Terminal app. It is in your Utilities folder. Open Terminal.
    In Terminal, copy (triple-click) and paste the following line:
    osascript -e 'tell application "System Events" to get name of every login item'
    This will produce a list of all your account login items.
    While you are in Terminal, copy (triple-click) and paste the following line:
    kextstat -kl | awk '!/com\.apple/{printf "%s %s\n", $6, $7}'
    This will produce a list of all non-Apple kernel extensions. There will be few, if any.
    Post the results of the above.

  • I am trying to use java  file as Model layer and jsf as presentation layer

    I am trying to use java file as Model layer and jsf as presentation layer and need some help
    I successfully get the value of h:outputText from java file by doing simple binding operation but I am facing problems when I am trying to fill h:dataTable
    I create java file
    package oracle.model;
    import java.sql.;*
    import java.util.;*
    *public class TableBean {*
    Connection con ;
    Statement ps;
    ResultSet rs;
    private List perInfoAll = new ArrayList();
    *public List getperInfoAll() {*
    perInfoAll.add(0,new perInfo("name","username","blablabla"));
    return perInfoAll;
    *public class perInfo {*
    String uname;
    String firstName;
    String lastName;
    *public perInfo(String firstName,String lastName,String uname) {*
    this.uname = uname;
    this.firstName = firstName;
    this.lastName = lastName;
    *public String getUname() {*
    return uname;
    *public String getFirstName() {*
    return firstName;
    *public String getLastName() {*
    return lastName;
    right click on the file and choose 'create data control'
    then i wrote the jsf file:
    *<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>*
    *<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>*
    *<f:view>*
    *<h:dataTable id="dt1" value="#{bindings.perInfoAll}"*
    var="item" bgcolor="#F1F1F1" border="10"
    cellpadding="5" cellspacing="3" rows="4" width="50%"
    dir="LTR" frame="hsides" rules="all"
    *>*
    *<f:facet name="header">*
    *<h:outputText value="This is 'dataTable' demo" id="ot6"/>*
    *</f:facet>*
    *<h:column id="c2">*
    *<f:facet name="header">*
    *<h:outputText value="First Name" id="ot1"/>*
    *</f:facet>*
    *<h:outputText style="" value="#{item.firstName}"*
    id="ot2"/>
    *</h:column>*
    *<h:column id="c4">*
    *<f:facet name="header">*
    *<h:outputText value="Last Name" id="ot9"/>*
    *</f:facet>*
    *<h:outputText value="#{item.lastName}" id="ot8"/>*
    *</h:column>*
    *<h:column id="c3">*
    *<f:facet name="header">*
    *<h:outputText value="Username" id="ot7"/>*
    *</f:facet>*
    *<h:outputText value="#{item.uname}" id="ot4"/>*
    *</h:column>*
    *<f:facet name="footer">*
    *<h:outputText value="The End" id="ot3"/>*
    *</f:facet>*
    *</h:dataTable>*
    *</center>*
    *</af:document>*
    *</f:view>*
    but nothing is appear in my table
    I know that there is something wrong in calling the binding object
    I need help pls and where can i find some help to deal with another tag types
    thanks

    i dragged the "perInfoAll" from my "Data Controls" and choosed adf table (even I know that new table with adf tags well be generated and i want table with jsf tags)
    and this code is generated
    *<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"*
    *"http://www.w3.org/TR/html4/loose.dtd">*
    *<%@ page contentType="text/html;charset=UTF-8"%>*
    *<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>*
    *<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>*
    *<%@ taglib uri="http://xmlns.oracle.com/adf/faces/rich" prefix="af"%>*
    *<f:view>*
    *<af:document id="d1">*
    *<af:messages id="m1"/>*
    *<af:form id="f1">*
    *<af:table value="#{bindings.perInfoAll1.collectionModel}" var="row"*
    *rows="#{bindings.perInfoAll1.rangeSize}"*
    *emptyText="#{bindings.perInfoAll1.viewable ? 'No data to display.' : 'Access Denied.'}"*
    *fetchSize="#{bindings.perInfoAll1.rangeSize}"*
    *rowBandingInterval="0"*
    *selectionListener="#{bindings.perInfoAll1.collectionModel.makeCurrent}"*
    *rowSelection="multiple" id="t1">*
    *<af:column sortProperty="uname" sortable="false"*
    *headerText="#{bindings.perInfoAll1.hints.uname.label}"*
    *id="c1">*
    *<af:inputText value="#{row.bindings.uname.inputValue}"*
    *label="#{bindings.perInfoAll1.hints.uname.label}"*
    *required="#{bindings.perInfoAll1.hints.uname.mandatory}"*
    *columns="#{bindings.perInfoAll1.hints.uname.displayWidth}"*
    *maximumLength="#{bindings.perInfoAll1.hints.uname.precision}"*
    *shortDesc="#{bindings.perInfoAll1.hints.uname.tooltip}"*
    *id="it3">*
    *<f:validator binding="#{row.bindings.uname.validator}"/>*
    *</af:inputText>*
    *</af:column>*
    *<af:column sortProperty="firstName" sortable="false"*
    *headerText="#{bindings.perInfoAll1.hints.firstName.label}"*
    *id="c2">*
    *<af:inputText value="#{row.bindings.firstName.inputValue}"*
    *label="#{bindings.perInfoAll1.hints.firstName.label}"*
    *required="#{bindings.perInfoAll1.hints.firstName.mandatory}"*
    *columns="#{bindings.perInfoAll1.hints.firstName.displayWidth}"*
    *maximumLength="#{bindings.perInfoAll1.hints.firstName.precision}"*
    *shortDesc="#{bindings.perInfoAll1.hints.firstName.tooltip}"*
    *id="it2">*
    *<f:validator binding="#{row.bindings.firstName.validator}"/>*
    *</af:inputText>*
    *</af:column>*
    *<af:column sortProperty="lastName" sortable="false"*
    *headerText="#{bindings.perInfoAll1.hints.lastName.label}"*
    *id="c3">*
    *<af:inputText value="#{row.bindings.lastName.inputValue}"*
    *label="#{bindings.perInfoAll1.hints.lastName.label}"*
    *required="#{bindings.perInfoAll1.hints.lastName.mandatory}"*
    *columns="#{bindings.perInfoAll1.hints.lastName.displayWidth}"*
    *maximumLength="#{bindings.perInfoAll1.hints.lastName.precision}"*
    *shortDesc="#{bindings.perInfoAll1.hints.lastName.tooltip}"*
    *id="it1">*
    *<f:validator binding="#{row.bindings.lastName.validator}"/>*
    *</af:inputText>*
    *</af:column>*
    *</af:table>*
    *</af:form>*
    *</af:document>*
    *</f:view>*
    but when run it i see the following errors
    *Class oracle.adf.model.adapter.bean.BeanDataControl can not access a member of class nl.amis.hrm.EmpManager with modifiers "private"*
    *Object EmpManager of type DataControl is not found.*
    *java.lang.NullPointerException*
    *Class oracle.adf.model.adapter.bean.BeanDataControl can not access a member of class nl.amis.hrm.EmpManager with modifiers "private"*
    *Object EmpManager of type DataControl is not found.*
    *java.lang.NullPointerException*
    :(

  • I am trying to use my adobe premiere elements 12 and when I go to click on a "new project" it takes me to the sign in page. Once I type my information in and click on "sign in" a little 'thinking circle' pops up and it just keeps spinning

    I am trying to use my adobe premiere elements 12 and when I go to click on a "new project" it takes me to the sign in page. Once I type my information in and click on "sign in" a little 'thinking circle' pops up and it just keeps spinning but it never ends up doing anything. Please help me with this issue. I really need to get this project started like yesterday. Thank you.

    dplum12
    What computer operating system is your Premiere Elements 12 running on? Did you have the opportunity to update 12 to 12.1 Update yet using an opened project's Help Menu/Update? If not, please do so when you get the opportunity.
    For now I will assume that your computer is Windows 7, 8, or 8.1 64 bit. Please try the following suggestions to overcome your Premiere Elements Sign In issue.
    http://www.atr935.blogspot.com/2014/04/pe12-premiere-elements-12-editor-will.html
    and, if you get any messages about Internet connect and the computer clock, please review the following
    http://www.atr935.blogspot.com/2014/04/pe12-sign-in-failure-connect-to.html
    Please let us know the outcome.
    Thank you.
    ATR

  • How can i remove iTunes 10.1.0.54 saying the feature you are trying to use is on a network resource...enter an alternate path to a folder contaning the installation package 'iTunes.msi'?

    How can i remove iTunes 10.1.0.54 saying the feature you are trying to use is on a network resource...enter an alternate path to a folder contaning the installation package 'iTunes.msi'?
    < Edited by Host >

    Unfortunately, this sort of trouble has gotten more complicated to deal with ever since Microsoft pulled the Windows Installer CleanUp utility from their Download Center on June 25. First we have to find a copy of the utility.
    Let's try Googling. (Best not to use Bing, I think.) Look for a working download site for at least version 3.0 of the Windows Installer CleanUp utility. (The results from mydigitallife and Major Geeks are worth checking.)
    After downloading the utility installer file (msicuu2.exe), scan the file for malware, just in case. (I use the free version of Malwarebytes AntiMalware to do single-file scans for that.)
    If the file is clean, to install the utility, doubleclick the msicuu2.exe file you've downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove".
    Quit out of CleanUp. Restart the PC, and try another iTunes install. Does it go through properly this time?

  • Hello, i have updated my iphone 5 black 16 gb to ios 7 ios 7.0.2 (11a501) and my battery has become worse it gives 9 hours of usage with out doing anything, i have done everything i tried, not using my iphone as well but still no change at all!

    hello, i have updated my iphone 5 black 16 gb to ios 7.0.2 (11a501) and my battery life of my iphone has become worse it gives 9 hours of usage with out doing anything, i have done everything every tip that is available online i had 3gs and 4s so i know how to save battry life,i even tried  not using my iphone as well but still no change at all!. i have upadted to ios 7.0.3 then downgraded it , i thought battery may be an issue ,so i put  brand new battery still no change , so what should i do ? , update to the latest version which is ios 7.0.4 or wait for the ios 7.1 , i was using iphone 4s running on ios 6.1 it gave me 3 days of battery timing , iphone 5 seemed to be very bad for me ,help ! ?
    its facory unlocked btw

    Try to do a reset, if it doesn't work try remove recently added apps this may solve your problem ( like google app because it has happened with me)
    Take a look at apps using your location service in privacy, it can cause battery draining.

  • I have an Airport Express that I am trying to use connected by ethernet to my iMac G4 running Mac OS 10.4.11.  I need to update the Airport software in order to use security option WPA2 Personal.  I currently have Airport software v. 5.6.1.

    I have an Airport Express that I am trying to use connected by ethernet to my iMac G4 running Mac OS 10.4.11.  I need to update the Airport Express softwart in order to use security option WPA2 Personal to connect to the internet through my Airport Extreme.  I currently have Airport Express software version 5.6.1.  How can I update this software? (I can connect directly to my Airport Extreme by ethernet and download the update that way).  Is a later version of A E software available for download anywhere?   Any suggestions would be greatly appreciated.
    Thanks.

    Download and install AirPort Utility 5.4.2 for Mac OS X 10.4.11 "Tiger" here:
    AirPort Utility 5.4.2
    Once installed, launch AirPort Utility. It will tell you if a firmware upgrade is available for your Express.

  • Loading File name and file contents into two separate tables using Sqlloadr

    Hi All,
    I have situtation like to load File contents into One table and File name into one table . File comes with .txt extension
    Example :
    File name : product_09_abc.txt
    File contents :
    Productcode
    ABC
    CDE
    EFT
    Can you please help me out this how can we acheive this using SQLLOADER.

    SQL*Loader will not pass through the filename for you to be able to insert into a table.
    You will need to have a controlling o/s script that picks up the file name, calls sql*loader and then also call's an SQL script (using sql*plus?) to insert the filename into a.n.other table.

  • HT2486 Iam trying to download data from a group in my address book into Numbers.  When I click on the data to move and drag to Numbers nothing happens.  Using OS X ver 10.9.2 iMac

    Iam trying to download data from a group in my address book into Numbers.  When I click on the data to move and drag to Numbers nothing happens.  Using OS X ver 10.9.2 iMac

    With Numbers 3.2 (released April 2014) drag and drop works on my machine again, either onto the canvas or into an existing table.
    What also works (as Wayne described): select multiple contacts, command-c to copy, and (after clicking the canvas or a cell) command-v to paste.
    SG

  • HT5622 When I tried to use my saved credit card, I made an error & it didn't work. Now, although the error is corrected, I keep getting a message that the card is declined. Can I fix this, or will the error time out?

    When I tried to use my saved credit card, I made an error & it didn't work. Now, although the error is corrected, I keep getting a message that the card is declined. Can I fix this, or will the error time out?

    Hello KGDJ,
    Thanks for using Apple Support Communities.
    When there is a mismatch between the iTunes Store's records and your credit card company's records, you will receive an error message
    For more information on this, take a look at:
    iTunes Store: My credit card's security code or zip code does not match my bank's records
    http://support.apple.com/kb/ts1646
    If the issue persists, contact your credit card company and verify that they and any company they use to process credit card authorizations have the correct information on file.
    Best of luck,
    Mario

  • My Seagate external 250GB hard drive ejects improperly without command.  I am trying to use Time Machine to backup my macbook via usb cable...  I keep getting the message that the disked ejected improperly...  Any solutions...

    My Seagate external 250GB hard drive ejects improperly without command.  I am trying to use Time Machine to backup my macbook via usb cable...  I keep getting the message that the disked ejected improperly...  Any solutions...

    You are not alone. Thousands have this problem, on various models of Macs. Short answer, it has something to do with the disk going to sleep (possibly?). You can't do anything about it and Apple won't address the problem. Maybe you should buy a time capsule. Just keep giving them money and use their proprietary equipment.
    For a more complete answer, see this thread (all 65+ pages of it with NO SOLUTION IN SIGHT... except for some 3rd party solutions that sometimes work, sometimes don't): Disk Drive ejecting itself

  • In trying to use Filelink, it asks for a software security device password - what is this? None of the passwords I can think it might be referring to work!

    In trying to use Filelink, it asks for a software security device password - what is this? None of the passwords I can think it might be referring to work!

    What is the exact error message?

  • I'm trying to connect to my home wifi with my imac gh5. After I enter the password it says connection timeout or password incorrect. I know there's no issue with the connection but I don't know what else to do. Does anyone know how to fix this problem?

    I'm trying to connect to my home wifi with my imac gh5. After I enter the password it says connection timeout or password incorrect. I know there's no issue with the connection but I don't know what else to do. Does anyone know how to fix this problem?

    What is the make & model of your home Wi-Fi router that you are attempting to connect your G5 iMac to? Which exact model of iMac do you have?
    What wireless security type is your router using: WEP, WPA, or WPA2? If you temporarily disable wireless security, can the iMac connect to it now?

  • I tried to restore my iPod Touch 2nd generation and now it won't sync to itunes.  on the screen it shows the usb end of the cord and the iTunes logo over it.  Is it broken?

    I tried to restore my ipod touch 2nd generation  and now it won't sync to itunes.    On the screen is the USB end of the cord and the iTunes logo over it.
    I have turned it off and on,  held the off button down and  the select button down but it still comes up with that picture on the screen.    Have I broken it?
    Please help.
    Mimi

    It means the device is in recovery mode.  You'll need to reconnect it to iTunes and restore it again.
    You may need to connect it in recovery mode manually using the instructions in this Apple support document.
    iOS: Unable to update or restore
    B-rock

  • Hi,I cannot use Acrobat after 30 days on my new PC Win7, seems to be an issue with activation.

    Hi,I cannot use Acrobat after 30 days on my new PC Win7, seems to be an issue with activation.
    Thanks
    Wolfgang

    Hi Sukrit,
    The software package was bought from german distributor CANCOM on 2013-01-03.
    I set up my account at Adobe and posted the serial number.
    This is the licence:
    After 30 days I could not use Acrobat. Most time I only need the distiller for creating pdf from
    Indesign. I reinstalled Acrobat several times, after 30 days it stops working again.
    I contacted the support but without success. This PC used WIN XP.
    Now I got a new PC win WIN7.
    I got the message to visit may account, which I did. I can't remember to ckeck the serial
    number.
    Photoshop and Indesign are working. Acrobat stopped after 30 days, this is the point my
    request started.
    Trying to put in the serial number again yields this:
    Please be so kind to clear this issue.
    With my best regards
    Wolfgang Sauer
    Am 4 Apr 2015 um 5:59 hat sukritd15 geschrieben:
    Hi,I cannot use Acrobat after 30 days on my new PC Win7, seems to
    be an issue with activation.
    created by sukritd15 in Acrobat Installation & Update Issues - View the full discussion
    Hi ,
    Could you please elaborate more about the issue?
    What are the challenges you are facing with activation of Acrobat ?
    The basic method to activate/license Acrobat is by typing in your Adobe credentials ,i.e Adobe
    ID and password.
    That will let you access Acrobat easily.
    Let us know if you are experiencing any more difficulties in activating Acrobat .
    Regards
    Sukrit Dhingra
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting:
    https://forums.adobe.com/message/7405504#7405504 and clicking `Correct´ below the answer
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To
    post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message
    please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7405504#7405504
    To unsubscribe from this thread, please visit the message page at ,
    click "Following" at the top right, & "Stop Following"
    Start a new discussion in Acrobat Installation & Update Issues by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to
    https://forums.adobe.com/thread/1516624.

Maybe you are looking for

  • How to display all available data for KFs from different Cubes

    Hi, I am using a MultiProvider that consists of two InfoCubes. KF1 uses Cube1, KF2 uses Cube2 - characteristic Country exists in both cubes. I have the following data: KF1 - Country 1: 5 KF1 - Country 3: 8 KF1 - Country 4: 10 KF2 - Coutnry 1: 9 KF2 -

  • Set request attributes from the request attributes

    Using struts chaining actions. When using chaining the requestAttributes are lost. Is there a way to get all the request attributes and set them back to the request again? if so how to do this? Thanks.

  • No sound in itunes 7

    ive just downloaded the new itunes 7 and updated my ipod and its all workin fine expect there is no sound, nothin at all! perfect sound in all other media players but nothin in itunes! any ideas? help!! windows xp    

  • How do I clear the recently edited files in the file menu?

    How do I clear the recently edited files in the file menu? (ie. cache)

  • LSMW - table controls

    Dear all, Could we upload data for table controls in LSMW? If yes please let me know how to go about it (if possible with an example plz) Thanks, Regards, Beeram