Don't understand Error code

I was reading a specific channel on a 6025E using the test of the card, i had this error code ;Possible reasons:
NI-DAQ LV: A channel, port, or counter is out of range for the device type or device configuration; or the combination of channels is not allowed; or the scan order must be reversed (0 last).
with a multimeter i can read 1,2V dc at this point (the right voltage). Could you help?
Caroline Paulin
R&D technician
Astroflex inc
Canada

What comes to mind first is that your reading is being done in differential mode and you have picked a channel that is out of range. remember that in diff mode the channels are in blocks of 8.
e.g.
0:7
16:23
32:39
if you are in diff mode and try to read channel 9 for example you will get that error.
Dan

Similar Messages

  • I keep getting this error message when I (right-click) on a photo file on my desktop to burn to a CD. I don't understand this code...does anyone?  Thanks  Ariel**:The disc can't be burned because an unexpected error occurred (error code 0x80020000).

    I keep getting this error message when I (right-click) on a photo file on my desktop to burn to a CD. I don't understand this code...does anyone?  Thanks  Ariel**:    The disc can’t be burned because an unexpected error occurred (error code 0x80020000).

    I tried every obvious solution to this problem with different types of disc (-R; +R; -RW and +RW) and the problem persisted.  Then I read about removing a hyphen in picture filenames.  I renamed all the images and bingo there were no further problems.  Apple should have solved this by now.  This error code has been reported for several years and my MacBook Pro is quite new.  Anyway, I hope this helps.  It does work.
    Piggywiggle

  • Don't understand error messages and how to resolve them

    I am having error messages that are confusing. I thought any fonts I used that were not web safe or in Typekit would turn to images, and there would be no problem. What are these errors about? When I view the site in Safari everything looks the way it should.
    Thanks for your help.
    Here is the site:
    http://marystephens.businesscatalyst.com/index.html

    Hi
    As you guess i 'am a newbie!
    I don't understand Inner Classes, particulary
    members(methods & fields) that an Inner method is
    able to manipulate.
    So I know that the methods of an Inner class
    (respectively Outer Class) instance can access
    members (private or public) of an instance of the
    Outer Class (respectively Inner Class).
    I tried to answer to a quizz :
    http://java.sun.com/developer/onlineTraining/new2java/
    supplements/quizzes/January03.html
    In the following class definition, which variables
    are inaccessible within the method of the inner
    class?
    class Test1 {
    public static int a = 1;
    private static int b = 2;
    public int c = 3;
    private int d = 4;
    public static class Inner {
    int e = 5;
    public void aMethod(int f) {
    int g = 6;
    // What can't be accessed here?
    }A.      b, c, d
    B.      c, d
    C.      b, c, d, f
    D.      None of them
    In my opinion members (public or private) of the
    Outer Class can be accessed by methods of the Inner
    Class; e.g: a, b, c,d thus for me the answer is
    D.
    Obviously i'm wrong, but why?Inner class method can access all the private members of the class. But the inner class is static. So the non-static members cannot be accessed directly (i.e. c and d).
    ***Annie***

  • Understanding Error Codes

    When I try to assign a Virtual inst to a track, I am getting "error -50 returned ny the CoreAudio driver"... what does this mean? Is there a site that list the error codes and their implacations? Help.

    You may find the errors listed in the CoreAudio SDK (available from Apple Developer's area).
    jord

  • Don't understand error message.

    Update: I'm looking for any ideas on this. I know it's hard without the full script. I'm more than happy to send it to you, but it is over 450 lines. All of the database functions work fine, as does an earlier version of this script from which there are only small changes to this version. I have searched through the the changes for several days.
    I'm getting the following error message on a script that I briefly changed from one that worked fine. All the database manipulations work fine. This exists only on my computer right now. The messages are:
    Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at C:\xampp\htdocs\lorianorg01\ssregister\ss07-finalregis.php:4) in C:\xampp\htdocs\lorianorg01\ssregister\ss07-finalregis.php on line 76
    Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at C:\xampp\htdocs\lorianorg01\ssregister\ss07-finalregis.php:4) in C:\xampp\htdocs\lorianorg01\ssregister\ss07-finalregis.php on line 76
    Here is the code, beginning at line 75:
    //Establish session variables
    session_start();
    $_SESSION['ss_id'] = $regis_ss_id;
    $_SESSION['ss_name'] = $regis_ss_name;
    $_SESSION['ss_nomonths'] = $regis_ss_nomonths;
    $_SESSION['ss_cost'] = $regis_ss_cost;
    $_SESSION['ss_homelink'] = $regis_ss_link;
    $_SESSION['email_address'] = $regis_email_address;
    $_SESSION['first_name'] = $regis_first_name;
    $_SESSION['last_name'] = $regis_last_name;

    Thanks for the reply!
    What follows is first 135 lines of code.  As I mentioned, this code in another script, works fine. I copied that code and pasted it into a new folder. I have made sure the links are still good and the database manipulations are all good using a new table. I believe that the problem is in the combination of copying the code and the changes I made. I have done a compare of the original and the changed scripts and studied it for hours to see if I can find an error. I've also put the code in Aptana to see if it picks anything up. Nothing.
    <?php  require_once('../Connections/classlist.php'); ?>
    <?php require_once('../Connections/ssrecords.php'); ?>
    <?php
    // [07] This script finalizes the registration and produces letters to Lorian and the registrant.
    //The above connections provide links to the LorianSchool database for classlist and ssrecords.
    //This function, generated by Dreamweaver, determines the type of information being retrieved from the database.
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    ?>
    <?php
    //Pick up the "record ID" (SS ID)
    $colname_DetailRS1 = "-1";
    if (isset($_GET['recordID'])) {
      $colname_DetailRS1 = $_GET['recordID'];
    //Get SS info from ssrecords table
    mysql_select_db($database_classlist, $classlist);
    $query_DetailRS1 = sprintf("SELECT * FROM ssrecords WHERE ssrecords.ss_id = %s", GetSQLValueString($colname_DetailRS1, "text"));
    $DetailRS1 = mysql_query($query_DetailRS1, $classlist) or die(mysql_error());
    $row_DetailRS1 = mysql_fetch_assoc($DetailRS1);
    $totalRows_DetailRS1 = mysql_num_rows($DetailRS1);
    $regis_ss_id = $row_DetailRS1['ss_id'];
    $regis_ss_name = $row_DetailRS1['ss_name'];
    $regis_ss_nomonths = $row_DetailRS1['ss_nomonths'];
    $regis_ss_cost = $row_DetailRS1['ss_cost'];
    $regis_ss_link = $row_DetailRS1['ss_homelink'];
    // Pick up the email address
    $colname_classentry = "-1";
    if (isset($_GET['email_address'])) {
      $colname_classentry = $_GET['email_address'];
    //Get the registrant information from the nameregistration table
    mysql_select_db($database_classlist, $classlist);
    $query_classentry = sprintf("SELECT * FROM nameregistration WHERE nameregistration.email_address = %s", GetSQLValueString($colname_classentry, "text"));
    $classentry = mysql_query($query_classentry, $classlist) or die(mysql_error());
    $row_classentry = mysql_fetch_assoc($classentry);
    $totalRows_classentry = mysql_num_rows($classentry);
    $regis_email_address = $row_classentry['email_address'];
    $regis_first_name = $row_classentry['first_name'];
    $regis_last_name = $row_classentry['last_name'];
    //Establish session variables
    session_start();
    $_SESSION['ss_id'] = $regis_ss_id;
    $_SESSION['ss_name'] = $regis_ss_name;
    $_SESSION['ss_nomonths'] = $regis_ss_nomonths;
    $_SESSION['ss_cost'] = $regis_ss_cost;
    $_SESSION['ss_homelink'] = $regis_ss_link;
    $_SESSION['email_address'] = $regis_email_address;
    $_SESSION['first_name'] = $regis_first_name;
    $_SESSION['last_name'] = $regis_last_name;
    //Prepare to write the class registration record in SSregis table
    mysql_select_db($database_ssrecords, $ssrecords);
    $query_registration = "SELECT * FROM ssregis";
    $registration = mysql_query($query_registration, $ssrecords) or die(mysql_error());
    $row_registration = mysql_fetch_assoc($registration);
    $totalRows_registration = mysql_num_rows($registration);
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    //On clicking Submit, insert a new record in the ssregis table   
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      $regis_paid_code = $_POST["submit"];
      $insertSQL = sprintf("INSERT INTO ssregis (email_address, ss_id, ss_cost, reg_date, paid_code) VALUES (%s, %s, %s, %s, %s)",
            GetSQLValueString($regis_email_address, "text"),
                           GetSQLValueString($regis_ss_id, "text"),
                           GetSQLValueString($regis_ss_cost, "double"),
            GetSQLValueString($regis_reg_date, "date"),
            GetSQLValueString($regis_paid_code, "text"));                   
      mysql_select_db($database_ssrecords, $ssrecords);
      $Result1 = mysql_query($insertSQL, $ssrecords) or die(mysql_error());
      $regis_regid = mysql_insert_id();
      //Get ID of registration record just written in ssregis
      mysql_select_db($database_ssrecords, $ssrecords);
      $query_registration = "SELECT * FROM ssregis WHERE reg_id = '$regis_regid'";
      $registration = mysql_query($query_registration, $classlist) or die(mysql_error());
      $new_row = mysql_fetch_assoc($registration);
      //If using PayPal go to Paypalregis.php
      if ($regis_paid_code == "PayPal")  {
      $insertGoTo = "\ssregister\ss08-ppregis.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
    $insertGoTo .= "&reg_id=".$new_row['reg_id'];
      else  {
      //If not using PayPal go to Lorian Home page.
      $insertGoTo = "lorianorg01/index.html";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
    $insertGoTo .= "&reg_id=".$new_row['reg_id'];
    header(sprintf("Location: %s", $insertGoTo));

  • Don't understand error message from HTML parser?

    I've written a simple test program to parse a simple html file.
    Everything works fine accept for the <img src="test.gif"> tag.
    It understands the img tag and the handleSimpleTag gets called.
    I can even pick out the src attribute. But I get a very strange error message.
    When I run the test program below on the test.html file (also below) I get the following output:
    handleError(134) = req.att srcimg?
    What does "req.att srcimg?" mean?!?!?
    /John
    This is my test program:
    import javax.swing.text.html.*;
    import javax.swing.text.*;
    import javax.swing.text.html.parser.*;
    import java.io.*;
    public class htmltest extends HTMLEditorKit.ParserCallback
    public htmltest()
       super();
    public void handleError(String errorMsg, int pos)
       System.err.println("handleError("+pos+") = " + errorMsg);
    static public void main (String[] argv) throws Exception
        Reader reader = new FileReader("test.html");
        new ParserDelegator().parse(reader, new htmltest(), false);
    This is the "test.html" file
    <html>
    <head>
    </head>
    <body>
    This is a plain text.<br>
    This is <b>bold</b> and this is <i>itallic</i>!<br>
    <img src="test.gif">
    "This >is also a plain test text."<br>
    </body>
    </html>
    ----------------------------------------------------------------------

    The handleError() method is not well documented any more than whole javax.swing.text.html package and its design structure. You can ignore the behavior of the method if other result of the parser and your HTML file are proper.

  • Don't understand the code, about boucing ball

    this is a program intends to create a ball and let the ball bouncing until it reaches the right side of the console. It's in the stanford cs106a course.
    I don't the part:
    // assume bounce will move ball an amount above the
    // floor equal to the amount it would have dropped
    // below the floor.
    double diff = ball.getY() - (getHeight() - DIAM_BALL);
    ball.move(0, -2 * diff);does the ball actually reaches the bottom of the console, and them let the ball moves back upwards with the distance 2diff?
    thanks a lot!
    beside, I'm new in this forum, how to let the code show in the code mode? Cause it seems hard to read right now.
    Here is the whole program:
    * File: BouncingBall.java
    * This program graphically simulates a bouncing ball.
    import acm.program.*;
    import acm.graphics.*;
    public class BouncingBall extends GraphicsProgram {
    /** Size (diameter) of the ball */
    private static final int DIAM_BALL = 30;
    /** Amount Y velocity is increased each cycle as a
    * result of gravity */
    private static final double GRAVITY = 3;
    /** Animation delay or pause time between ball moves */
    private static final int DELAY = 50;
    /** Initial X and Y location of ball */
    private static final double X_START = DIAM_BALL / 2;
    private static final double Y_START = 100;
    /** X Velocity */
    private static final double X_VEL = 5;
    /** Amount Y Velocity is reduced when it bounces */
    private static final double BOUNCE_REDUCE = 0.9;
    /** Starting X and Y Velocties */
    private double xVel = X_VEL;
    private double yVel = 0.0;
    /* private instance variable */
    private GOval ball;
    public void run() {
    setup();
    // Simulation ends when ball goes off right hand
    // end of screen
    while (ball.getX() < getWidth()) {
    moveBall();
    checkForCollision();
    pause(DELAY);
    /** Create and place ball. */
    private void setup() {
    ball = new GOval(X_START, Y_START, DIAM_BALL, DIAM_BALL);
    ball.setFilled(true);
    add(ball);
    /** Update and move ball */
    private void moveBall() {
    // increase yVelocity due to gravity on each cycle
    yVel += GRAVITY;
    ball.move(xVel,yVel);
    /** Determine if collision with floor, update velocities
    * and location as appropriate. */
    private void checkForCollision() {
    // determine if ball has dropped below the floor
    if (ball.getY() > getHeight() - DIAM_BALL) {
    // change ball's Y velocity to now bounce upwards
    yVel = -yVel * BOUNCE_REDUCE;
    // assume bounce will move ball an amount above the
    // floor equal to the amount it would have dropped
    // below the floor.
    double diff = ball.getY() - (getHeight() - DIAM_BALL);
    ball.move(0, -2 * diff);
    }Edited by: 967521 on 2012-10-24 下午7:11
    Edited by: 967521 on 2012-10-25 上午7:43
    Edited by: Melissa13 on 2012-10-26 上午7:21

    Put your code between tags and it'll show correctly (you should edit the post now).                                                                                                                                                                                   

  • Business Content Install - Don't Understand Error

    I am trying to install InfoCube 0papa_c02 (HR InfoCube).  No active version of this cube exists in our system (BW 3.5).   
    I'm doing a simulation and chose "Only Necessary Objects."  The simulation fails because of this error:
    InfoObject 0DATEBIRTH is only allowed as an attribute (not in InfoProvider).
    I did not select 0DATEBIRTH to be activated since it's already in the system in the latest version.
    I also tried selecting it anyway but got the same error.
    (Note: I did not select most of the objects associated with this InfoCube because they're aleady in the system in the latest versions.)
    Can anybody help me?
    Thank you!
    Jo

    Bhanu -
    You are right.  0DATEBIRTH was marked as attribute only.  I unchecked that and reran the simulation in our sandbox and did not get any errors.
    Thank you for replying so quickly!
    Jo

  • Don not understand error message

    Hi Community,
    since I updated my Developer Studio from 2.0.5 to 2.0.8
    I'm permantly faced to a strange error message I can not deal with.
    Error stacktrace:
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Failed to create delegate for View com.sap.knutsidea.AdminView.
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.<init>(DelegatingView.java:50)...
    Would somebody be so kind and explain this to me? Thank's a lot for your always good help, Robert.

    Hi,
    now It's running. You were right. But I got another problem now. The Behaviour of my WD Application changed.
    I got a View which contains a tree control. For this tree control I implemented the method onActionSelect.
    public void onActionSelect(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent, com.sap.tut.wd.tree.wdp.IPrivateTreeView.ITreeNodeElement selectedElement )
        //@@begin onActionSelect(ServerEvent)
        if( selectedElement == null)
             wdContext.currentContextElement().setLabelname("Element = null");
        //wdThis.wdFirePlugToDispatcherView(selectedElement);
        //@@end
    If I check the parameter selectedElement now for null, I get true. That means this structure isn't filled out automatically anymore.
    Do you know something about API changes or how to fix this problem? Regards and thank's a lot, Robert.

  • Upgraded to Mac OS 10.10 - Photoshop CS5 crashed.  Downloaded installer - multiple errors _ don't understand error log

    How do I get Photoshop CS5 working again after OS 10.10 upgrade?

    Atlar please download and apply the updates directly from Product updates.

  • Podcast download error codes - what do the numbers mean? 8006, 3259 and 404

    While downloading podcasts I get error codes that I don't understand.
    error 8006
    error 3259
    error 404
    Sometimes when I refresh the request, they download.
    Also on the page showing the blue dot (meaning an unlistened podcast) there is often an exclamation point in a circle. What does that mean?
    Thank you in advance for your kind assistance.

    Something is a bit odd. Your line profile is set to "fast", yet you are showing FEC errors, which would imply the the line profile is "interleaved".
    Perhaps it keeps switching profiles, that would make me suspect a problem in the exchange?
    Have you tries resetting the home hub?
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Error code 21 on I tunes recovery

    Hi,
    I have a Iphone 3 gs, it went into recovery mode, so I logged in to I tunes recovery and my computer crashed!!!
    Now when i sync it with I tunes it showes an Iphone connected but no serial number or memory size! also I tryed recovery again and it gets half way through then comes up with error code 21.
    !!! Help please!!!

    Try this support document for understanding error codes http://support.apple.com/kb/ts1275

  • Report server, error code 186

    I installed 9ias(http server, forms &report server , oem server) on windows 2000, but the report server don't startup, error code 186. can you tell me how to resolve the problem.

    Hi Qiang,
    Please check http://metalink.oracle.com/metalink/plsql/ml2_documents.showFrameDocument?p_database_id=NOT&p_id=1047650.6 for possible solutions for this error.
    Thanks,
    Erik

  • Is there a range of error codes reserved for user defined error codes?

    I would like to create my own error codes for a CVI dll but I want to make sure I don't use error codes already defined for something else. Is there a range reserved for such use?
    Samee thing for warnings (errorcode > 0)
    Thanks

    I have never found a positive mention of a "safe" range of error codes available for user-defined error conditions, but I can suggest you some source of informations.
    First of all, every library has its specific list of error codes, usually listed in the relative include file. All these error codes are listed in the online help too (search for "error codes" in the index tab of the help).
    Second, GetGeneralErrorString () is a function that can be used to trap errors of the following libraries with a unique error function:
    User Interface Library
    Easy I/O instrument driver
    Toolbox instrument driver
    ActiveX Library
    DIAdem Connectivity Library
    .NET Library
    DataSocket instrument driver
    Network Variable Library
    Real-Time Utility Library
    TDM Streaming Library
    UDP Support Library
    This means that the error codes from this libraries do not overlap, so you could derive from its code some ranges not used by these libraries.
    Nevertheless, there is not a single function for error trapping: every library has its proper list of error codes and a function to decode them in human readable form, andthere is no guarantee that these ranges does not overlap. It's up to you to trap errors from every function in the proper way.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Error code : 36888

    Registration is done.
    The error code is : 36888
    Message :
    已產生嚴重警示,並傳送給遠端端點。這可能會導致連線終止。TLS 通訊協定定義的嚴重警示代碼為 40。Windows SChannel 錯誤狀態為 252。
    The Windows system will stop within 24 hours. After reboot, it works again for a certain period of time.
    Please advise
    Mr. Leung

    Hi Ronald.
    Can you peform the below steps and see if it helps?
    1) In Group Policy Editor (run: gpedit.msc),  went to Computer Configuration > Administrative Templates > System > Distributed COM > Application Compatibility and enabled "allow local activation security check exemptions"
    if this does not help, then, follow the below steps.
    1.      Open Internet Explorer.
    2.      Click Tools.
    3.      Click Internet Options.
    4.      Click Advanced tab.
    5.      Scroll down the list under Security, uncheck all the Use TLS options.
    6.      Click OK.
    Now restart the computer and check if the issue still occurs.
    Thanks,
    Umesh.S.K

Maybe you are looking for

  • FAILED INSTALLATION OF ITUNES 7 & ITUNES 6

    i've been reading the threads on problems installing iTunes v7 and it seems the common fix is to to do this: Go to HD>Library>Receipts> and remove the "iTunesX.pkg" to the trash. Then reinstall iTunes. Well this didnt work for me and the installer re

  • Can I download and install Creative Suite 6 Design Standard from the Adobe site?

    I purchased cs6 standard when I bought my laptop so I have the hard copy of the program. However, my laptop does not have a disc drive so I was looking to download the file online then enter my product code and serial number. Am I missing something o

  • "Open in Dashboard" option not available on text files

    I'm trying to web clip a text file that contains some reference information that I update from time to time. I've created a simple text file, put it in the Public folder of DropBox and have a URL that when I open in safari, displays the contents of t

  • Validation for profitability segment in Account document

    Hi Team, Currently We are using validation for cost object i.e. either cost center or WBS elements enter  in a  GL account line items and if we are enter both cost object then system will be give Error message . in this validation we have added valid

  • Load Balancing Two Servers

    i have two Solaris servers running 9iAS R2 OC4j. current patch level is 9.0.2.3 i'm trying to load balance the instances according to the instructions in this document: Oracle9i Application Server: mod_oc4j Technical Overview all i should need to do