Vision 8.2.1 evaluation Problem

Hi All
I had installed the Vision 8.2.0 Development Module evaluation mode and license day is expired before. Now, as i know that Vision Development Module upgraded to 8.2.1 & 8.5 version so  i want to try its new features for those 8.2.1 or 8.5 evaluation version first and then to suggest my boss to buy the license. However, when i set-up the Vision Development Module 8.2.1 version. NI Vision Assistant 8.2 can be work and show the 30 days evaluation. However, i can't use the NI Vision 8.2 in the LabVIEW 7.1 and it will show the message-"1074396157" and say that is the unlicensed mode. Therefore, i checked the license day by NI License Manager and it show that NI Vision Assistant 8.2 ="30th Oct 2007"(30-days) but NI Vision is indicate the expired license file and the expired date is the expired date of the prevision Vision 8.2.0 Development Module?
I don't know why i can not use the NI-Vision 8.2 in the LabVIEW 7.1 and the license day is the previous expired day of Vision 8.2.0 Development Module
Thanks
Regrads
Steve SO

Hello all,
I am new here. I have problem to upgrade my LabView. First, I have installed LabView version 8.0 and then upgrade to 8.2.1 version. This installation CD I got from my lecturer and her give to me for use in my final year project. The problem now is, I can open the LabView 8.0, but after I installed the 8.2.1, this LabView version can not open and it show it is evaluation only and the serial number is not matched. When I asked to my lecturer, she told me the serial number is still same with the 8.0 version and it available to upgrade for 3 years. I also, try to ask to the technical support when I attend the LabView seminar here, and their said try to send the serial number to the NI support to check if there have any problem. But until now, there is no reply from them, and I hope anybody from here will help me and give me the idea what I have to do...
Thanks =)

Similar Messages

  • ZEN Vision M 30GB Video Conversion problem: black scr

    My husband cannot display any video on his ZEN Vision M 30 GB. Any video converted comes over with ONLY audio, black screen (? no video display )This happened with the original firmware and software. I updated firmware and did all available software updates; no change. I had a previous ZEN Vision M 30GB, which did not have any problem with video conversion and display.Are there any known problems with specific Media Player versions, or QuickTime ?which may be a potential cause of this problem?( I have heard that this product works best with Media Player 9. )Anyone had similar problems, or have any ideas?Thanks,Ravenquille

    Problem apparently solved: Last night, I downloaded and installed the free program, SUPER. My husband has not had a problem so far; been working beautifully! Ravenquille

  • Custom Report Item CustomData evaluation problem in a subreport loop

    Came across a strange problem with the custom report item CustomData property evaluation when using a sub report loop.
    I have a master report, which contains a sub report component within a List. The List is bound to a dataset from which a numeric value is passed on to a sub report's report parameter, and from there further down as an argument to a sub report dataset. The sub
    report contains our custom image CRI, which is bound to the said dataset. This dataset outputs a base64 encoded image data value, which the CRI then renders.
    Now the problem is that only the first sub report iteration gets evaluated correctly, rest of them seem to get their CRI CustomData from the first iteration. So essentially the loop just outputs the same first sub report over and over again.
    However, if I make the List component do a page break after each sub report, then all the sub reports start getting rendered correctly. 
    Here's how the CustomData gets initialized in the CRI designer class:
    this.CustomData = new CustomData();
    this.CustomData.DataRowHierarchy = newDataHierarchy();
    this.CustomData.DataRowHierarchy.DataMembers.Add(newDataMember());
    this.CustomData.DataRowHierarchy.DataMembers[0].Group = newGroup();
    this.CustomData.DataRowHierarchy.DataMembers[0].Group.Name = this.Name + "_SingleGrouping";
    this.CustomData.DataRowHierarchy.DataMembers[0].Group.GroupExpressions.Add(new ReportExpression());
    this.CustomData.DataColumnHierarchy = new DataHierarchy();
    this.CustomData.DataColumnHierarchy.DataMembers.Add(new DataMember());
    DataRow row = new DataRow();
    DataValue value = new DataValue();
    value.Name = "Base64";
    value.Value = ""; 
    DataCell cell = new DataCell();
    cell.Add(value);
    row.Add(cell);
    this.CustomData.DataRows.Add(row);
    The CRI also exposes the CustomData's DataSetName and a Base64 property.
    Has anyone else seen something like this happen? Not sure if this could be an issue with our CustomData configuration/usage, the API documentation is pretty much non-existent as usual. Seems more like bug to
    me.
    Leo Wartinen, Predisys Inc.

    Hi WarLe,
    If I understand correctly, you are using a list control to contain the subreport in the master report. The dataset of the list contains the field which is passed as the parameter values of the subreport. When you render the report, only the first subreport
    gets evaluated correctly, rest of them seem to get their CRI CustomData from the first iteration, right?
    If in this scenario, it seems that you haven’t add a group in the list. We can try to add a group grouped on the field which is passed as the parameter values of the subreport to check the issue again. Besides, could you mind post the sample data for the
    dataset of the list and tell us the settings for the list control? Then we can make further analysis.
    If there are any misunderstanding, please elaborate the issue for further investigation.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Very strange EL evaluation problem

    Hi,
    I have a very strange problem atm.
    I'm trying the JNDI Resources example on tomcat.
    My test.jsp page looks like this:
    <%@ page contentType="text/html;charset=UTF-8" language="java" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql" %>
    <html>
    <head>
    <title>DB Test</title>
    </head>
    <body>
    <h2>Results</h2>
    <c:out value="${1+2+3}"/>
    <sql:query var="rs" dataSource="jdbc/JavaTest">
    select id, foo, bar from testdata
    </sql:query>
    <c:out value="${rs.rowCount}"/>
    <c:forEach var="row" items="${rs.rows}">
    Foo ${row.foo}
    Bar ${row.bar}
    </c:forEach>
    <br>
    </body>
    </html>
    The output of this page is this:
    Results
    ${1+2+3} ${rs.rowCount} Foo ${row.foo}
    Bar ${row.bar}
    As you can see these expressions are just written out to the browser and they are not being evaluated.
    The problem is not with tomcat itself because other jsp's without database access work perfectly.
    My web.xml file looks as follows:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    <description>MySQL Test App</description>
    <resource-ref>
    <description>blah</description>
    <res-ref-name>jdbc/JavaTest</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    </web-app>
    my context.xml file looks as follows:
    <Context path="/DBTest" docbase="DBTest.war" debug="5" reloadable="true" crossContext="true" useNaming="true">
    <Logger className="org.apache.catalina.logger.FileLogger"
    prefix="localhost_DBTest_log." suffix=".txt" timestamp="true"/>
    <Resource name="jdbc/JavaTest"
    auth="Container"
    type="javax.sql.DataSource"/>
    <ResourceParams name="jdbc/JavaTest">
    <parameter>
    <name>factory</name>
    <value>org.apache.commons.dbcp.BasicDataSourceFactory</value>
    </parameter>
    <parameter>
    <name>maxActive</name>
    <value>100</value>
    </parameter>
    <parameter>
    <name>maxIdle</name>
    <value>30</value>
    </parameter>
    <parameter>
    <name>maxWait</name>
    <value>10000</value>
    </parameter>
    <parameter>
    <name>username</name>
    <value>THiNG</value>
    </parameter>
    <parameter>
    <name>password</name>
    <value>**********</value>
    </parameter>
    <parameter>
    <name>driverClassName</name>
    <value>com.mysql.jdbc.Driver</value>
    </parameter>
    <parameter>
    <name>url</name>
    <value>jdbc:mysql://localhost:3306/javatest?autoReconnect=true</value>
    </parameter>
    <parameter>
    <name>removeAbandoned</name>
    <value>true</value>
    </parameter>
    <parameter>
    <name>logAbandoned</name>
    <value>true</value>
    </parameter>
    <parameter>
    <name>removeAbandonedTimeout</name>
    <value>300</value>
    </parameter>
    </ResourceParams>
    </Context>
    I've included the jstl.jar and standard.jar from the jstl package in the WEB-INF/lib directory, also the mysql-connector-java.jar (JDBCDriver) is included in the web-inf/lib directory.
    Here is the logfile, which might contain the answer to my problem: (I removed the ResourceRef specification because it's exactly the same as in the context.xml file)
    2004-09-29 13:45:01 NamingContextListener[Catalina/localhost/DBTest]: Resource parameters for jdbc/JavaTest = ResourceParams[]
    2004-09-29 13:45:01 NamingContextListener[Catalina/localhost/DBTest]: Adding resource ref jdbc/JavaTest
    2004-09-29 13:45:01 NamingContextListener[Catalina/localhost/DBTest]: ResourceRef[............]
    2004-09-29 13:45:01 NamingContextListener[Catalina/localhost/DBTest]: Resource parameters for UserTransaction = null
    2004-09-29 13:45:10 NamingContextListener[Catalina/localhost/DBTest]: Resource parameters for jdbc/JavaTest = ResourceParams[......................]
    2004-09-29 13:45:10 NamingContextListener[Catalina/localhost/DBTest]: Adding resource ref jdbc/JavaTest
    2004-09-29 13:45:10 NamingContextListener[Catalina/localhost/DBTest]: ResourceRef[...........]: Resource parameters for UserTransaction = null
    Can somebody help me with this. I've been looking for a sollution for hours.
    I've been having problems setting up the jdbc-driver also, but I think this is solved now with these deployment descriptors. I don't have a single clue what is going on right now.
    ${} expression are simple NOT being evaluated.
    I don't think it's a database problem because I can see the user connections in the mysql monitor.
    Any ideas? All help is welcome and very much appreciated. :-)
    THANKS !!!
    PS: sorry for the extreme long post, I wanted to post all relevant information to track this strange behaviour down.

    Seems to be a problem with your web.xml not pointing to version 2.4.
    Just check this link too:
    http://www.mail-archive.com/[email protected]/msg07006.html
    HTH

  • Bid Evaluation Problem

    Hi Guys,
    During bid evaluation I need small modification.
    I have given 15 attribute during bid creation and then I have assigned serial number to those attributes (1 , 2 , 3 ..... 15)
    Vendor can see those attributes in sequential order that I have specified during bid creation. 
    I had downloaded the bid evaluation report from Analysis tab of bid invitation.
    But problem is that while evaluation of bid I am not able to see those attributes in that sequence. It is selected randomly. I need in same order.
    Thanks and Regards,
    Apparao A
    Message was edited by:
    Apparao A

    Hi
    Better to take screen shot printout by logging as Vendor user in the system
    and make the changes later on accordingly.
    Hope this will help.
    Pls reward suitable points.
    Regards
    -Atul

  • Creative Vision W : Stuck on "Firmware Problem" scre

    I've had my Vision: W player for about a year now, with no big problems (except for the fact that when I shut it down, it gets stuck on the "shutting down" screen for about 5 minutes, where I think it closes only because it's the idle shutdown. Any help on that, also?)
    Yesterday I tried teh Sync for the first time, seeing if I could syn DVD movies onto it. (I couldn't.) This morning, when I wanted to use it, I turned it on and it said "Firmware problem"
    This was before coming onto the forums. Well I decided to "Clean Up" and after that it still didn't work. I tried rebooting a couple of times, but nothing. Then, it being a firmware problem, I decided to press reload firmware - not knowing what i was doing. I decided at that time that it would be a good idea to back up my files before proceeding to any other ste
    ps.
    After connecting it to my computer, it simply said "Storage Media - 50 GB of 50 GB" and was completely empty.
    I, being devastated and helpless, found this site and decided I'll download the firmware then try reloading it again. Unfortunately the first time I tried updating it, it stopped updating near the end. I waited about 0 minutes but it still didn't finish. I disconnected my player and removed the battery because it wouldn't shut down any other way. After replacing the battery, connecting the player, and turning it on again, it simply got stuck on "Firmware Problem" on the screen.
    What do I do now?

    I tried doing that but it doesn't work. The firmware upgrade screen doesn't see my player as connected. I've tried having the palyer off, then turning it on, and disconnecting/reconnecting but even while it's connected the player isn't docked and still has the firmware problem screen.

  • PL/SQL Evaluation problem of where clause in case of  NUMBER column type

    I found the following problem in Oracle® Database 2 Day Developer's Guide 11g Release 1 (11.1) B28843-04:
    The sole parameter of function eval_frequency is employee_id IN employees.employee_id%TYPE.
    An ORA-01422 exception occurs when the execution reaches the following select command
    SELECT e.hire_date
    INTO hire_date
    FROM employees e
    WHERE employee_id= e.employee_id;
    A possible cause of the error is that the type of employee_id is NUMBER while the employees.employee_id is NUMBER(6,0) . The result of the selection is the same as there were no WHERE clause at all.
    Everything worked fine, when I declared a temporary variable of NUMBER(6,0) for storing the actual parameter of function and used this variable in the where clause, but I consider this "solution" as being no solution.
    It is pointless to use %TYPE parameter of a function for flexibility if I must degrade this flexibility by a fixed declaration of a temporary variable of the same type as the column in question.
    What is wrong?
    The Developer'Guide I used, the Oracle Sql Developer I used or the PL/SQL version ?

    Hi,
    Welcome to the forum!
    user8949829 wrote:
    A possible cause of the error is that the type of employee_id is NUMBER while the employees.employee_id is NUMBER(6,0) . The result of the selection is the same as there I don't think so. The variable employee_id is defined as having the exact same type as the eponymous column. Even if it didn't, I believe Oracle will always implicity convert between datatypes when possible, rounding if necessary. That may cause errors, but it isn't causing this error.
    No, the error has nothing to do with the data type. It has to do with the ambiguity of employee_id: is it a column, or is it a variable?
    The default is that it means the column name, so
    WHERE   employee_id = e.employee_idis equivalent to saying
    WHERE   e.employee_id = e.employee_idwhich isn't quite the same thing as not having a WHERE clause; rows with NULL employee_id would still be excluded, if there were any.
    I think it's best not to use variable names that are the same as column names. You could call the variable v_employee_id, or, since it's an IN-argument, in_employee_id.
    If you must use a variable that can be mistaken for a column, then qulaify it with the name of the procedure, like this:
    WHERE   eval_frequency.employee_id = e.employee_id
    Everything worked fine, when I declared a temporary variable of NUMBER(6,0) for storing the actual parameter of function That makes sens. You probably gave that variable a name that couldn't be mistaken for a column in the table.
    Edited by: Frank Kulash on Jan 12, 2011 8:27 PM

  • HR: Time Evaluation Problem (Urgent)

    Hi HR Expert,
    I am Working for HCM ABAP.
    Can any one tell me how to get Data from Table ZL (used in Time Evaluation) in my ABAP Report Program.
    Thanks in Advance,
    Regards,
    Rizwan

    Hi Pavan,
    First of all sorry for late reply but now i use your given Solution.
    Thanks for help.
    Rizwan

  • Novell Vibe 3.3 Virtual Evaluation Problem

    Hi,
    I have downloaded Novell Vibe 3.3 Virtual Evaluation trial version for testing
    After installation, I start the Firefox to access http://localhost and it has redirect to http://localhost:8080/ssf/a/ return HTTP Status 404 error
    Any idea about this case?
    Thanks

    Originally Posted by magic31
    Sorry, that still leaves use clueless of where you are at/what you have done. ;-)
    Installing Vibe "just out of the box" will most probably not work, as prerequisites need to be configured/set before starting the Vibe install (also have a look at the online documentation: Novell Documentation )
    As for my previous questions:
    Which OS (vendor/version, service pack level, arch [32/64bit]) have you installed Vibe on?
    Which Java JDK version are you using, and how have you configured it?
    Cheers,
    Willem
    Willem,
    The OP is using the Virtual machine provided by Novell, it includes -
    The Vibe Virtual Eval is a VMware image for use with VMware Player on Linux or Windows. It provides a "test drive" alternative to installing the Vibe evaluation software yourself. The Vibe Virtual Eval includes the following preinstalled software:
    Novell Vibe 3.3, ready to configure for immediate use in your existing network environment
    Novell Vibe 3.3 60-day evaluation license
    SUSE Linux Enterprise Server 11 32-bit
    MySQL 5.0.67 database
    DN

  • Time Evaluation: Problem with Absence Quotas

    Hi Gurus,
    When vacation days are keyed in advance, and at a later date are made inactive as a result of a LOA. What happens in those cases is that SAP still considers the absence valid and it remains as deducted from the vacation quotas.
    How can we prevent this and allow time eval to run correctly?
    Regards
    Naveen

    Hi Gurus,
    I will try to explain it more clearly.
    An employee records a vacation well in advance. for example, today I have entered vacation in IT2001 from 23.12.2009 - 31.12.2009. But then tomorrow I go on a leave of absence meaning I am on LOA from 18.12.2009 - 31.12.2009.
    What is happening now is since I recroded absence already, the quota has already been deducted. But later on the next day, even though I went on LOA, the system is not considering me as inactive and neglecting the absence which I recorded.
    So how should I prevent this quota from deducting?
    Regards
    Naveen

  • Zen Vision M capacity problem

    I have a 30GB Vision M, and had a problem during a sync. Now, I put a little over 800 songs on it and it says it is full.
    How can I restore the capacity?

    I just realized how stupid what I just sent you was!? It says "Total Space - 28565 MB", which I guess would
    be about right, since 30GM would be a little over 30000MB. I can't figure out why it will only take 800 songs,
    unless there is something on it that isn't showing up. It should hold 5 times that many.

  • ZEN VISION:M CHARGING PROBLEM - H

    [color="#ff0000"]ZEN VISION:M MP3 PLAYER CHARGING PROBLEM?My MP3 player was charging perfectly for the first 4 weeks of its life with me. I usually charged using the USB port on my computer. When connected, the player would come to life and the CHARGING ICON would appear and flash until the unit was fully charged and the CHARGED ICON would come on. Worked well. Now when I connect the player to the computer, instead of the CHARGING ICON coming on, the unit immediately begins playing music or going to the last mode it was in before being shut down previous to connecting for charging.
    I have tried a reset of the whole player but that did not make any difference. I?encounter the same problem when connecting the player to the car?charger/power adapter. Can anyone give me some assistance? Cure?Thanks,? David B.

    Lobsterboat wrote:
    [color="#ff0000"]ZEN VISION:M MP3 PLAYER CHARGING PROBLEMMy MP3 player was charging perfectly for the first 4 weeks of its life with me. I usually charged using the USB port on my computer. When connected, the player would come to life and the CHARGING ICON would appear and flash until the unit was fully charged and the CHARGED ICON would come on. Worked well.Now when I connect the player to the computer, instead of the CHARGING ICON coming on, the unit immediately begins playing music or going to the last mode it was in before being shut down previous to connecting for charging. I have tried a reset of the whole player but that did not make any difference. I encounter the same problem when connecting the player to the car charger/power adapter.Can anyone give me some assistance? Cure?Thanks, David B.
    I have exactly the same problem, but its because i've had to re-install windows and it wont deect it atall. Ive emailed creative support waiting for supply. i hope i get an answer soon

  • Problems with IMAQ Vision after upgrading from Labview 6i to Labview 6.1

    Hi,
    We just upgraded from Labview 6i to 6.1.To do this,we uninstalled the 6i version as was suggested by NI and then installed the 6.1 version.Later when we tried to run the old vi's written using Imaq vision, we ran into different problems.Has anyone experienced any similar problems with IMaq vision after upgrading?If so please help me solve this issue.
    Thanx
    deepak

    What kind of problems?
    I would strongly suggest that you uninstall IMAQ (all elements) and reinstall them. They register with Windows, probably docked to 6i, and also must be recompiled, which I believe is done in installation.
    This is your best bet.
    If you still have problems, contact NI and ni.com/ask and start a support inquiry.

  • How can I get the development version of ComponentWorks IMAQ Vision

    I programming my application using ComponentWorks IMAQ Vision version 1.0(Evaluation), now I got problem to count the image edges properly.Is that the problem of Evaluation ComponentWorks.

    From the above posting, i am not sure exactly what problems you are running into when getting edge inforamtion, but the evaluation version should run the same as the development system, except for the limitation on executiopn time and the additional pop up reminders. If you feel these issues are caused by the version and you would like to get information about the development version, I suggest contacting your sales representative. Here is a link to our Vision software int he catalog:
    http://sine.ni.com/apps/we/nioc.vp?cid=1301〈=US
    I hope this helps!
    Chris D
    NI Applciations Engineer

  • Vision error

    hello............
         We are using Evaluation Version of NI vision, I am facing a problem while building EXE of my project, NIvision popup's an error "  Upgraded Evaluation version".
    please suggest me a solution.
          please tell me the details about the licensed version  of vision .i am using windows 7 OS and LabVIEW 2010 32bit. 

    I'm not 100% sure but I think that one of the limitations of the evaluation version is that you can't build an EXE.
    That means you will have to carry on using the source code to use your application.
    If you wish to deploy your application to another computer, even if you could build an EXE you would need a run time licence for VDM (vision development module) to be able to run your application.
    Hope this helps
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"

Maybe you are looking for