How to find out time difference between 2 consecutive characters coming in

Hi
Data is coming on serial port and m taking this data in a input stream.I need to know the time difdference between consecutive characters.Any ideas?

What do you mean? If you meassure the time between two characters, you want to calculate how accurate it is? First you would need to find out how accurate the System.currentTimeMillis is on the platform you run on. That may be easy
long start = System.currentTimeMillis();
long end;
while ((end = System.currentTimeMills()) == start);
long delta = end - start;But sometimes (on win98) it reports 50, other times 60. So its not quite accurate. But you could redo that test a couple of times and take the avg or the max.
Then if you get a time difference of 0ms between two characters, you know it will be somewhere 0 and 60ms. If you get 60ms between two characters, you know it will be somewhere between 0 and 120 ms. It's +/- delta seconds accurate.
Would this be a way to calculate the percentage accuracy: 100.0-100.0*delta/(time+delta)
Still better to meassure the time over more than just 2 characters unless it is a very slow stream.

Similar Messages

  • How to find out the difference between two payloads in the BPEL/xsl

    Hi,
    We are invoking a soa service from a BPEL with 10 input parameters and getting the output for only 7 parameters (where 10-7=3 are not returned by service as they are not processed by the service due to invalid input data).
    But the BPEL process should return the 10 payloads with 3 having the failures status.i.e need to find out the difference between input payload and the payload returned by the soa service.
    Can any one tell us, how to achieve this.
    Thanks in advance,
    Ram.

    Check the instance in EM console( in 11G) or BPEL console (in 10G ) and u can see the input and output xmls.

  • How to find out the difference between the row level data in 2 dump files.

    Hi,
    I have got the export dump files from 2 different databases(for which I dont have access).
    They have got the same tables and same number of rows.
    how to compare the data within the tables(in the dump files).
    Cheers,
    Kunwar

    user9131570 wrote:
    Hi,
    I have got the export dump files from 2 different databases(for which I dont have access).
    They have got the same tables and same number of rows.
    how to compare the data within the tables(in the dump files).
    Cheers,
    KunwarWhy you want to do it? What's the business need? Without importing, its not possible to read the dump file * .
    Aman....
    * If you are using Data pump, you can make a sql file and can see the components of the dump file.

  • How to find the time difference..?

    HI
    How to find the time difference between two times
    for Example
    the difference between '24/10/2005 8:25:00 PM' and '25/10/2005 5:20:00 AM'
    is 8.55
    Kris

    This is a procedure taht do the job
    CREATE OR REPLACE FUNCTION Diff_Time
         LD$Date_Deb IN DATE DEFAULT SYSDATE
         ,LD$Date_Fin IN DATE DEFAULT SYSDATE
         ,LN$JJ       OUT PLS_INTEGER
         ,LN$HH       OUT PLS_INTEGER
         ,LN$MI       OUT PLS_INTEGER
         ,LN$SS       OUT PLS_INTEGER
      ) RETURN NUMBER
    IS
      dif   NUMBER ;
    BEGIN
      IF LD$Date_Fin < LD$Date_Deb THEN
         RETURN ( -1 ) ;
      END IF ;
      SELECT  LD$Date_Fin - LD$Date_Deb INTO dif  FROM dual ;
      SELECT  TRUNC ( LD$Date_Fin - LD$Date_Deb)  INTO LN$JJ  FROM dual ;
      SELECT  TRUNC ( (LD$Date_Fin - LD$Date_Deb) * 24) -  ( LN$JJ * 24 ) INTO LN$HH FROM dual ;
      SELECT  TRUNC ( (LD$Date_Fin - LD$Date_Deb) * 1440) - ( (LN$HH * 60) + ( LN$JJ * 1440) ) INTO LN$MI FROM dual ;
      SELECT  TRUNC ( (LD$Date_Fin - LD$Date_Deb) * 86400) - ( (LN$MI * 60) + (LN$HH * 3600) + ( LN$JJ * 3600 * 24 ) ) INTO LN$SS FROM dual ;
      RETURN( dif ) ;
    END ;
    /You may have to modify it to fit your own requirement.
    Francois

  • How to calculate the Time difference between 2 dates

    HI All,
    I am using HR_hk_diff_btw_2_dates to calculate the employee service dates.
    For that i  am inputing his hire date and Term dates and Output format as '05' i am getting output perfectly....
    But problem is  whe i am inputting the employee hire date is Dec 1 2007 and Term date is
    March 31 2009 It is coming as 1 year 3 months  31 days instead of 1 year 4 months directly .......How could we make it make last date also working day and get the O/p as 1 year 4 months ?Please Advice..
    Regard
    sas

    1. FM for difference betwwen two times:SCOV_TIME_DIFF
    Import parameters               Value
    IM_DATE1                        2008-01-01
    IM_DATE2                        2008-01-01
    IM_TIME1                        10:00:00
    IM_TIME2                        11:30:00
    Export parameters               Value
    EX_DAYS                         0
    EX_TIME                         01:30:00
    2. SD_CALC_DURATION_FROM_DATETIME : Finds the difference between two date/time and report the difference in hours
    L_MC_TIME_DIFFERENCE : Finds the time difference between two date/time

  • How to find the structural difference between two tables

    Hi all,
    How to find the structural difference between two tables .
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - Production
    PL/SQL Release 11.1.0.7.0 - Production
    CORE 11.1.0.7.0 Production
    TNS for 32-bit Windows: Version 11.1.0.7.0 - Production
    NLSRTL Version 11.1.0.7.0 - Production
    Thanks,
    P Prakash

    you could try something similar to this, for each table pair that you want to compare:
    SELECT 'TABLE_A has these columns that are not in TABLE_B', DIFF.*
      FROM (
            SELECT  COLUMN_NAME, DATA_TYPE, DATA_LENGTH
              FROM all_tab_columns
             WHERE table_name = 'TABLE_A'
             MINUS
            SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH
              FROM all_tab_columns
             WHERE table_name = 'TABLE_B'
          ) DIFF
    UNION
    SELECT 'TABLE_B has these columns that are not in TABLE_A', DIFF.*
      FROM (
            SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH
              FROM all_tab_columns
             WHERE table_name = 'TABLE_B'
             MINUS
            SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH
              FROM all_tab_columns
             WHERE table_name = 'TABLE_A'
          ) DIFF;that's assuming, column_name, data_type and data_length are all you want to compare on.

  • How to find out if there are repeated characters in a string

    hey guys
    well i kinda have a little problem figuring out how to find out
    if there are repeated characters in a string.
    if anyone can help, would appreciate it.
    thanks
    milos

    Try using the StringTokenizer class. if u already know which character to trace. this could do the job.
    eg. String str = "here and there its everywhere";
    StringTokenizer st = new StringTokenizer(str, "e");
    int rep = st.countTokens();

  • How to find the phase difference between two signals using Hilbert transform

    hi, 
        I am new to LabView.... I am trying to find phase difference between two signals. I sucessfuly found out the phase difference between two predefined waves using single tone measurement. .... But I really want to know how can I measure phase difference between two signals( not predefined... ie we don't know the initial conditions) using hilbert transform or any transformation techniques (without using zero cross detection).. I tried by using hilbert transform based on algorithm... bt I am getting error.... plz help me
    Attachments:
    phase_differece.vi ‏66 KB

    you could try something similar to this, for each table pair that you want to compare:
    SELECT 'TABLE_A has these columns that are not in TABLE_B', DIFF.*
      FROM (
            SELECT  COLUMN_NAME, DATA_TYPE, DATA_LENGTH
              FROM all_tab_columns
             WHERE table_name = 'TABLE_A'
             MINUS
            SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH
              FROM all_tab_columns
             WHERE table_name = 'TABLE_B'
          ) DIFF
    UNION
    SELECT 'TABLE_B has these columns that are not in TABLE_A', DIFF.*
      FROM (
            SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH
              FROM all_tab_columns
             WHERE table_name = 'TABLE_B'
             MINUS
            SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH
              FROM all_tab_columns
             WHERE table_name = 'TABLE_A'
          ) DIFF;that's assuming, column_name, data_type and data_length are all you want to compare on.

  • How to find out public holiday between two days.

    Can any one let me know FM to find out public holiday between two days.
    for example: i am entering two days as 10-08-2009 to 20-08-2009. We have 15-08-2009 is a holiday. FM should say that 15th August is the public holiday.
    Regards,
    Manoj.

    hi,
    you can use HOLIDAY_CALENDAR_GET FM to get the holiday calendar id .
    Then pass that calender id and date to FM HOLIDAY_CHECK_AND_GET_INFO.
    Rgds.,
    subash

  • How to find out the URL of the user coming from?

    Hi folks,
    From the HttpServletRequest, is there a way to find out the URL of the user coming from?
    Thanks in advance!
    Billy

    It is strange. The link is on a different http site eg. http://www.othersite.com. The link is pointing https://www,mysite.com/index.html. I put the alert(document.referer) on the index.html. Using FireFox will show the alert http://www.othersite.com every time. However, on IE, the first time is empty. The second time I click on the link, it will show http://www.othersite.com. Very consistent.

  • Help needed !  How to find out 'XML Difference' using XDK

    I'm using oracle.xml.differ.XMLDiff.
    I have set XML files.
    Then calling generateXSLFile("somefile")
    While running facing :
    Exception in thread "main" java.lang.NullPointerException
    at oracle.xml.differ.XMLDiff.generateXSL(XMLDiff.java:383)
    at oracle.xml.differ.XMLDiff.generateXSLFile(XMLDiff.java:330)
    at XMLDiffTest.main(XMLDiffTest.java:38)
    Same prob if I use setDocuments(xd1,xd2) ....
    What is the way out ?
    Does anyone have any sample code ?
    TYI
    Kaniska

    To compare XML documents with the XMLDiff class.
    -Add /lib/xml.jar and /lib/xmlparserv2.jar to the Classpath.
    -Parse the two documents to be compared with the DOMParser.
        DOMParser parser=new DOMParser();
                 parser.parse("file://c:/xmlFile1.xml");
    XMLDocument document1=parser.getDocument();
    XMLDocument document2;-Create an object of type XMLDiff
    XMLDiff xmlDiff=new XMLDiff(); -Set the documents to be compared.
    xmlDiff.setDocuments(document1, document2);-Compare the XML documents.
    boolean diff=xmlDiff.diff();If diff is 'true', the documents are different.
    -Generate the XSLT for the differences between the XML documents.
    xmlDiff.generateXSLFile("diff.xslt");

  • How to find out the differences in minor builds for components?

    Hello,
    We use crystal 10 included in a vb6 application for reports design and viewing. When we changed our installshield version, for a reason I haven't understood yet, our versions of all the crystal components changed with it. This got identified as a problem with some minor difference in a small bit of functionality, what I'm now looking for is to know what changes were made between the builds for these components. If it's very minor changes that will not affect us we will leave these components as they are, if there are any major changes that will affect us we can either test their impact or make the decision to revert to all the old versions and re-release the software.
    I've spent just under an hour looking for the information but to no success, this forum really helped me out before with a weird crystal problem we were getting so thought I'd try here!
    These are all from the Ciphr Install\Common\Crystal Decisions\2.5\bin directory.
    File Name     Previous Version      Version in 5.1     Product
    commonobjmodel.dll     10.0.5.587     10.0.5.1017     Report Application Server
    craxddrt.dll     10.0.5.860     10.0.5.1506     Crystal Reports
    craxddrt_res_en.dll     10.0.5.860     10.0.5.1450     Crystal Reports
    craxdrt.dll     10.0.5.839     10.0.5.1519     Crystal Reports
    craxdrt_res_en.dll     10.0.5.839     10.0.5.1450     Crystal Reports
    crdb_ado.dll     10.0.5.655     10.0.5.668     Crystal Reports
    crdb_adoplus.dll     10.0.5.418     10.0.5.1210     Crystal Reports
    crdb_adoplus_res_en.dll     10.0.5.418     10.0.5.1210     Crystal Reports
    crdb_ado_res_en.dll     10.0.5.655     10.0.5.663     Crystal Reports
    crdb_cdo.dll     10.0.5.573     10.0.5.578     Crystal Reports
    crdb_cdo_res_en.dll     10.0.5.573     10.0.5.578     Crystal Reports
    crdb_com.dll     10.0.5.137     10.0.5.143     Crystal Reports
    crdb_com_res_en.dll     10.0.5.137     10.0.5.143     Crystal Reports
    crdb_dao.dll     10.0.5.606     10.0.5.611     Crystal Reports
    crdb_dao_res_en.dll     10.0.5.606     10.0.5.611     Crystal Reports
    crdb_dataset.dll     10.0.5.148     10.0.5.152     Crystal Reports
    crdb_dataset_res_en.dll     10.0.5.148     10.0.5.152     Crystal Reports
    crdb_fielddef.dll     10.0.5.568     10.0.5.574     Crystal Reports
    crdb_fielddef_res_en.dll     10.0.5.568     10.0.5.574     Crystal Reports
    crdb_filesystem.dll     10.0.5.563     10.0.5.567     Crystal Reports
    crdb_filesystem_res_en.dll     10.0.5.563     10.0.5.567     Crystal Reports
    crdb_JavaBeans.dll     10.0.5.145     10.0.5.152     Crystal Reports
    crdb_JavaBeans_res_en.dll     10.0.5.145     10.0.5.152     Crystal Reports
    crdb_odbc.dll     10.0.5.751     10.0.5.768     Crystal Reports
    crdb_odbc_res_en.dll     10.0.5.751     10.0.5.768     Crystal Reports
    crdb_oracle.dll     10.0.5.249     10.0.5.257     Crystal Reports
    crdb_oracle_res_en.dll     10.0.5.249     10.0.5.257     Crystal Reports
    crdb_p2bact3.dll     10.0.5.199     10.0.5.196     Crystal Reports
    crdb_p2bbde.dll     10.0.5.115     10.0.5.116     Crystal Reports
    crdb_p2bbtrv.dll     10.0.5.200     10.0.5.210     Crystal Reports
    crdb_p2bxbse.dll     10.0.5.113     10.0.5.114     Crystal Reports
    crdb_p2sacl.dll     10.0.5.128     10.0.5.129     Crystal Reports
    crdb_p2sdb2.dll     10.0.5.196     10.0.5.197     Crystal Reports
    crdb_p2sevta.dll     10.0.5.129     10.0.5.130     Crystal Reports
    crdb_p2sevtc.dll     10.0.5.129     10.0.5.130     Crystal Reports
    crdb_p2sexsrm.dll     10.0.5.130     10.0.5.131     Crystal Reports
    crdb_p2sexsrp.dll     10.0.5.130     10.0.5.131     Crystal Reports
    crdb_p2smapi.dll     10.0.5.133     10.0.5.134     Crystal Reports
    crdb_p2smsiis.dll     10.0.5.137     10.0.5.139     Crystal Reports
    crdb_p2soutlk.dll     10.0.5.222     10.0.5.225     Crystal Reports
    crdb_p2srepl.dll     10.0.5.130     10.0.5.131     Crystal Reports
    crdb_p2ssyb10.dll     10.0.5.176     10.0.5.179     Crystal Reports
    crdb_p2strack.dll     10.0.5.130     10.0.5.131     Crystal Reports
    crdb_p2swblg.dll     10.0.5.134     10.0.5.135     Crystal Reports
    crdb_query.dll     10.0.5.689     10.0.5.693     Crystal Reports
    crdb_query_res_en.dll     10.0.5.689     10.0.5.693     Crystal Reports
    CRDesignerCtrl.DLL     10.0.5.819     10.0.5.1016     Crystal Reports
    crdesignerctrl_res_en.dll     10.0.5.819     10.0.5.1016     Crystal Reports
    crqe.dll     10.0.5.877     10.0.5.882     Crystal Reports
    crqe_res_en.dll     10.0.5.877     10.0.5.882     Crystal Reports
    crtslv.dll     10.0.5.587     10.0.5.1017     TSLV Reader
    crviewer.dll     10.0.5.822     10.0.5.1155     Crystal Reports
    crxf_html.dll     10.0.5.72     10.0.5.75     Crystal Reports
    crxf_html_res_en.dll     10.0.5.72     10.0.5.75     Crystal Reports
    crxf_pdf.dll     10.0.5.598     10.0.5.604     Portable Document Format DLL for Crystal Reports
    crxf_pdf_res_en.dll     10.0.5.598     10.0.5.604     Portable Document Format DLL for Crystal Reports
    crxf_rtf.dll     10.0.5.603     10.0.5.604     Rich Text and MSWord Format DLL for Crystal Reports
    crxf_rtf_res_en.dll     10.0.5.603     10.0.5.604     Rich Text and MSWord Format DLL for Crystal Reports
    crxf_wordw.dll     10.0.5.603     10.0.5.604     Rich Text and MSWord Format DLL for Crystal Reports
    crxf_wordw_res_en.dll     10.0.5.603     10.0.5.604     Rich Text and MSWord Format DLL for Crystal Reports
    crxf_xls.dll     10.0.5.737     10.0.5.755     Crystal Reports
    crxf_xls_res_en.dll     10.0.5.737     10.0.5.754     Crystal Reports
    Emfgen.dll     10.0.5.587     10.0.5.1017     Crystal Reports
    exlate32.dll     10.0.5.587     10.0.5.1017     Crystal Reports For Windows
    ExportModeller.dll     10.0.5.580     10.0.5.581     ExportModeller Module
    filedialog.dll     10.0.5.587     10.0.5.1017     Report Application Server
    filedialog_res_chs.dll     10.0.5.587     10.0.5.1016     Report Application Server
    filedialog_res_de.dll     10.0.5.587     10.0.5.1016     Report Application Server
    filedialog_res_en.dll     10.0.5.587     10.0.5.1017     Report Application Server
    filedialog_res_es.dll     10.0.5.587     10.0.5.1016     Report Application Server
    filedialog_res_fr.dll     10.0.5.587     10.0.5.1016     Report Application Server
    filedialog_res_it.dll     10.0.5.587     10.0.5.1016     Report Application Server
    filedialog_res_jp.dll     10.0.5.587     10.0.5.1016     Report Application Server
    filedialog_res_ko.dll     10.0.5.587     10.0.5.1016     Report Application Server
    keycode.dll     10.0.5.417     10.0.5.847     Crystal Decisions keycode Module
    p2bbtrv.dll     10.0.5.16     10.0.5.24     Crystal Reports
    p3dbeen.dll     10.0.5.115     10.0.5.116     Crystal Reports
    p3dbten.dll     10.0.5.16     10.0.5.23     Crystal Reports
    p3dxben.dll     10.0.5.113     10.0.5.114     Crystal Reports
    p3sacen.dll     10.0.5.128     10.0.5.129     Crystal Reports
    p3sd2en.dll     10.0.5.196     10.0.5.197     Crystal Reports
    p3seven.dll     10.0.5.129     10.0.5.130     Crystal Reports
    p3sisen.dll     10.0.5.137     10.0.5.139     Crystal Reports
    p3smpen.dll     10.0.5.133     10.0.5.134     Crystal Reports
    p3srpen.dll     10.0.5.130     10.0.5.131     Crystal Reports
    p3ssten.dll     10.0.5.176     10.0.5.179     Crystal Reports
    p3stken.dll     10.0.5.130     10.0.5.131     Crystal Reports
    p3swlen.dll     10.0.5.134     10.0.5.135     Crystal Reports
    p3sxsen.dll     10.0.5.130     10.0.5.131     Crystal Reports
    pageObjectModel.dll     10.0.5.855     10.0.5.1509     PageObjectModel Module
    querybuilder.dll     10.0.5.625     10.0.5.630     Crystal Reports
    querybuilder_res_en.dll     10.0.5.625     10.0.5.630     Crystal Reports
    r3exlen.dll     10.0.5.587     10.0.5.1017     Crystal Reports For Windows
    ReportRenderer.dll     10.0.5.855     10.0.5.1509     ReportRenderer Module
    RptControllers.dll     10.0.5.798     10.0.5.1031     Report Application Server
    rptcontrollers_res_en.dll     10.0.5.798     10.0.5.1031     Report Application Server
    rptdefmodel.dll     10.0.5.587     10.0.5.1016     Report Application Server
    rptdefmodel_res_en.dll     10.0.5.587     10.0.5.1016     Report Application Server
    sacommoncontrols.dll     10.0.5.696     10.0.5.1251     Report Application Server
    sacommoncontrols_res_chs.dll     10.0.5.587     10.0.5.1016     Report Application Server
    sacommoncontrols_res_de.dll     10.0.5.587     10.0.5.1016     Report Application Server
    sacommoncontrols_res_es.dll     10.0.5.587     10.0.5.1016     Report Application Server
    sacommoncontrols_res_fr.dll     10.0.5.587     10.0.5.1016     Report Application Server
    sacommoncontrols_res_it.dll     10.0.5.587     10.0.5.1016     Report Application Server
    sacommoncontrols_res_jp.dll     10.0.5.587     10.0.5.1016     Report Application Server
    sacommoncontrols_res_ko.dll     10.0.5.587     10.0.5.1016     Report Application Server
    saxmlserialize.dll     10.0.5.587     10.0.5.1017     Report Application Server
    saxmlserialize_res_en.dll     10.0.5.587     10.0.5.1017     Report Application Server
    sscdlg.dll     10, 0, 0, 6     10, 0, 0, 7     Amigo Dialogs DLL
    sscdlg_res_chs.dll     10, 0, 0, 6     10, 0, 0, 7     Amigo Dialogs DLL
    sscdlg_res_de.dll     10, 0, 0, 6     10, 0, 0, 7     Amigo Dialogs DLL
    sscdlg_res_en.dll     10, 0, 0, 6     10, 0, 0, 7     Amigo Dialogs DLL
    sscdlg_res_es.dll     10, 0, 0, 6     10, 0, 0, 7     Amigo Dialogs DLL
    sscdlg_res_fr.dll     10, 0, 0, 6     10, 0, 0, 7     Amigo Dialogs DLL
    sscdlg_res_it.dll     10, 0, 0, 6     10, 0, 0, 7     Amigo Dialogs DLL
    sscdlg_res_jp.dll     10, 0, 0, 6     10, 0, 0, 7     Amigo Dialogs DLL
    sscdlg_res_ko.dll     10, 0, 0, 6     10, 0, 0, 7     Amigo Dialogs DLL
    sscsdk80.dll     10, 0, 0, 8     10, 0, 0, 16     Charting Engine DLL
    sscsdk80_res_chs.dll     10, 0, 0, 7     10, 0, 0, 12     Charting Engine DLL
    sscsdk80_res_de.dll     10, 0, 0, 7     10, 0, 0, 12     Charting Engine DLL
    sscsdk80_res_en.dll     10, 0, 0, 8     10, 0, 0, 16     Charting Engine DLL
    sscsdk80_res_es.dll     10, 0, 0, 7     10, 0, 0, 12     Charting Engine DLL
    sscsdk80_res_fr.dll     10, 0, 0, 7     10, 0, 0, 12     Charting Engine DLL
    sscsdk80_res_it.dll     10, 0, 0, 7     10, 0, 0, 12     Charting Engine DLL
    sscsdk80_res_jp.dll     10, 0, 0, 7     10, 0, 0, 12     Charting Engine DLL
    sscsdk80_res_ko.dll     10, 0, 0, 7     10, 0, 0, 12     Charting Engine DLL
    sviewhlp.dll     10.0.5.822     10.0.5.1155     Crystal Reports
    swebrs.dll     10.0.5.822     10.0.5.1155     Crystal Reports
    u2dapp.dll     10.0.5.548     10.0.5.550     Crystal Reports
    u2ddisk.dll     10.0.5.554     10.0.5.556     Crystal Reports
    u2dmapi.dll     10.0.5.549     10.0.5.550     Crystal Reports
    u2dpost.dll     10.0.5.560     10.0.5.562     Crystal Reports
    u2dvim.dll     10.0.5.20     10.0.5.21     Crystal Reports
    u2fcompress.dll     10.0.5.537     10.0.5.539     Crystal Reports
    u2fcr.dll     10.0.5.552     10.0.5.554     Crystal Reports
    u2fodbc.dll     10.0.5.556     10.0.5.558     Crystal Reports
    u2frdef.dll     10.0.5.23     10.0.5.25     Crystal Reports
    u2frec.dll     10.0.5.545     10.0.5.547     Crystal Reports
    u2fsepv.dll     10.0.5.59     10.0.5.62     Crystal Reports
    u2ftext.dll     10.0.5.591     10.0.5.604     Crystal Reports
    u2fxml.dll     10.0.5.582     10.0.5.584     Crystal Reports
    ufmanager.dll     10.0.5.30     10.0.5.32     Crystal Reports Professional For Windows
    UndoManager.dll     10.0.5.587     10.0.5.1017     Report Application Server
    vle.dll     10.0.5.587     10.0.5.904     VLE Module
    vle_res_en.dll     10.0.5.587     10.0.5.904     VLE Module
    webReporting.dll     10.0.5.855     10.0.5.1509     WebReporting Module
    x3dapen.dll     10.0.5.548     10.0.5.550     Crystal Reports
    x3ddken.dll     10.0.5.554     10.0.5.556     Crystal Reports
    x3dmpen.dll     10.0.5.549     10.0.5.550     Crystal Reports
    x3dpten.dll     10.0.5.560     10.0.5.562     Crystal Reports
    x3dvmen.dll     10.0.5.20     10.0.5.21     Crystal Reports
    x3fcpen.dll     10.0.5.537     10.0.5.539     Crystal Reports
    x3fcren.dll     10.0.5.552     10.0.5.554     Crystal Reports
    x3foden.dll     10.0.5.556     10.0.5.558     Crystal Reports
    x3frcen.dll     10.0.5.545     10.0.5.547     Crystal Reports
    x3frden.dll     10.0.5.23     10.0.5.25     Crystal Reports
    x3fsven.dll     10.0.5.59     10.0.5.61     Crystal Reports
    x3ftxen.dll     10.0.5.591     10.0.5.603     Crystal Reports
    x3fxmen.dll     10.0.5.582     10.0.5.584     Crystal Reports
    Thanks in advance for any pointers on where to get this info!
    Tim
    Edited by: Tim Hopkins on Sep 27, 2010 5:34 PM

    This is in the order of Filename, then the previous version number, then the build number that's now been included, then the product name.<br><br>commonobjmodel.dll     <br>     10.0.5.587     <br>     10.0.5.1017     <br>     Report Application Server     <br><br>
    craxddrt.dll     <br>     10.0.5.860     <br>     10.0.5.1506     <br>     Crystal Reports     <br><br>
    craxddrt_res_en.dll     <br>     10.0.5.860     <br>     10.0.5.1450     <br>     Crystal Reports     <br><br>
    craxdrt.dll     <br>     10.0.5.839     <br>     10.0.5.1519     <br>     Crystal Reports     <br><br>
    craxdrt_res_en.dll     <br>     10.0.5.839     <br>     10.0.5.1450     <br>     Crystal Reports     <br><br>
    crdb_ado.dll     <br>     10.0.5.655     <br>     10.0.5.668     <br>     Crystal Reports     <br><br>
    crdb_adoplus.dll     <br>     10.0.5.418     <br>     10.0.5.1210     <br>     Crystal Reports     <br><br>
    crdb_adoplus_res_en.dll     <br>     10.0.5.418     <br>     10.0.5.1210     <br>     Crystal Reports     <br><br>
    crdb_ado_res_en.dll     <br>     10.0.5.655     <br>     10.0.5.663     <br>     Crystal Reports     <br><br>
    crdb_cdo.dll     <br>     10.0.5.573     <br>     10.0.5.578     <br>     Crystal Reports     <br><br>
    crdb_cdo_res_en.dll     <br>     10.0.5.573     <br>     10.0.5.578     <br>     Crystal Reports     <br><br>
    crdb_com.dll     <br>     10.0.5.137     <br>     10.0.5.143     <br>     Crystal Reports     <br><br>
    crdb_com_res_en.dll     <br>     10.0.5.137     <br>     10.0.5.143     <br>     Crystal Reports     <br><br>
    crdb_dao.dll     <br>     10.0.5.606     <br>     10.0.5.611     <br>     Crystal Reports     <br><br>
    crdb_dao_res_en.dll     <br>     10.0.5.606     <br>     10.0.5.611     <br>     Crystal Reports     <br><br>
    crdb_dataset.dll     <br>     10.0.5.148     <br>     10.0.5.152     <br>     Crystal Reports     <br><br>
    crdb_dataset_res_en.dll     <br>     10.0.5.148     <br>     10.0.5.152     <br>     Crystal Reports     <br><br>
    crdb_fielddef.dll     <br>     10.0.5.568     <br>     10.0.5.574     <br>     Crystal Reports     <br><br>
    crdb_fielddef_res_en.dll     <br>     10.0.5.568     <br>     10.0.5.574     <br>     Crystal Reports     <br><br>
    crdb_filesystem.dll     <br>     10.0.5.563     <br>     10.0.5.567     <br>     Crystal Reports     <br><br>
    crdb_filesystem_res_en.dll     <br>     10.0.5.563     <br>     10.0.5.567     <br>     Crystal Reports     <br><br>
    crdb_JavaBeans.dll     <br>     10.0.5.145     <br>     10.0.5.152     <br>     Crystal Reports     <br><br>
    crdb_JavaBeans_res_en.dll     <br>     10.0.5.145     <br>     10.0.5.152     <br>     Crystal Reports     <br><br>
    crdb_odbc.dll     <br>     10.0.5.751     <br>     10.0.5.768     <br>     Crystal Reports     <br><br>
    crdb_odbc_res_en.dll     <br>     10.0.5.751     <br>     10.0.5.768     <br>     Crystal Reports     <br><br>
    crdb_oracle.dll     <br>     10.0.5.249     <br>     10.0.5.257     <br>     Crystal Reports     <br><br>
    crdb_oracle_res_en.dll     <br>     10.0.5.249     <br>     10.0.5.257     <br>     Crystal Reports     <br><br>
    crdb_p2bact3.dll     <br>     10.0.5.199     <br>     10.0.5.196     <br>     Crystal Reports     <br><br>
    crdb_p2bbde.dll     <br>     10.0.5.115     <br>     10.0.5.116     <br>     Crystal Reports     <br><br>
    crdb_p2bbtrv.dll     <br>     10.0.5.200     <br>     10.0.5.210     <br>     Crystal Reports     <br><br>
    crdb_p2bxbse.dll     <br>     10.0.5.113     <br>     10.0.5.114     <br>     Crystal Reports     <br><br>
    crdb_p2sacl.dll     <br>     10.0.5.128     <br>     10.0.5.129     <br>     Crystal Reports     <br><br>
    crdb_p2sdb2.dll     <br>     10.0.5.196     <br>     10.0.5.197     <br>     Crystal Reports     <br><br>
    crdb_p2sevta.dll     <br>     10.0.5.129     <br>     10.0.5.130     <br>     Crystal Reports     <br><br>
    crdb_p2sevtc.dll     <br>     10.0.5.129     <br>     10.0.5.130     <br>     Crystal Reports     <br><br>
    crdb_p2sexsrm.dll     <br>     10.0.5.130     <br>     10.0.5.131     <br>     Crystal Reports     <br><br>
    crdb_p2sexsrp.dll     <br>     10.0.5.130     <br>     10.0.5.131     <br>     Crystal Reports     <br><br>
    crdb_p2smapi.dll     <br>     10.0.5.133     <br>     10.0.5.134     <br>     Crystal Reports     <br><br>
    crdb_p2smsiis.dll     <br>     10.0.5.137     <br>     10.0.5.139     <br>     Crystal Reports     <br><br>
    crdb_p2soutlk.dll     <br>     10.0.5.222     <br>     10.0.5.225     <br>     Crystal Reports     <br><br>
    crdb_p2srepl.dll     <br>     10.0.5.130     <br>     10.0.5.131     <br>     Crystal Reports     <br><br>
    crdb_p2ssyb10.dll     <br>     10.0.5.176     <br>     10.0.5.179     <br>     Crystal Reports     <br><br>
    crdb_p2strack.dll     <br>     10.0.5.130     <br>     10.0.5.131     <br>     Crystal Reports     <br><br>
    crdb_p2swblg.dll     <br>     10.0.5.134     <br>     10.0.5.135     <br>     Crystal Reports     <br><br>
    crdb_query.dll     <br>     10.0.5.689     <br>     10.0.5.693     <br>     Crystal Reports     <br><br>
    crdb_query_res_en.dll     <br>     10.0.5.689     <br>     10.0.5.693     <br>     Crystal Reports     <br><br>
    CRDesignerCtrl.DLL     <br>     10.0.5.819     <br>     10.0.5.1016     <br>     Crystal Reports     <br><br>
    crdesignerctrl_res_en.dll     <br>     10.0.5.819     <br>     10.0.5.1016     <br>     Crystal Reports     <br><br>
    crqe.dll     <br>     10.0.5.877     <br>     10.0.5.882     <br>     Crystal Reports     <br><br>
    crqe_res_en.dll     <br>     10.0.5.877     <br>     10.0.5.882     <br>     Crystal Reports     <br><br>
    crtslv.dll     <br>     10.0.5.587     <br>     10.0.5.1017     <br>     TSLV Reader     <br><br>
    crviewer.dll     <br>     10.0.5.822     <br>     10.0.5.1155     <br>     Crystal Reports     <br><br>
    crxf_html.dll     <br>     10.0.5.72     <br>     10.0.5.75     <br>     Crystal Reports     <br><br>
    crxf_html_res_en.dll     <br>     10.0.5.72     <br>     10.0.5.75     <br>     Crystal Reports     <br><br>
    crxf_pdf.dll     <br>     10.0.5.598     <br>     10.0.5.604     <br>     Portable Document Format DLL for Crystal Reports     <br><br>
    crxf_pdf_res_en.dll     <br>     10.0.5.598     <br>     10.0.5.604     <br>     Portable Document Format DLL for Crystal Reports     <br><br>
    crxf_rtf.dll     <br>     10.0.5.603     <br>     10.0.5.604     <br>     Rich Text and MSWord Format DLL for Crystal Reports     <br><br>
    crxf_rtf_res_en.dll     <br>     10.0.5.603     <br>     10.0.5.604     <br>     Rich Text and MSWord Format DLL for Crystal Reports     <br><br>
    crxf_wordw.dll     <br>     10.0.5.603     <br>     10.0.5.604     <br>     Rich Text and MSWord Format DLL for Crystal Reports     <br><br>
    crxf_wordw_res_en.dll     <br>     10.0.5.603     <br>     10.0.5.604     <br>     Rich Text and MSWord Format DLL for Crystal Reports     <br><br>
    crxf_xls.dll     <br>     10.0.5.737     <br>     10.0.5.755     <br>     Crystal Reports     <br><br>
    crxf_xls_res_en.dll     <br>     10.0.5.737     <br>     10.0.5.754     <br>     Crystal Reports     <br><br>
    Emfgen.dll     <br>     10.0.5.587     <br>     10.0.5.1017     <br>     Crystal Reports     <br><br>
    exlate32.dll     <br>     10.0.5.587     <br>     10.0.5.1017     <br>     Crystal Reports For Windows     <br><br>
    ExportModeller.dll     <br>     10.0.5.580     <br>     10.0.5.581     <br>     ExportModeller Module     <br><br>
    filedialog.dll     <br>     10.0.5.587     <br>     10.0.5.1017     <br>     Report Application Server     <br><br>
    filedialog_res_chs.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    filedialog_res_de.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    filedialog_res_en.dll     <br>     10.0.5.587     <br>     10.0.5.1017     <br>     Report Application Server     <br><br>
    filedialog_res_es.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    filedialog_res_fr.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    filedialog_res_it.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    filedialog_res_jp.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    filedialog_res_ko.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    keycode.dll     <br>     10.0.5.417     <br>     10.0.5.847     <br>     Crystal Decisions keycode Module     <br><br>
    p2bbtrv.dll     <br>     10.0.5.16     <br>     10.0.5.24     <br>     Crystal Reports     <br><br>
    p3dbeen.dll     <br>     10.0.5.115     <br>     10.0.5.116     <br>     Crystal Reports     <br><br>
    p3dbten.dll     <br>     10.0.5.16     <br>     10.0.5.23     <br>     Crystal Reports     <br><br>
    p3dxben.dll     <br>     10.0.5.113     <br>     10.0.5.114     <br>     Crystal Reports     <br><br>
    p3sacen.dll     <br>     10.0.5.128     <br>     10.0.5.129     <br>     Crystal Reports     <br><br>
    p3sd2en.dll     <br>     10.0.5.196     <br>     10.0.5.197     <br>     Crystal Reports     <br><br>
    p3seven.dll     <br>     10.0.5.129     <br>     10.0.5.130     <br>     Crystal Reports     <br><br>
    p3sisen.dll     <br>     10.0.5.137     <br>     10.0.5.139     <br>     Crystal Reports     <br><br>
    p3smpen.dll     <br>     10.0.5.133     <br>     10.0.5.134     <br>     Crystal Reports     <br><br>
    p3srpen.dll     <br>     10.0.5.130     <br>     10.0.5.131     <br>     Crystal Reports     <br><br>
    p3ssten.dll     <br>     10.0.5.176     <br>     10.0.5.179     <br>     Crystal Reports     <br><br>
    p3stken.dll     <br>     10.0.5.130     <br>     10.0.5.131     <br>     Crystal Reports     <br><br>
    p3swlen.dll     <br>     10.0.5.134     <br>     10.0.5.135     <br>     Crystal Reports     <br><br>
    p3sxsen.dll     <br>     10.0.5.130     <br>     10.0.5.131     <br>     Crystal Reports     <br><br>
    pageObjectModel.dll     <br>     10.0.5.855     <br>     10.0.5.1509     <br>     PageObjectModel Module     <br><br>
    querybuilder.dll     <br>     10.0.5.625     <br>     10.0.5.630     <br>     Crystal Reports     <br><br>
    querybuilder_res_en.dll     <br>     10.0.5.625     <br>     10.0.5.630     <br>     Crystal Reports     <br><br>
    r3exlen.dll     <br>     10.0.5.587     <br>     10.0.5.1017     <br>     Crystal Reports For Windows     <br><br>
    ReportRenderer.dll     <br>     10.0.5.855     <br>     10.0.5.1509     <br>     ReportRenderer Module     <br><br>
    RptControllers.dll     <br>     10.0.5.798     <br>     10.0.5.1031     <br>     Report Application Server     <br><br>
    rptcontrollers_res_en.dll     <br>     10.0.5.798     <br>     10.0.5.1031     <br>     Report Application Server     <br><br>
    rptdefmodel.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    rptdefmodel_res_en.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    sacommoncontrols.dll     <br>     10.0.5.696     <br>     10.0.5.1251     <br>     Report Application Server     <br><br>
    sacommoncontrols_res_chs.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    sacommoncontrols_res_de.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    sacommoncontrols_res_es.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    sacommoncontrols_res_fr.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    sacommoncontrols_res_it.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    sacommoncontrols_res_jp.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    sacommoncontrols_res_ko.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    saxmlserialize.dll     <br>     10.0.5.587     <br>     10.0.5.1017     <br>     Report Application Server     <br><br>
    saxmlserialize_res_en.dll     <br>     10.0.5.587     <br>     10.0.5.1017     <br>     Report Application Server     <br><br>
    sscdlg.dll     <br>     10, 0, 0, 6     <br>     10, 0, 0, 7     <br>     Amigo Dialogs DLL     <br><br>
    sscdlg_res_chs.dll     <br>     10, 0, 0, 6     <br>     10, 0, 0, 7     <br>     Amigo Dialogs DLL     <br><br>
    sscdlg_res_de.dll     <br>     10, 0, 0, 6     <br>     10, 0, 0, 7     <br>     Amigo Dialogs DLL     <br><br>
    sscdlg_res_en.dll     <br>     10, 0, 0, 6     <br>     10, 0, 0, 7     <br>     Amigo Dialogs DLL     <br><br>
    sscdlg_res_es.dll     <br>     10, 0, 0, 6     <br>     10, 0, 0, 7     <br>     Amigo Dialogs DLL     <br><br>
    sscdlg_res_fr.dll     <br>     10, 0, 0, 6     <br>     10, 0, 0, 7     <br>     Amigo Dialogs DLL     <br><br>
    sscdlg_res_it.dll     <br>     10, 0, 0, 6     <br>     10, 0, 0, 7     <br>     Amigo Dialogs DLL     <br><br>
    sscdlg_res_jp.dll     <br>     10, 0, 0, 6     <br>     10, 0, 0, 7     <br>     Amigo Dialogs DLL     <br><br>
    sscdlg_res_ko.dll     <br>     10, 0, 0, 6     <br>     10, 0, 0, 7     <br>     Amigo Dialogs DLL     <br><br>
    sscsdk80.dll     <br>     10, 0, 0, 8     <br>     10, 0, 0, 16     <br>     Charting Engine DLL     <br><br>
    sscsdk80_res_chs.dll     <br>     10, 0, 0, 7     <br>     10, 0, 0, 12     <br>     Charting Engine DLL     <br><br>
    sscsdk80_res_de.dll     <br>     10, 0, 0, 7     <br>     10, 0, 0, 12     <br>     Charting Engine DLL     <br><br>
    sscsdk80_res_en.dll     <br>     10, 0, 0, 8     <br>     10, 0, 0, 16     <br>     Charting Engine DLL     <br><br>
    sscsdk80_res_es.dll     <br>     10, 0, 0, 7     <br>     10, 0, 0, 12     <br>     Charting Engine DLL     <br><br>
    sscsdk80_res_fr.dll     <br>     10, 0, 0, 7     <br>     10, 0, 0, 12     <br>     Charting Engine DLL     <br><br>
    sscsdk80_res_it.dll     <br>     10, 0, 0, 7     <br>     10, 0, 0, 12     <br>     Charting Engine DLL     <br><br>
    sscsdk80_res_jp.dll     <br>     10, 0, 0, 7     <br>     10, 0, 0, 12     <br>     Charting Engine DLL     <br><br>
    sscsdk80_res_ko.dll     <br>     10, 0, 0, 7     <br>     10, 0, 0, 12     <br>     Charting Engine DLL     <br><br>
    sviewhlp.dll     <br>     10.0.5.822     <br>     10.0.5.1155     <br>     Crystal Reports     <br><br>
    swebrs.dll     <br>     10.0.5.822     <br>     10.0.5.1155     <br>     Crystal Reports     <br><br>
    u2dapp.dll     <br>     10.0.5.548     <br>     10.0.5.550     <br>     Crystal Reports     <br><br>
    u2ddisk.dll     <br>     10.0.5.554     <br>     10.0.5.556     <br>     Crystal Reports     <br><br>
    u2dmapi.dll     <br>     10.0.5.549     <br>     10.0.5.550     <br>     Crystal Reports     <br><br>
    u2dpost.dll     <br>     10.0.5.560     <br>     10.0.5.562     <br>     Crystal Reports     <br><br>
    u2dvim.dll     <br>     10.0.5.20     <br>     10.0.5.21     <br>     Crystal Reports     <br><br>
    u2fcompress.dll     <br>     10.0.5.537     <br>     10.0.5.539     <br>     Crystal Reports     <br><br>
    u2fcr.dll     <br>     10.0.5.552     <br>     10.0.5.554     <br>     Crystal Reports     <br><br>
    u2fodbc.dll     <br>     10.0.5.556     <br>     10.0.5.558     <br>     Crystal Reports     <br><br>
    u2frdef.dll     <br>     10.0.5.23     <br>     10.0.5.25     <br>     Crystal Reports     <br><br>
    u2frec.dll     <br>     10.0.5.545     <br>     10.0.5.547     <br>     Crystal Reports     <br><br>
    u2fsepv.dll     <br>     10.0.5.59     <br>     10.0.5.62     <br>     Crystal Reports     <br><br>
    u2ftext.dll     <br>     10.0.5.591     <br>     10.0.5.604     <br>     Crystal Reports     <br><br>
    u2fxml.dll     <br>     10.0.5.582     <br>     10.0.5.584     <br>     Crystal Reports     <br><br>
    ufmanager.dll     <br>     10.0.5.30     <br>     10.0.5.32     <br>     Crystal Reports Professional For Windows     <br><br>
    UndoManager.dll     <br>     10.0.5.587     <br>     10.0.5.1017     <br>     Report Application Server     <br><br>
    vle.dll     <br>     10.0.5.587     <br>     10.0.5.904     <br>     VLE Module     <br><br>
    vle_res_en.dll     <br>     10.0.5.587     <br>     10.0.5.904     <br>     VLE Module     <br><br>
    webReporting.dll     <br>     10.0.5.855     <br>     10.0.5.1509     <br>     WebReporting Module     <br><br>
    x3dapen.dll     <br>     10.0.5.548     <br>     10.0.5.550     <br>     Crystal Reports     <br><br>
    x3ddken.dll     <br>     10.0.5.554     <br>     10.0.5.556     <br>     Crystal Reports     <br><br>
    x3dmpen.dll     <br>     10.0.5.549     <br>     10.0.5.550     <br>     Crystal Reports     <br><br>
    x3dpten.dll     <br>     10.0.5.560     <br>     10.0.5.562     <br>     Crystal Reports     <br><br>
    x3dvmen.dll     <br>     10.0.5.20     <br>     10.0.5.21     <br>     Crystal Reports     <br><br>
    x3fcpen.dll     <br>     10.0.5.537     <br>     10.0.5.539     <br>     Crystal Reports     <br><br>
    x3fcren.dll     <br>     10.0.5.552     <br>     10.0.5.554     <br>     Crystal Reports     <br><br>
    x3foden.dll     <br>     10.0.5.556     <br>     10.0.5.558     <br>     Crystal Reports     <br><br>
    x3frcen.dll     <br>     10.0.5.545     <br>     10.0.5.547     <br>     Crystal Reports     <br><br>
    x3frden.dll     <br>     10.0.5.23     <br>     10.0.5.25     <br>     Crystal Reports     <br><br>
    x3fsven.dll     <br>     10.0.5.59     <br>     10.0.5.61     <br>     Crystal Reports     <br><br>
    x3ftxen.dll     <br>     10.0.5.591     <br>     10.0.5.603     <br>     Crystal Reports     <br><br>
    x3fxmen.dll     <br>     10.0.5.582     <br>     10.0.5.584     <br>     Crystal Reports     <br><br>

  • How To Find out Time Spent on a project

    The reason I am asking this question is because I would like to know how long I spent on a project so I can record it for future reference.
    With Sony Vegas you could have the time spent actually showing in the software with some tweaking Iw as wondering if you could do the same in Final Cut Pro.
    Thanks for the help guys

    Not as far as I know.
    I find the program based trackers to be a waste of time. Does this happen to you? You go for a coffee break that turns into lunch that turns into a new project meeting and you left the project open the whole time? If so, whatever time the program says you've been working is hours off.
    Just keep a notebook on the desk to track hours if you like analog or set it up in iCal (or Quicken) and develop the discipline to keep your time.
    Nothing is as simple as making a note on a piece of paper - really.
    x

  • How to set the time difference between each data when sweeping voltage using keithley 2400

    Hello friends,
    I am using the sweep vi from Keithley in the SWEEP and Acquire measurement vi.I want to measure the voltage for every step and insert a delay in between every two data, so I need some delay between each I step.
    I am a starter to use Labview, thanks so much for your answers.
    Perry
    Solved!
    Go to Solution.
    Attachments:
    Keithley 24XX Sweep and Acquire Measurements.vi ‏26 KB

    As Dennis said, if you're using the built-in sweep function, you'll have to check the manual. See Section 10-16 (That's section 10 page 16, not sections 10 though 16) of the Keithley 2400 User Manual.
    The Keithley 24xx series has a measurement speed in units called PLC (Power Line Cycles). The default speed is 1PLC, meaning a measurement is taken every 1 power line cycle, or 1/60th of a second (16.67ms). 24XX's can go from 0.01 PLC (every 0.16ms) to 10 PLC (every 166.6ms). The faster you measure, the lower precision you get.
    To set this value programmatically, the command is
    ENSe:CURRent:NPLCycles <n>
    ENSe:VOLTage:NPLCycles <n>
    depending on what you're sensing and where <n> is the number of PLCs from 0.01 to 10.
    Another factor that will determine the time between data points is the SDM cycle. These are more complicated, look at your Keithley user manual for more information. Look at Section 6 and Section 11 for more info.
    Note:
    PLC times are based on a US cycle of 60Hz.

  • How to calculate the % of time difference between different state

    Hi there,
    The below query returns the follwoign outptut. I need to calculate the % of time period that a specific state ( state ex: open or closed or all report )exists.
    I have to find the time difference between the 2 states . How could I do that ?
    The first row shows null for the previous state . How could get actual previous state for the first row?
      SELECT si.station_name,
                    vppstation.avi_control_state_code.STATE_SHORT_NAME,
                    ash.state_id ,
                    lag(ash.state_id) over (order by ash.STATE_EFF_DATE desc) previous_state,
                    TO_NUMBER(TO_CHAR(ash.state_eff_date, 'SSSSS')) "periods in sec",
                    TO_CHAR(ash.state_eff_date, 'dd-mon-yyyy hh24:mi:ss am') "Date"
               from vppstation.avi_state_history ash
    left outer join vppstation.avi_control_state_code
                 on ash.state_id = vppstation.avi_control_state_code.state_id
    LEFT OUTER JOIN vpproadside.stations_installed si  
                 ON ash.station_id = si.station_id               
              where ash.state_eff_date >= to_date('28/02/2010', 'dd/mm/yyyy')
                and ash.state_eff_date <= to_date('03/03/2010', 'dd/mm/yyyy') ;
           group by si.station_name
                         ash.state_id
           order by ash.state_eff_date asc ;
    STATION_NAME                   STATE_SHORT_NAME STATE_ID               PREVIOUS_STATE         periods in sec         Date                   
    IRDNCST02                      Open             1                    NULL                  85166                  01-mar-2010 23:39:26 pm
    IRDNCST02                      All Report       3                      1                      85159                  01-mar-2010 23:39:19 pm
    IRDNCMT01                      Closed           2                      3                      81376                  01-mar-2010 22:36:16 pm
    IRDNCST02                      Open             1                      2                      78723                  01-mar-2010 21:52:03 pm
    IRDNCST02                      All Report       3                      1                      76023                  01-mar-2010 21:07:03 pm
    IRDNCMT01                      Open             1                      3                      55922                  01-mar-2010 15:32:02 pm
    IRDNCMT01                      Closed           2                      1                      54931                  01-mar-2010 15:15:31 pm
    IRDNCHA01                      Closed           2                      2                      41291                  01-mar-2010 11:28:11 am
    IRDNCAS01                      Open             1                      2                      38847                  01-mar-2010 10:47:27 am
    IRDNCAS01                      All Report       3                      1                      37947                  01-mar-2010 10:32:27 am
    IRDNCST02                      Open             1                      3                      35332                  01-mar-2010 09:48:52 am
    IRDNCST02                      All Report       3                      1                      32632                  01-mar-2010 09:03:52 am
    IRDNCST02                      Open             1                      3                      31502                  01-mar-2010 08:45:02 am
    IRDNCST02                      All Report       3                      1                      28802                  01-mar-2010 08:00:02 am
    IRDNCHI01                      Open             1                      3                      25368                  01-mar-2010 07:02:48 am
    IRDNCHI02                      Open             1                      1                      23939                  01-mar-2010 06:38:59 am
    IRDNCMT01                      Open             1                      1                      20696                  01-mar-2010 05:44:56 am
    IRDNCCH02                      Open             1                      1                      13452                  01-mar-2010 03:44:12 am
    Edited by: Indhu Ram on Mar 11, 2010 1:34 PM
    Edited by: Indhu Ram on Mar 11, 2010 2:20 PM

    If you look at the table which is output of the given query , there is column called "STATE_ID" It shows the current state ie open or closed or all report.
    The column 'PREVIOUS_STATE' shows the state before the current state. .In the table in 2nd row in previous_state column there is state_id = 1 (open)which is the state before 'all report state'

Maybe you are looking for