When I run this VI "Waveform Time to Date Time String" in LabView 7.0 it will not pass decimals of seconds.

When I run this VI "Waveform Time to Date Time String" in LabView 7.0 it will not pass decimals of seconds. From decimals of inputline. If i disconnect the input to the subVI "Get Date/Time string vi" it will work propperly, it also doses if I reconnect it. I use LabViev 7.0.
So the problem i solved, but i dosent understund why it works in this way. Does it indicate other problems which will make my researchprogram unrelaible ?
Attachments:
Waveform_Time_to_Date_Time_String.vi ‏18 KB

Hello.
I checked your vi and it fails as you state.
It runs fine if: 1 Convert number to timestamp OR
2 Wire a constant to want seconds?
In labview 7.1, no problems.
I think is a job for NI engeniers.
Hope it helps
Alipio
"Qod natura non dat, Salmantica non praestat"

Similar Messages

  • How can I save my data and the date,the time into the same file when I run this VI at different times?

    I use a translation stage for the experiment.For each user in the lab the stage position (to start an experiment) is different.I defined one end of the stage as zero. I want to save the position , date and time of the stage with respect to zero.I want all these in one file, nd everytime I run it it should save to the same file, like this:
    2/12/03 16:04 13567
    2/13/03 10:15 35678
    So I will track the position from day to day.If naybody helps, I appreciate it.Thanks.

    evolution wrote in message news:<[email protected]>...
    > How can I save my data and the date,the time into the same file when
    > I run this VI at different times?
    >
    > I use a translation stage for the experiment.For each user in the lab
    > the stage position (to start an experiment) is different.I defined one
    > end of the stage as zero. I want to save the position , date and time
    > of the stage with respect to zero.I want all these in one file, nd
    > everytime I run it it should save to the same file, like this:
    > 2/12/03 16:04 13567
    > 2/13/03 10:15 35678
    >
    > So I will track the position from day to day.If naybody helps, I
    > appreciate it.Thanks.
    Hi,
    I know the function "write to spreadsheet file.vi"
    can append the data
    to file. You can use the "concatenate strings" to display the date,
    time as well as data... Hope this help.
    Regards,
    celery

  • When I run multiple Microsoft powerpoint files at a time on my MacBook Air, it simply gets hotter and generates little noise (most probably fan noise). Will this make any effect on life span of MBAir??

    When I run multiple Microsoft powerpoint files at a time on my MacBook Air, it simply gets hotter and generates little noise (most probably fan noise). Will this make any effect on life span of MBAir??

    Theoretically, yes.
    Heat, and heat cycling certainly do take a toll on even solid state components. I have several "very old" Macintosh computers, and the logic boards exhibit the effects.
    The fan too, running at higher speeds, does eventually cause wear. More than anything, the higher airflow leads to a higher propensity for dust accumulation on the fan, and the heat exchangers.
    In practical terms though, maybe not so much. If you plan on having your computer exhibit a reasonable useful life before you retire it or upgrade, you may never experience any of the detrimental effects. I rarely use a computer longer than 3 years, before I sell, give it away, or just stop using it.
    Personally, I wouldn't worry about it. Your computer is well designed to give you a long life, even in the manner in which you describe. Take care of it, but use it for what you bought it for. Nothing you mention is in any way, abuse.

  • When i run keynote in the play mode, some times the computer get stuck, why?, when i run key note in the play mode, some times the computer get stuck, why?

    when i run keynote in the play mode, some times the computer get stuck, why?, when i run key note in the play mode, some times the computer get stuck, why?

    hello,
    I had the same issue. This is what I was told to do.
    iWork has to be removed completely to be effective when re-installing, you must use an application removal tool to do this or it wont remove every Keynote file.
    Appcleaner   will do this and its free.
    The following procedure has helped solve many issues with Keynote:
    1  Close Keynote then use Appcleaner
    2  Empty the Trash
    3  Shut down the Mac, then restart and press the shift key immediately after the startup sound, then release shift when the Apple logo appears
              allow the Mac to boot up to the desktop, it will take longer then usual as the hard drive is being repaired
    4  restart the Mac
    5  Reinstall iWork
    6  Repair permissions:
              Applications > Utilities > Disk Utility > First  Aid:   click on your system disc in the drive column
              and select Repair  Disk Permissions
    7  open Keynote and test

  • When I take a picture with my iPhone 5s and afterward turn it laterally, the picture will not turn. It used to all the time. How do I fix this?

    When I take a picture with my iPhone 5s and afterward turn it laterally, the picture will not turn. It used to all the time. How do I fix this?

    Hi there dworthen,
    It sounds like you are experiencing issues when trying to rotate your display. I would recommend taking a look at the troubleshooting steps found in the article below.
    iOS: Screen does not rotate
    http://support.apple.com/kb/TS3805
    -Griff W.

  • Hi when i run this in toad for explain plan  its showing an error ORA_22905

    hi when i run this query in toad for explain plan its showing an error ORA_22905 cannot accesss rows from an non nested table item can anyone help me out
    SELECT
    DISTINCT SERVICE_TBL.SERVICE_ID , SERVICE_TBL.CON_TYPE, SERVICE_TBL.S_DESC || '(' || SERVICE_TBL.CON_TYPE || ')' AS SERVICE_DESC ,SERVICE_TBL.CON_STAT
    FROM
    TABLE(:B1 )SERVICE_TBL
    WHERE
    CON_NUM = :B2
    thanks

    Note the name of this forum is SQL Developer *(Not for general SQL/PLSQL questions)* (so for issues with the SQL Developer tool). Please post these questions under the dedicated SQL And PL/SQL forum.
    Regards,
    K.

  • When I run this script nothing is output to the screen or spooled to a file

    When I run this script nothing is output to the screen or spooled to a file. What do I need to do to get output from this script.
    SET SERVEROUTPUT ON size 100000
    DECLARE
    v_schema     Varchar2(50);
    v_statement      Varchar2(500);
    v_name varchar2(30);
    v_id varchar2(8);
    v_pwd varchar2(16);
    v_acct varchar2(16);
    CURSOR get_schemas IS
    SELECT DISTINCT owner
    FROM all_tables
    WHERE table_name = 'USERID'
    ORDER BY owner;
    BEGIN
    OPEN get_schemas;
    LOOP
    FETCH get_schemas INTO v_schema;
    EXIT WHEN get_schemas%NOTFOUND;
              v_statement := 'SELECT name,usid,passwd,acctnum INTO v_name,v_id,v_pwd,v_acct FROM '||v_schema||'.userid';
              execute immediate v_statement;
              DBMS_OUTPUT.PUT_LINE('Name='||v_name||' ID='||v_id||' PW='||v_pwd||' AC='||v_acct);          
    END LOOP;
    CLOSE get_schemas;
    END;
    /

    Do I include several variables after the INTO or just
    one?
    How do I loop through the record and print the
    individual variables?
    I appreciate your assistance!He already gave you the answer above:
    v_statement := 'SELECT name,usid,passwd,acctnum FROM ' || v_schema ||
    '.userid';
    execute immediate v_statement
    INTO v_name, v_id, v_pwd, v_acct;
    If this is not printing any output, it is because you don't have a table named USERID... what are you trying to do?

  • Hi when i run this query its showing an error ORA_22905 cannot access rows

    hi when i run this query its showing an error ORA_22905 cannot access rows from an non nested table item can anyone help me out
    SELECT
    DISTINCT SERVICE_TBL.SERVICE_ID , SERVICE_TBL.CON_TYPE, SERVICE_TBL.S_DESC || '(' || SERVICE_TBL.CON_TYPE || ')' AS SERVICE_DESC ,SERVICE_TBL.CON_STAT
    FROM
    TABLE(:B1 )SERVICE_TBL
    WHERE
    CON_NUM = :B2
    thanks & regards

    Note the name of this forum is SQL Developer *(Not for general SQL/PLSQL questions)* (so for issues with the SQL Developer tool). Please post these questions under the dedicated SQL And PL/SQL forum.
    Regards,
    K.

  • I see two dialog boxes when I run this script, why?

    When I run this script I see two dialog boxes of "Would you like to Minimize firefox", the first has no default button selected, the second one does.
    What is going on? How do I end up with only one dialog box?
    set minfirefox to "Would you like to Minimize firefox?"
    set tempvar to display dialog minfirefox buttons {"Yes", "No"}
    set ButtonPressed to button returned of tempvar
    display dialog minfirefox buttons {"Yes", "No"} default button "Yes"
    if ButtonPressed is "yes" then
    display dialog "you pressed " & ButtonPressed
    else
    display dialog "you should have pressed yes but you pressed " & ButtonPressed
    end if

    Hi--
    Welcome to the Apple Discussions...
    StewartAlexander wrote:
    When I run this script I see two dialog boxes of "Would you like to Minimize firefox", the first has no default button selected, the second one does.
    What is going on? How do I end up with only one dialog box?
    You're telling it to display the dialog twice. Once here without the default button:
    set tempvar to display dialog minfirefox buttons {"Yes", "No"}
    and then again here:
    display dialog minfirefox buttons {"Yes", "No"} default button "Yes"
    But you're ignoring the buttons returned from the second one.
    charlie
    PS. This probably does more like what you want:
    set minfirefox to "Would you like to Minimize firefox?"
    set tempvar to display dialog minfirefox buttons {"Yes", "No"} default button "Yes"
    set ButtonPressed to button returned of tempvar
    if ButtonPressed is "yes" then
    display dialog "you pressed " & ButtonPressed
    else
    display dialog "you should have pressed yes but you pressed " & ButtonPressed
    end if

  • I have BSP Page.When i run this BSP my internet expolrer browser screen hei

    Hi friends,
    I have BSP Page.When i run this BSP my internet expolrer browser screen height =200 ,width =-200.
    How to code this layout in BSP and where i have to write?

    chk this
    http://www.codeave.com/javascript/code.asp?u_log=7065

  • Please help block my ipod touch second generation and forget the code, try putting the code so many times that now says connect to itunes, I connect but will not let me do anything that tells me this should unlock with key and I should do for Please help!

    please helpme i block my ipod touch second generation and forget the code, try putting the code so many times that now says connect to itunes, I connect but will not let me do anything that tells me this  should unlock with key and I should do for Please help!. thanks

    Place the iPOd in recovery mode and then restore. For recovery mode:
    iPhone and iPod touch: Unable to update or restore

  • HT2534 When I try to set up an Apple ID, it's asking for a credit card, and there is no "None" option, like this page suggests. How can I bypass this? This iPad is for a younger child who has no credit card, and will not need to make any purchases.

    When I try to set up an Apple ID, it's asking for a credit card, and there is no "None" option, like this page suggests. How can I bypass this? This iPad is for a younger child who has no credit card, and will not need to make any purchases.

    You can create an iTune and App Store account without credit card details
    1. Sign out of current Apple ID if you are sign-in to one (important)
    2. Go to App Store and select a free app
    3. Tap INSTALL APP
    4. Create New Apple ID
    5. Confirm Your Country
    6. Agree with Terms and Conditions
    7. Fill in your Apple ID and Password (you must create a new Apple ID; don't use your old Apple ID)
    8. Create and answer your secret question
    9. Select NONE for Payment Method
    10. Fill in Billing Address
    11. Submit application for new Apple ID
    12. Wait for verification email
    13. When email arrive, verify your account
    14. Start downloading your free apps

  • Executable run-time error: "Failed to process adress of Labview Program. Occurences will not work."

    When I run my VI it works fine. However, when I create it into an executable and try to run the exe, it gives me an error, "Failed to process adress of Labview Program. Occurences will not work." Why?

    I am using Labview 7.0. I have attached a screen shot and the code. thanks for checking it out and let me know if you need any more info.
    Attachments:
    Labview_Error.bmp ‏2305 KB
    Main.vi ‏230 KB
    PAIN_Generator.exe ‏2186 KB

  • Every time I try to use foxfire to download something it will not download. What can I do to solve this issue ?

    When ever I try to use foxfire to download a game or other file it starts like it's downloading, but when I go to open the file to finish it there is nothing there. It will not download. I do not understand why. Is there something I can do to fix this problem ?

    First try to [http://kb.mozillazine.org/Unable_to_save_or_download_files#Clear_the_download_history Clear the download history]
    if this does not solve the problem '''Choose a different download folder''' and if this does not solve the problem try '''Reset download folder ''' (choose a different download folder and Reset download folder is in the above link).
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • HT201263 my ipad is locked out however when i try to type my passcode the individual letter gets a box around it and will not let me type my passcode in.  how do i get rid of this.

    my ipad is locked out however when i try to type my passcode the individual letter gets a box around it and will not let me type my passcode in.  how do i get rid of this.

    Hello SeanySmith,
    It may be necessary to place your device into recovery mode and restore it as new.
    iOS: How to back up your data and set up your device as a new device
    http://support.apple.com/kb/HT4137
    Cheers,
    Allen

Maybe you are looking for