Got something weird while Ni 9401 counting down

 what will happen if set 9401 initial count zero and let it count down ? I got some weird data in my application.

Refer this for count down/countup using daq assistant

Similar Messages

  • Does exists an antivirus for iPad, like MacKeeper? My iPad it working weird . I don't know if is the software or it got something from internet .

    Does exists an antivirus for iPad, like MacKeeper? My iPad it working weird . I don't know if is the software or it got something from internet .
    Thanks!

    Not sound, distorted sound, it stokes while I'm working with it, the app that I use the most is iCal, I can not find the appointments that I recently made, I can make them three or four times and it doesn't appear at all, some apps like 53, You Doodle and other apps to work up graphics , crash constantly . For example now, I have to make this message using Notes (copy - paste) because using Safari ,is not possible to write straight in the tab where I reply to you. It freezes up

  • How do I overlay a timer counting down on a Keynote slide?

    Hello!
    I am searching for a way (app or otherwise) to have a timer counting down while in "full screen" mode in Keynote. I am an urban educator, and I've found it very effective in having a stunning image on the smartboard via Keynote, in order to focus engagement while the students enter my classroom. I would love to also have a timer overlayed on that slide somewhere (right hand corner likely) counting down - so students know how much time they have to socilize and become situated before class "officially" begins.
    Appreciate any guidance!
    Best
    Biros

    My brain got fried with all of the previous SWFLoader positioning and centering - so much that I had to stop and clear my head and then this became an easy case of putting the HGroup and the Logo inside a BorderContainer.  I had inadvertently placed the Logo inside of HBox.

  • Count Down Time Zone?

    Hey all, i have come to this fourm a few times and every time
    i posted help i got it and i got the right help to. So here i am
    back again. Now here my problem. i made this count down for a
    certain event. (yes i got help from someone) and it works fine i
    made all the images it works great,,,so i though then i thought id
    experament. So i changed my computers time zone and guess what. The
    Time changed on the count down. Can i make my count down'er', count
    down from a specific time zone so it will count down and be the
    same for everyone? so no matter what time zone you have it will
    ONLY be for a certain type of time zone? Heres my Count down so
    far;
    http://snro.ifastnet.com/wipe.html
    And heres the script i have for my count down. Can someone
    give me a better code, so it will keep my counter the exact same
    just make it count down from only 1 specific Time zone? (AS below)
    quote:
    stop();
    currentDate = new Date();
    thisYear = currentDate.getFullYear();
    // Date( year, month-1, date [, hour [, minute [, second [,
    millisecond]]]])
    eventDate = new Date(thisYear, 9, 28, 12);
    eventMillisecs = eventDate.getTime();
    counter.onEnterFrame = function(){
    currentDate = new Date();
    currentMillisecs = currentDate.getTime();
    this.msecs = eventMillisecs - currentMillisecs;
    if (this.msecs <= 0){
    play();
    return;
    this.secs = Math.floor(this.msecs/1000);
    this.mins = Math.floor(this.secs/60);
    this.hours = Math.floor(this.mins/60);
    this.days = Math.floor(this.hours/24);
    this.msecs = string(this.msecs % 1000);
    this.secs = string(this.secs % 60);
    this.mins = string(this.mins % 60);
    this.hours = string(this.hours % 24);
    this.days = string(this.days);
    while (this.msecs.length < 3) this.msecs = "0" +
    this.msecs;
    if (this.secs.length < 2) this.secs = "0" + this.secs;
    if (this.mins.length < 2) this.mins = "0" + this.mins;
    if (this.hours.length < 2) this.hours = "0" + this.hours;
    while (this.days.length < 3) this.days = "0" + this.days;
    for(movie in this){
    if (this[movie]._parent == this)
    this[movie].evaluateFrameFrom(this);
    MovieClip.prototype.evaluateFrameFrom =
    function(variableClip){
    var nameArray = this._name.split("_");
    var numberSet = variableClip[nameArray[0]];
    var character = number(nameArray[1]);
    var frame = 1 + number(numberSet.charAt(character));
    if (this._currentframe != frame) this.gotoAndStop(frame);
    Thanks!
    Edit** If you can the time zone i need it clocked to is
    (GMT-06:00) Central Time (US & Canada)

    "Pitchsole" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hey all, i have come to this fourm a few times and every
    time i posted
    > help i
    > got it and i got the right help to. So here i am back
    again. Now here my
    > problem. i made this count down for a certain event.
    (yes i got help from
    > someone) and it works fine i made all the images it
    works great,,,so i
    > though
    > then i thought id experament. So i changed my computers
    time zone and
    > guess
    > what. The Time changed on the count down. Can i make my
    count down'er',
    > count
    > down from a specific time zone so it will count down and
    be the same for
    > everyone? so no matter what time zone you have it will
    ONLY be for a
    > certain
    > type of time zone? Heres my Count down so far;
    >
    >
    http://snro.ifastnet.com/wipe.html
    >
    > And heres the script i have for my count down. Can
    someone give me a
    > better
    > code, so it will keep my counter the exact same just
    make it count down
    > from
    > only 1 specific Time zone? (AS below)
    >
    >
    quote:
    stop();
    >
    > currentDate = new Date();
    > thisYear = currentDate.getFullYear();
    >
    > // Date( year, month-1, date [, hour [, minute [, second
    > millisecond]]]])
    > eventDate = new Date(thisYear, 9, 28, 12);
    > eventMillisecs = eventDate.getTime();
    >
    > counter.onEnterFrame = function(){
    > currentDate = new Date();
    > currentMillisecs = currentDate.getTime();
    > this.msecs = eventMillisecs - currentMillisecs;
    > if (this.msecs <= 0){
    > play();
    > return;
    > }
    > this.secs = Math.floor(this.msecs/1000);
    > this.mins = Math.floor(this.secs/60);
    > this.hours = Math.floor(this.mins/60);
    > this.days = Math.floor(this.hours/24);
    > this.msecs = string(this.msecs % 1000);
    > this.secs = string(this.secs % 60);
    > this.mins = string(this.mins % 60);
    > this.hours = string(this.hours % 24);
    > this.days = string(this.days);
    >
    > while (this.msecs.length < 3) this.msecs = "0" +
    this.msecs;
    > if (this.secs.length < 2) this.secs = "0" +
    this.secs;
    > if (this.mins.length < 2) this.mins = "0" +
    this.mins;
    > if (this.hours.length < 2) this.hours = "0" +
    this.hours;
    > while (this.days.length < 3) this.days = "0" +
    this.days;
    >
    > for(movie in this){
    > if (this[movie]._parent == this)
    this[movie].evaluateFrameFrom(this);
    > }
    > };
    >
    > MovieClip.prototype.evaluateFrameFrom =
    function(variableClip){
    > var nameArray = this._name.split("_");
    > var numberSet = variableClip[nameArray[0]];
    > var character = number(nameArray[1]);
    > var frame = 1 + number(numberSet.charAt(character));
    > if (this._currentframe != frame)
    this.gotoAndStop(frame);
    > };
    >
    > Thanks!
    >
    To let you be the one to further experiment I will point you
    in the right
    direction.
    http://www.adobe.com/livedocs/flashlite/2/main/wwhelp/wwhimpl/common/html/wwhelp.htm?conte xt=LiveDocs_Parts&file=00000468.html
    Use GMT as your main reference for everyone, then offeset
    that time to your
    timezone.

  • Ipod Songs Count Down

    I don't know if this has happened to anyone but I just got my iPOD a month ago, I haven't done anything crazy with it. i just want to listen to music. I purchased the thing so I can have music while I'm traveling and now it is not working.
    Here is the problem: It just counts down the songs and doesn't play any of them. If I pick and album it counts down all the songs and stops. If I pick a playlist it does the same thing. Never playing any songs.
    Also, the camera import function is not working. I purchased a camera converter to import pictures from my Canon A80 to my ipod and its giving me an import error.

    Have you Reset the iPod? Press and hold Select and Menu for ~6 seconds.
    Also, the camera import function is not working. I purchased a camera converter to import pictures from my Canon A80 to my ipod and its giving me an import error.
    Did it work before?
    The A80 is not shown as a supported camera.
    http://www.apple.com/ipod/compatibility/cameraconnector.html

  • When watching an item ending in ebay/firefox, the time remaining doesn't count down.

    When watching an item ending in ebay/firefox, the time remaining doesn't count down. However I'm sure it used too.

    Just an update... 
    I took my computer into the Apple Store and they gave me a new battery (again).  I also erased my hard drive and reinstalled Lion.  I am still having the same problem with my battery icon not counting down (when i have the power cord unplugged).  Another thing I may have not talked about is when I unplug my power adapter from my MacBook the screen used to dim slightly,  It no longer does that. Hmm.  And yes I have checked the power settings. 
    I am seeing a big difference in my new battery though.  The 6 month old battery I was using before my replacement wasn't lasting but maybe and hour before completely turning off my laptop.  SInce I got my replacement battery I am back to a regular battery life.  Maybe a couple issues going on here...
    As a fix, I purchased Battery Guard from the app store and placed the icon on my tool bar.  It actually counts down my battery life as a percentage.  So its a huge help.  I just don't know why the native Mac icon isn't working properly??  One thing I have noticed is the 3rd party app will only count down using a Percentage.  But, like the native Mac icon it will not count down using time.  Something else to add...  After using my battery, and I plug my MacBook back in, the battery icon will count up.  Kinda strange that it will count up but not down.
    Dstppy, any luck at the Apple Store?

  • New iMac with 1TB Drive - Weird HDD sound when spinning down/parking

    Hi All,
    Just got my 24" iMac and love it.
    However after 1 day in operation, I noticed something weird about the hard drive (1TB Hitachi):
    When powering down the system / putting it to sleep, the hard drive would spin down (obviously). The usual humming pitch would lower until there's almost no sound. However 2-3 seconds afterwards, there is this weird sound that scares me:
    WOOOP... WOooop.... wooop... weeeep.. Sounding like the actual disc is unbalanced and slowly coming to halt... like a squeeking wheel only in much lower pitch.
    The drive works fine in normal operation - speedy, relatively quiet (as to be expected with a 3.5" drive)... But this sound is really concerning me as I never heard something like this before.
    Should I be concerned or can anybody confirm this HD model's behaviour as normal?
    (I don't want to be stuck with a dead drive and lost data in 1-2 months)
    Thanks,
    Tom

    I do not have the 1TB drive in my iMac so without hearing the sound it's hard to judge. I have heard drives make sound like you described and there been nothing wrong with it. It may just be the resonance from the drive spinning down. However like yourself I'd be a bit concerned as well. I would start by making sure you have your data backed up then run some diagnostics on the drive.
    1. Verify SMART status- Open Applications/Utilities/Disk Utility select the drive on the left then look at the details down at the bottom. Or download and install SMART Utility: http://www.versiontracker.com/dyn/moreinfo/macosx/32454
    2. Verify the directory- Open Applications/Utilities/Disk Utility select the drive on the left then click on Verify Disk.
    3. Surface Scan- If you have Apple Care install TechTool Deluxe from the disk provided. Run TechTool and select the Surface Scan option. This will check every block on the drive.
    If it passes all of the above I would feel fairly confident that the drive is fine but you still might want to give Hitachi support a call and ask them about it. If the noise still really bothers you call Apple support and tell them that the drive is making abnormal sounds and see if they will replace it.
    George

  • Java.sql.SQLException: while calculating row count: Unexpected exception :

    I am working with JDBC that is connected to MS Access 2003 file.
    I wrote and tested in MS Access following query and all it is working well. If I write this query and execute it is working well.
    pstm = DBConnect.prepareStatement(
    "SELECT Parameter.Name, Parameter.id FROM " +
    "(ParameterGroupMember INNER JOIN ApplicationReadsParameter ON " +
    "ParameterGroupMember.Member_Parameter_id = ApplicationReadsParameter.Parameter_id)" +
    "INNER JOIN Parameter ON ApplicationReadsParameter.Parameter_id = Parameter.id " +
    "WHERE (ParameterGroupMember.Group_Parameter_id=40) " +
    "UNION ALL SELECT Parameter.Name, Parameter.id FROM " +
    "Parameter INNER JOIN ApplicationReadsParameter ON " +
    "ApplicationReadsParameter.Parameter_id=Parameter.id WHERE (Parameter.id=40); ");
    rs = pstm.executeQuery();
    When I use code, that sets parameters in the statement it is firing following exception
    java.sql.SQLException: while calculating row count: Unexpected exception : 1
    at sun.jdbc.odbc.JdbcOdbcResultSet.parameterQuery(JdbcOdbcResultSet.java:6417)
    at sun.jdbc.odbc.JdbcOdbcResultSet.calculateRowCount(JdbcOdbcResultSet.java:6336)
    at sun.jdbc.odbc.JdbcOdbcResultSet.initialize(JdbcOdbcResultSet.java:155)
    at sun.jdbc.odbc.JdbcOdbcStatement.getResultSet(JdbcOdbcStatement.java:424)
    at sun.jdbc.odbc.JdbcOdbcPreparedStatement.executeQuery(JdbcOdbcPreparedStatement.java:93)
    pstm = DBConnect.prepareStatement(
    "SELECT Parameter.Name, Parameter.id FROM " +
    "(ParameterGroupMember INNER JOIN ApplicationReadsParameter ON " +
    "ParameterGroupMember.Member_Parameter_id = ApplicationReadsParameter.Parameter_id)" +
    "INNER JOIN Parameter ON ApplicationReadsParameter.Parameter_id = Parameter.id " +
    "WHERE (ParameterGroupMember.Group_Parameter_id=?) " +
    "UNION ALL SELECT Parameter.Name, Parameter.id FROM " +
    "Parameter INNER JOIN ApplicationReadsParameter ON " +
    "ApplicationReadsParameter.Parameter_id=Parameter.id WHERE (Parameter.id=?); ");
    pstm.setInt(1, 40);
    pstm.setInt(2, 40);
    rs = pstm.executeQuery();
    Further I found that the problem is with the setting of the second parameter in the statement. Is there different way how to set the second parameter if union is used?
    Thanks and regards,
    Jan

    Jan.Hv wrote:
    I am working with JDBC that is connected to MS Access 2003 file.
    Use code tags when you post code.
    I wrote and tested in MS Access following query and all it is working well. You mean it works in MS Access. Not that it works in java.
    >
    pstm = DBConnect.prepareStatement(
    "SELECT Parameter.Name, Parameter.id FROM " +
    "(ParameterGroupMember INNER JOIN ApplicationReadsParameter ON " +I STRONGLY suggest that rather than putting spaces at the end of each part put it at the beginning. It makes it much easier to get it right.
    I also suggest formatting the code. There are various ways.
            // Wrong
            String sql = "select x, y z "
                             + "from table1 t1, idtable idt"
                             + "where t1.tim=idt.tim "
                             +  "and t1.book = idt.book";
            // Right (spaces) - one way to format
            String sql = "select"
                             + "         x, y z"
                             + " from table1 t1, idtable idt"
                             + " where"
                             + "          t1.tim=idt.tim"
                             + "          and t1.book = idt.book";Your code is in fact missing a space. No idea if that is a problem or not.
    Remove the semicolon from the end.
    PRINT the sql before you use it, copy/paste and use that string in MS Access (replace the ?) to see if it work.
    Further I found that the problem is with the setting of the second parameter in the statement. Is there different way how to set the second parameter if union is used?The MS Access ODBC driver isn't really great for actually reporting errors correctly. So usually any error means something is wrong and it is up to you to figure out the exact problem.

  • How do you add old movie count downs to Final Cut Pro X ?

    I am trying to make a video from the films that i recorded while skiing, and i was wondering how i would add an old movie count down into Final Cut Pro X, becasue i cant seem to find anywhere that does it.
    Thanks for the help guys.

    No possible.... You'll need to jot them down manually. Very painful especially if your dealing with a 2hr long DVD

  • How to copy the nwdi stack while the system is down.

    hi all,
    We've got a problem:our NWDI system is down.And we want to copy the whole stack out since we must get the source code there.How can i do this while the system is down?(The system seems not to get up again).
    I have little knowledge about NWDI infrastructure. So if someone give me a solution,points will be awarded.
    Thank you .
    Best regards
    delma

    hi,suresh,
    Thank you for your reply.
    But the situation is much harder.The server is down and seems to be harder to get up, and our basis wants to reinstall the system.
    How can I export the whole stack and reimport into the new installed NWDI environment?Through change request?
    Best regards,
    delma

  • I rented a Movie and it has been loading for 3 hours now. Internet connection is fine. Have never had a problem with this before. What's really annoying is that the 24 hour time limit is counting down even though we cant watch it. Any suggestion"hours now

    I rented a Movie and it has been loading for 3 hours now. Internet connection is fine. Have never had a problem with this before. What's really annoying is that the 24 hour time limit is counting down even though we cant watch it. Any suggestions?

    The first thing to check would be your internet download speed, you can do this at www.speedtest.net.
    HD movies require a recommended speed of 6 Mbps, while SD movies require a recommended speed of 2.5 Mbps.
    Additionally, your 24 hours don't start until you begin to watch the movie, you have 30 days to start watching the movie.

  • Yesterday, something weird happened to all my apps, please help!!

    Yesterday, something weird happened to all my apps on all my apple products, when I open the app store on my iPhone, iPad and my the Mac app store on my Mac, it says that all my apps are updated and it's a lie!! cause I have a lot of apps that need an update, I don't know why this is happening, please help!

    Okay all good we got into the layers - there was an non editable group/path/second layer. Clicked the circle next to that layer to select all, I was now able to click and edit my artwork but the colours were still stucj in a transparency and were at 100% tint & opacity - fixed that by copying and pasting in document. I dont know how, I dont know why but it worked and big thanks to my special friend for figuring it out and hleping me

  • HT4623 i got 3004 error while installing ios 7 , how to fix it ?

    i got 3004 error while installing ios 7 , how to fix it ?

    I was trying to update my iphone 5 to IOS7 and couldnt do it for 5 times then I did the following and was able to update it right away
    Clearing your DNS cache may resolve the issue and enable you to connect to the iTunes Store.
    The easiest way to clear your DNS cache is to shut down your computer completely and then restart. If you can't shut down, you can clear your DNS cache manually.
    Click Start and choose Run.
    In the dialog that appears, type “cmd” (don’t type the quotes) and click OK.
    After the DOS prompt (C:\), type “ipconfig /flushdns” (without the quotes) and press Enter. Make sure you enter a single blank space after “ipconfig.”
    Let me know if it solved the issue for you

  • What is the apple website counting down?//

    on the home page they are counting down to something? what is it I'm so confused:?

    Jule ~ Welcome to the Support Communities. Here's a video of one of last year's Special Events:
    Apple Special Event. October 22, 2013

  • Display dialog count down in sec's

    Hey all
    I need a script that would use a display dialog to count down before next part of script runs.
    is this possible
    I need about 1 min count down in sec's

    You could put something like this in the script. I suggest adjusting the interval (perhaps to 5 seconds) as I would guess the precision will drift according to system load:
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #FFDDFF;
    overflow: auto;">
    set theCounter to 60
    set theInterval to 1
    repeat until theCounter is 0
    display dialog "Time Remaining: " & theCounter & " seconds" as text buttons {"Wait"} giving up after theInterval
    set theCounter to theCounter - theInterval
    end repeat </pre>

Maybe you are looking for

  • My music wont sync to my ipod touch, although everything else does!

    I've had my ipod touch for just under 2 years now and have never had a problem with it. However in the last month, the sound from the left ear has been faulting quite severly. It's not the headset as i have purchased 3 sets and have all had the same

  • When I close the screen...

    When I close the screen on my MBP it goes to sleep. Does the new O.S. enable me to set it so it does nothing? I have my sony vaio set to do nothing when I close the lid with XP Pro. If I'm running parallels with windows can I set my MBP this way? Tha

  • Backup and restore on solution manager in Windows

    Dear Team, I have one windows 2003 server in this 3 Harddisk Drive C , D , & E . In this solution manager and saprouter is installed. Now I want to move all these installation and data in other system.So that these same think Proper run in other syst

  • How do I get my CS2 PREMIUM?

    Here's my problem: I have the Adobe CS2 Production PREMIUM. I had to uninstall it because of a virus. I tried to re-install it from the discs but I can no longer install from the discs - so I called the phone # and was sent here -  https://www.adobe.

  • Zone creation

    Hi, My machine is x86 , OS is winxp Iam using solaris10 running on VMware player. I have created a test zone on solaris10 using solaris9 container and down loaded solaris9-image.flar and saved on Apps folder. But iam unable to install solaris9-image.