How can timestamp in LVM file - I access the ms value?

Hi all,

I have a file measurament and when I explain it, I need timestamp with millisecond precision, but I can't read in labview!
sample file:
  
Channels 4
Samples of 5000 5000 5000 5000
Date 23/04/2010-2010/04/2010 to 23/04/2010 to 23/04/23
Time 12:40:59.828125 12:40:59.828125 12:40:59.828125 12:40:59.828125
X_Dimension time time time time
X 0 3.3548640598213959E, 9 3.3548640598213959E, 9 + 9 + 9 3.3548640598213959E 3.3548640598213959E
Delta_X 2.000000E - 7 2.000000E - 7 2.000000E - 7 2.000000E - 7
End_of_Header *.

in labview I can read up to the second value either! Why?


Tags: NI Software

Similar Questions

  • How can I save xml file n, run the xml file? Please help me

    How can I save xml file n, run the xml file? Please help me

    Hello

    The question you have posted will be well suited in the MSDN forum. Click on the link below.

    http://social.msdn.Microsoft.com/forums/en/categories/

    In the meantime, I suggest you to return the item mentioned below.

    How to use XML Notepad to create an XML document

    http://support.Microsoft.com/kb/296560

  • How can I know which files are accessed more so I can move them to another drive

    My C drive is constantly busy and is indexed to 100% much of the time.  My swap file is on my S drive and its activity is very low. How can I know what is causing all the readers of the activity on my C drive so I can move some things my S, or other?

    I realize it is not easier to simply move the files, I might have to reinstall some applications or other things. But for now, I don't know what are the files or applications, roll to the top of the activity on my C drive.

    You can use performance monitor. Type perfmon in the "Search" box and press "Enter."

    Open the drive section by clicking on the arrow

    To identify individual files in more detail, you will need the Windows Performance Toolkit

    http://msdn.Microsoft.com/en-us/performance/cc709422

    http://msdn.Microsoft.com/en-us/performance/cc825801

    Download as part of the WIndows SDK from here:

    http://www.Microsoft.com/downloads/dlx/en-us/listdetailsview.aspx?FamilyId=6b6c21d2-2006-4AFA-9702-529fa782d63b

    Select this option for components you need.

    There is a video on the use of the tool here: http://channel9.msdn.com/Events/PDC/PDC09/CL16

    At a glance, use Process Explorer to identify the source of the e/s:

    http://TechNet.Microsoft.com/en-us/Sysinternals/bb896653

    On the file menu, click "show details for all processes."

    On the view menu, click on "Select columns" and check the deltas of reading and writing.

    You can also use the process monitor:

    http://TechNet.Microsoft.com/en-us/Sysinternals/bb896645

    This will show you the operations of individual files so the amount of data will be huge. If a Visual inspection reveals anything, you can export the data to a csv file and use a spreadsheet to a total activity for each file.

  • How can I run an applet to access the camera to PC

    Hello
    I'm working on my thesis. I like topic - face recognition. Subjects must be identified in a webcam/PC camera, installed locally. I mean a USB camera. The application I developed so far is a web application and I have all the necessary code, access to the camera in Swing, in a JFrame.
    Even if I am not able to transfer this code to an applet to work inside my web application.
    I dug into it for a few weeks. The best result I got was an empty applet frame.
    Others reported different exceptions, missing as part of JMF, or (my best friend) classes of the applet class could not be found.
    The applet code I have is

    import java.applet.Applet;
    import impossible;
    to import java.awt.Dimension;
    import java.awt.event.ActionEvent;
    java.awt.event.ActionListener import;

    Import javax.media.Format;
    Import javax.media.Manager;
    Import javax.media.MediaLocator;
    Import javax.media.Player;
    Import javax.media.control.FormatControl;
    Import javax.media.format.VideoFormat;
    Import javax.media.protocol.CaptureDevice;
    Import javax.media.protocol.DataSource;
    to import javax.swing.JButton;
    to import javax.swing.JFrame;
    to import javax.swing.JPanel;


    SerializableAttribute public class WebcamSimpleApplet extends Applet {}
    /**
    *
    */
    private static final long serialVersionUID = 1 L;
    int width, height;

    public void init()
    {
    Super.init ();
    width = getSize () .width;
    height = getSize () .height;
    JFrame f = new JFrame();
    setSize (400, 300);
    f.setSize (500, 400);
    Add (f.getContentPane () .add (WebcamPlayer())) new;
    }
    }

    class WebcamPlayer extends JPanel implements ActionListener {

    /**
    *
    */
    private static final long serialVersionUID = 1 L;

    private static String PLAY_COMMAND = "play";
    private static String STOP_COMMAND = "stop";
    private static String EXIT_COMMAND = "exit";


    protected size imageSize = null;
    protected player player = null;
    DataSource ds = null;

    public WebcamPlayer () {}
    Super (new BorderLayout());
    System.out.println ("MyPlayer ()");
    getCam();
    createGUI();
    }

    public void getCam() {}
    try {}

    MediaLocator ml = new MediaLocator ("vfw:Microsoft WDM Capture of Image (Win32)" :/ / 0 ' ");
    DS = Manager.createDataSource (ml);
    requestFormatResolution (ds);
    Player = Manager.createRealizedPlayer (ds);


    } catch (Exception e) {}

    DS. Disconnect();
    Player.Close ();
    Player.DEALLOCATE ();

    e.printStackTrace ();
    } {Finally

    }
    } / / getCam

    Private Sub createGUI () {}

    If (player.getVisualComponent ()! = null)
    This.Add (Player.getVisualComponent (), BorderLayout.CENTER);

    Buttons
    Play JButton = new JButton (WebcamPlayer.PLAY_COMMAND);
    play.setBorderPainted (true);
    play.setBounds (1, 1, 20, 10);
    play.setActionCommand (PLAY_COMMAND);
    play.addActionListener (this);

    Stop JButton = new JButton (WebcamPlayer.STOP_COMMAND);
    stop.setBorderPainted (true);
    stop.setBounds (2, 1, 20, 10);
    stop.setActionCommand (STOP_COMMAND);
    stop.addActionListener (this);

    Exit JButton = new JButton (WebcamPlayer.EXIT_COMMAND);
    exit.setBorderPainted (true);
    exit.setBounds (3, 1, 20, 10);
    exit.setActionCommand (EXIT_COMMAND);
    exit.addActionListener (this);

    JPanel southPanel = new JPanel();
    southPanel.add (play);
    southPanel.add (stop);

    This.Add (southPanel, BorderLayout.SOUTH);

    this.setVisible (true);
    this.setSize (320, 240);
    }

    Private boolean requestFormatResolution (DataSource ds) {}
    If (ds instanceof CaptureDevice) {}
    [FormatControl] fcs = (ds) .getFormatControls () (CaptureDevice);
    for (FormatControl fc: fcs) {}
    The formats [] = (CF) .getSupportedFormats ((FormatControl));
    for (Format format: formats) {}
    If ((format instanceof VideoFormat)
    & & ((Format) .getSize () .getHeight () (VideoFormat) < = 240)
    (& & ((Format) .getSize () .getWidth () (VideoFormat) < = 320)) {}
    If (instanceof VideoFormat size) {}
    (CF) .setFormat (format) (FormatControl);
    imageSize = (format) .getSize () (VideoFormat);
    Returns true;
    }
    }
    }
    }
    }

    Returns false;
    }

    public void actionPerformed (ActionEvent e) {}

    If {(e.getActionCommand (.equalsIgnoreCase (EXIT_COMMAND)))
    System.out.println ("EXIT_COMMAND");
    free resources
    DS. Disconnect();
    Player.Close ();
    Player.DEALLOCATE ();
    Reader = null;
    System.Exit (0);
    }

    If (e.getActionCommand () .equalsIgnoreCase (PLAY_COMMAND)) {}
    System.out.println ("PLAY_COMMAND");
    Player.Start ();
    try {}
    Thread.currentThread ();
    delay in the initialization process
    Thread.Sleep (1000);

    } catch (InterruptedException e1) {}
    Generative TODO catch block
    E1. PrintStackTrace();
    }
    }

    If (e.getActionCommand () .equalsIgnoreCase (STOP_COMMAND)) {}

    System.out.println ("STOP_COMMAND");
    Player.Stop ();
    }

    }
    }

    and works fine if I run it in Eclipse-> run as a Java applet.

    The question is:
    Could you point me to a good tutorial or show me something not working?
    I will really appreciate if you can give something for Dummies or non-cerveau webcam Java applet programmer.

    Thank you

    user985724 wrote:
    Well, I got it. But I will REALLY appreciate any advice.

    You said earlier "I know I should package the applet into a jar file and the sign, but I have not yet had no chance." which means you try running it without signing (which is strange since you posted this in the forum "Signed Applets" which implies that you know that you have to sign). You must sign the Applet, if any Jo will be able to run it without making any configuration changes that will be detrimental to the overall security of his computer and you can register only jar files and not unique class files. So my advice - spend some time to learn about how in the container of your Applet and how to sign the jar file.

    P.S. for test purposes you can "auto sign."

  • In the start-up procedure, how can I remove "press ESC to access the Start Menu" when the machine hangs at the HP logo screen?

    Hello

    I am running 64 Win7HP on a laptop HP dv3, processor Core 2 Duo 4 GB DDR2 Ram, 320 GB HD, just as it came out of the box when purchased directly from HP replaced EXCEPT Vista OS with 64bits Win7HP.  Machine worked fine until the LAST update of Windows, where during the reboot, I got to the HP logo screen and in the lower left corner of the screen appeared the statement (for THE FIRST TIME) "Press ESC for the Start Menu."  Pressing Esc translates into another command "press Esc...".  Break. " When you press ESC, you get a black screen until the machine goes to sleep UNLESS you press Ctrl + Alt + Delete. If you press the 3 key combo, it will continue to start and brings you to the screen of your password for access and then operate nicely, until you turn off the system. So, how can I get rid of the superfluous instructions and get this thing here where he turns and goes directly to the screen of password without intermediate steps?  Restore points are long since gone for immediate access to the front last Win Update.
    The answer may be simple, but until now it has escaped my low range.  Any help is appreciated.
    Creyn1

    Hi Creyn1,

    Welcome to the community Microsoft and thanks for posting the question.

    According to the description, it looks that you are facing a problem when connecting, he would be grateful if you can answer this question in order to help you further.

    Do you receive an error message or error code?

    I suggest trying to boot in safe mode and check if it helps.

    Start your computer in safe mode: http://windows.microsoft.com/en-US/windows7/Start-your-computer-in-safe-mode

    If its working fine with safe mode then put the computer in a clean boot state, then check if that helps you

    Put the computer in a clean boot state and check if any third-party application is causing the problem, as the start-up boot helps eliminate software conflicts.

    How to solve the problem by running the clean boot in Windows 7: http://support.microsoft.com/kb/929135

    Note: Once you have completed troubleshooting, perform the steps in the step 3: to reset the computer as usual.

    If you have any other questions or you need Windows guru, do not hesitate to post your questions and we will be happy to help you.

  • How can I rebuild a file descriptor without the necessary info VMDK?

    I have four files VMDK format 2gbsparse without the correct descriptor file. I need to access the data (access part will do). I don't know the correct origin of the disk size or the last piece.

    The sizes of the blocks are:

    2,094,596,096 test-c-export - s001.vmdk

    2,139,947,008 test-c-export - s002.vmdk

    1,790,012,344 test-c-export - s003.vmdk

    1,739,020,288 test-c-export - s004.vmdk

    Any tool can deal with this situation? I failed to persuade VDK to play songs again.

    the descriptor you compound is inconsistent - you use a diskgeometry for a record 38 GB.

    You must use better

    DDB. Geometry.Cylinders = "1043".

    instead of 5000.

    Do not use vmkfstools - I it would rise with vdk.exe instead.

    Anyway - I doubt that it will work like that - the disc was probably not created in 8188 MB size.

    I suggest you fake a 5th slice and use a geometry for 8 GB

    ___________________________________

    VMX-settings- WS FAQ -[MOAcd | http://sanbarrow.com/moa241.html]- VMDK-manual

  • How can I close a file opened in the open in windows Explorer (searchqu tollbar) program

    Searchqu tollbar is open in windows Explorer and I want to shut it down. How can I do?

    Many regard as malware, in programs & features so theres an entry uninstall them it.

    Otherwise scan your PC with this free utility

    http://www.Malwarebytes.org/products/malwarebytes_free/

    Otherwise, see this post above

    http://answers.Microsoft.com/en-us/IE/Forum/IE8-Windows_7/how-to-uninstall-Searchqu-toolbar/d0b18d31-097D-4A85-BB43-9f7a6c7c619a

  • How can I make my files open with the section 'files' (on the left) already enabled (in Windows Explorer)?

    I'm on Windows XP with Service Pack 4.  The "show common tasks in folders" checked in folder options and my windows Explorer opens with the "common tasks" bar on the left side.  I have to click on 'files' (in the top tool bar) to get my files to display on the left.  If I click on "use Windows classic folders" instead of "Show common tasks in folders" my explore opens with no left bar at all and I still click on 'files' to have folders appear in the position of the left side bar.  Can I solve this case everytime I open windows Explorer opens on the side bar of folders on the left and content on the right?  If Yes, where and how do the default every time I open windows Explorer?  Thanks for any help, that all the world can offer.

    Thank you very much.  This has not only had what I wanted, but also extend this ability to any file folder I click on.  What I was really doing was: I saved a link to a set of "my computer" window microsoft explore my d: drive (my data partition) so it automatically goes to what I look at in explore more often rather than having open 'my computer' and go through several steps to get to the open D: partition.  But I still had to push the button of "folders" at the top of the page to open the view in the left bar of my directories - every time.  With your help my link now opens windows Explorer set up exactly the way I want every time!  You have saved me from countless steps repetative in the future for every time I open windows Explorer.

    Thank you once again,
    David Myers

  • How can I add a file extension to the DreamweaverCC list? Specifically want to add the file extension .mgi

    Hello:

    I would like to add the file extension .mgi to the list of recognized file DreamweaverCC.

    How to do this. I can only find information up to Dreamweaver CS3.

    Appreciate your comments.

    Bob Johnson

    It should be to...

    Mac HD > users > (username) > library > Application Support > Adobe > Dreamweaver (version) > (language) > Configuration

  • How can I recover a file that displays the error message: illegal operand; Faulty operator:.

    My file was closed without problem and saved correctly. At the opening I get the message: illegal operand, operator Offending:, what can I do to fix this file? I created the file using Illustrator CC2014 with the MAPublisher plugin on an iMac, running OS x 10.10.2,"limited Yosemite. The file is a map and consists of several layers. I'm very curious to know what may have caused this problem to occur and how to get around. André.

    André,

    Thanks for sharing.

    It will be good to see if the change will make things work.

    Note that the error message does apply to the comma and no to the line, then you might think that just the comma must be changed.

    On the other hand, there are other lines with commas before and after.

    If remove the whole line fix, you can get (small) changes made to the work to make sure that everything is as you want, or make the necessary changes.

    Otherwise, you can reinsert (search for the sequence of the remaining lines around it) and try again.

  • How can I MIX photos files opened in the Gallery of photos uploaded Photo, has attempted to open in word document too HELP!

    opening files of MIX in the GALLERY

    opening files of MIX in the GALLERY

    ===================================
    The picture it!. requires format Mix (extension)
    Ms Picture It! or MS Digital Image.

    If you need an application to open files with... you
    could use the trial version of 60 days of digital
    2006 image.

    Even if you have the .mix files... it might be
    a good idea to save them in a more universal
    .jpg, .png, or .tif format. You can make a
    lot in Digital Image if you are going to...
    ...... Editing / Edit in Mini Lab to batch / save under...

    The number of files that you can convert simultaneously
    depends on your system resources but I
    would try 50 and see what happens.

    Microsoft Digital Image
    Starter Edition 2006
    http://tinyurl.com/28loxr
    or...
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=7C3B3DED-A15F-48C5-B724-7796FE8C151E&displaylang=en
    (this product line has been
    abandoned, but you can still
    Download the Starter Version
    and run it to 60 days) John Inzer - MS - MVP - Digital Media Experience

  • How can I remove text file saved in the paint?

    THE RAGE TECHNOLOGY! I should stay to build things!

    If you have an image saved as a file. JPG or. PNG then the text will be part of the image and not easily removable - you will not be able to simply select the text and delete it as you can in a word processor document. Instead, you will need to use your artistic skills, try to use the tools of painting (or other photo editing software) image editing. The results will depend on the complexity of the image in and around the text and your skills.

    With the help of paint:

    http://windows.microsoft.com/en-gb/windows7/using-paint .

  • How can I remove iCloud files downloaded on the iPad

    If I have files in my iCloud drive that were created on my Mac.  I initially these files have to be downloaded on my iOS device.  Once they have been downloaded, is there a way to delete local content on my iOS device?

    I do not particularly like on a single PDF, but I'm looking before putting all my Documents and stationery in the iCloud drive under Sierra - at that time, the total amount of files could become a problem.

    If the files reside in iCloud and you delete it, it will be removed from all devices.

  • On the design of my phone, how can I make a link to access the my desktop version?

    I'm doing my site to phone for the first time.  My site is very informative, but I don't want that for the phone, of course.  How to make a 'click here' if someone wants to see the full version of office?

    Hello

    Please check this thread

    Re: The link to main office site mobile site?

  • How can I block a user/computer access to an IP device on my network

    We have a couple of clocks on our network that are accessible via a web browser using the IP address of the device.  I want to block some computers to access the device.  I tried to modify the HOSTS file, but it only works with domain names.  How can I stop these computers to access the device?

    Hello Ron,

    I'm out of ideas. I hope that someone else will come with entry fees, but I think your best bet would be to bash heads of two management board until they see sense!

    I'm guessing that you are on a server-based network. You can get more joy in Server forums...

    http://social.technet.Microsoft.com/forums/en-us/categories/

    If you ask here, post you a link in this thread so we can monitor? Thank you.

    Tricky

Maybe you are looking for

  • can not read files is mod more

    Hello "I think that ' since I upgraded to final cut pro and the new OSX, I can't read my files is a mod for all older projects that I've done. I connect etc, fcp detects files, the film is always black with no sound. How can it be resolved? Thank you

  • my Skype has stopped working

    I updated latest version of Skype and I use family vista premium, I can always connect but after a few seconds message appears on the screen of Skype has stopped working...

  • Computer seems infected by a virus

    I am running windows xp family. my computer seems infected by a virus. She runs very slowly and I'm unable to access the internet or some programs easily. I get the warning message 'disk C is full, there are 0KB available"asking me to free up space b

  • My Pc will not update why

    whenever I try to open my msn messenger I get a notification to update it but by the time I'm trying the update, I see a notification telling the platform upgrade window, so according to the instruction, I followed I get error to the average of the u

  • Access violation at address 59 * 963 in the module 'SMM.dll '. Read address 00000004

    Hello I get this error when you try to start the Migration of data from Samsung. I tried to start in safe mode, the same error. Also run a sfc/scannow found no errors. I also tried to run the program as an administrator, no luck. The address change s