How can I read a TDMS 2.0 file using nilibddc.dll

I have written some Matlab software to read TDMS files into Matlab using the MATLAB TDM example and the nilibddc.dll. However, when I create a TDMS version 2.0 file with Labview 2009 I cannot read it into Matlab as I get the error
ERROR: TDS Exception in Initialize: Tds Error: TdsErrFileVersionTooNew(-2510)
Is this due to the versioning of nilibddc.dll and if so when will this be fixed? I understand that I could convert the TDMS file to version 1.0 however this is impractical and time consuming given the large number of TDMS files that I am dealing with.

borert-
Please follow the posts on the link to the forum from muks. This forum will be updated by the Software Engineer currently working on this topic as per his post.
Regards,
Mike S
NI AE

Similar Messages

  • HT5098 How can I read on my Apple Arabic files of Times New Roman or Arial in PC? when I get the files the Arabic letters are separate and not joined. Is there a common font in Arabic that can convert the PC Windows files to  my Apple?

    How can I read on my Apple Arabic files of Times New Roman or Arial fonts made in PC? when I get the files the Arabic letters are separate and not joined. Is there a common font in Arabic that can convert the Arabic  PC Windows files to  my Apple?
    The same with email messages ,
    And when I get Power Point files made in PC Windows, they are like PDF, not Power Point!
    Anybody with a good suggestion?

    Yewtree wrote:
    when I get the files the Arabic letters are separate and not joined
    Do not use MS Word for Mac, it does not support Arabic.  Instead use Mellel, TextEdit, Nisus Writer or OpenOffice.  Try the font Geeza Pro if others do not work.
    What are you using to read email?
    What are you using to read powerpoint?

  • How can I see the information about a file used in a sequence?

    How can I see the information about a file used in a sequence?

    You can use pretty much any two or multiple button mouse on a Mac, right out of the box.
    I use this one: http://www.apple.com/mightymouse/

  • How can I get rid of a music file use in a menu?

    How can I get rid of a music file use in a menu? I try to get rid of it from the menu inspector but although I delete it there, it is still in use by the menu!
    it is not inthe audio window in the menu inspector but is still in use! wiered!

    Click on the menu with the audio, then look in the property inspector, under the 'general' tab.
    Towards the bottom there is the list containing the audio file for the menu - click on the file and use the '-' button in the bottom left corner of the PI...

  • How can I print stuff from the 'Help' file using my MacBook Air?

    How can I print stuff from the 'Help' file using my MacBook Air?

    Open the Help viewer, select a category then from the menu bar top of your screen, click File > Print

  • Using Lab view ver 6,How can I read a cell of excel file right after I write to it

    How can I read a specif cell of an Excel file using Labview VI.

    Hi,
    Attached is a LV6.1 VI which will read a cell.
    It will be looking for a sub VI found in the example C:\Program Files\National Instruments\LabVIEW\examples\comm\ExcelExamples.ll​b.
    The returned value is a string value but there is no reason why it couldn't be a number. Just connect a numeric to the type connector of the Variant to Data function.
    Hope this helps.
    Regards
    Ray Farmer
    Regards
    Ray Farmer
    Attachments:
    Get_Cell_Value.vi ‏41 KB
    Write_Table_To_XL.vi ‏101 KB

  • How can I read fast 50 MB Excel file in LabVIEW

    Hi,
    I have created a datalog file containing string i/p and having extension ".exl". File size is around 50 MB. When I read this file using LabVIEW, it takes 1/2 hour to display data in Array. How can I minimize this read time in LabVIEW. Or is there any options available to create large datalog files with string i/p and read it fast?
    Examples are well appriciated.
    Thanks.

    What kind of file is it? If you are writing datalog files, there is no reason for giving them excel (.xls) extensions. Excel cannot read datalog files. The other way around, native excel files cannot directly be read by Labview.
    In general terms this is what you may look into:
    -use a compact file format like (real)datalog, fully binary or at worst plain ascii text file.
    -you do not have to read the whole file into memory at once, depending on your application.
    -look at your (RAM) memory space: it sounds like you are running very low on memory and the OS needs to pagefile most of it. Try closing all unnecesary programs and/or buy more memory. Also look for memory hogging inside your code: releasing data that is no longer needed will free memory used by labview. "Uninitialized" arrays for example may seriously slow down a computer.
    my two cents,
    aartjan

  • How can i read the data from attached file?

    using javamail i receiving a mail with attachment
    but unable to read the content of the file
    Plz help me out
    thanks in advance

    The answer is in the JavaMail FAQ.

  • How can I export a surround sound movie file using compressor?

    I want to create movie files using Motion and Soundtrack Pro that have surround sound. I can make ac3 surround sound files in SOundtrack Pro, I can add them to projects in Final Cut Pro, but I can't see any way to use Compressor to output the movie files with surround sound. The encoding results in plain stereo files. Please help.

    HI Tony, you should be able to do this simply within the Compressor.app V4.1.x using the "surround Sound Group" and the shipped setting DOLBY DIGITAL setting. Instead of just adding a file, you need to:
    Add a "Surround Sound Group" (control++i or file/add surround sound group or use the "+" plus sign at bottom left corner of Current/BATCH window". You'll get  a pane with the channels you need to manipulate.
    Click on the tracks Icons L to Rs and  select the surround tracks as prompted and navigate through the finder interface. .. simple. WAV, BWF etc
    Optionally Add the video object from here too.
    Select the BATCH job (top layer with the ORBIT looking icon)) and use the INSPECTOR (right pane) to see what audio objects have been selected and verify location etc.. follow the dialogue (follow your nose)
    Then Select the SETTING layer and use the default DOLBY DIGITAL setting and form the "settings/Create Blu Ray/Dolby Digital" and drag it over the batch job setting
    Select this and adjust the LOCATION for the target distribution
    Select the INSPECTOR AUDIO pane (right pane) and adjust any settings and EFFECTS to your taste.
    select the cluster (if one is defined)
    +B (submit) the job for the distribution or another master.
    This will work fine.. pretty easy..  You'll need to work the audio settings as you like. If you get stuck, use the compressor.app V4.1 help.. its actually good.
    Post your results for others to see.
    Warwick
    Hong Kong

  • Regular Expressions - How can I read the char of a text using the index?

    Assuming that, this is a findWord function which searches in a text and returns the indexes that a given word is located. How to read the characters that are located some pos before each index?
    Kind regards,
    Vag.
    public static void findWord(String type) {
            int count = 0;
            String regex = "<a word>";
            String text = readFile("data/raw/" + type + "/" + type + ".page.all.txt");
            Pattern pattern = Pattern.compile(regex);
            Matcher matcher = pattern.matcher(text);
            System.out.print("Word <a word> was found at positions");
            while (matcher.find()) {
                count++;
                System.out.print(", " + matcher.start());
            System.out.println(" at a total of " + count + " times!");
        }

    Read the API docs for java.util.regex.Matcher. The matcher object exposes this data via start() and end() methods.

  • How can we read and write data into plist using javascript in a html5 widget to be implemented into iBooks?

    I had been trying to read from a plist to get file names of data files and it works fine when i run it in safari but after making its widget and putting it into iBooks it doesnot works. Please tell me any new method to read p list or correct my function if there is any correction. my function is following.
    function plistread(n)
              if (window.XMLHttpRequest)
                   xhttp = new XMLHttpRequest();
               else
            xhttp = new ActiveXObject("Microsoft.XMLHTTP");
                   xhttp.open("GET", "Spell_Check_3.plist", false);
        xhttp.send();
        xmlDoc = xhttp.responseXML;
        var x = xmlDoc.getElementsByTagName("dict");
        var imgnamex = x[n].getElementsByTagName("string")[0].childNodes[0].nodeValue;
        xlength=x.length;
              return imgnamex;

    See i need to access a plist file in my html5 widget, i implemented it in java script but it's not working so is there any other way to take out values from a plist file.

  • How can I read "Keys" from a Config File that have square brackets in them?

    I'm using the "Read Key (String).vi" from the config.llb and I'm having a problem because the key names in my file have square brackets in them. I'm creating an VI to read certain pieces of the TestStand �StationGlobals.ini� file and array elements appear as %[0] = "blah blah blah". It looks like they're not getting recognized at all. Is there a way to handle this?

    I was just looking at the code inside the configuration VIs and the way they work under V6 is that the Open VI actually reads the contents of the configuration file, parses it (in nice-platform independent G) and stores it in a fancy LV2-style global called the "Config Data Registry.vi". The routine that does the parsing is called "String to Config Data.vi". My gut reaction is that this code is going to be the same in your version because between sometime prior to V6 of LV, NI changed the location of a couple terminals on the low-level Match String function and it looks like when this code was originally written the terminals were in the old configuration.
    In any case, if your square-bracket containing strings are getting lost, this is probib
    ly where it's happening at. The other place to check is in the read VI itself. The V6 VI for reading the configuration registry is called "Config Data Get Key Value.vi". It's output is then further parsed by a function called "Parse Store String.vi" if the "read raw string?" input is set to False (the default position).
    Given that all the code for these functions are written in LV, you should be able to fix your VIs to read the strings you have in the ini file now. Which IMHO is actually the way they should work.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • How can I read a text on Image by using IMAQ vission tool

    I would like to read a text on the image file by IMAQ vission tool.

    Could you explain a little more what it is you are trying to do?
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • How can we read a column from text file

    hai,
    the Text file contains :
    m1 m2 m4 89
    m1 m2 m4 89
    m0 m4 m2 90
    I need one array for each column
    m[0]= m1,m1,m0 (first column from text file)
    m[1]= m2,m2,m2 (second column from text file)
    m[2]= 89,89,90 (third column from text file)
    andvance thanks

    If a 2D array is OK (instead of 4 separate arrays), try something like this
    import java.io.*;
    import java.util.ArrayList;
    class FileReadColumns
      public static void main(String args[]) throws IOException, FileNotFoundException
        String line;
        ArrayList lines = new ArrayList();
        BufferedReader in = new BufferedReader(new FileReader("data.txt"));
        while ((line = in.readLine()) != null) lines.add(line);
        String bits[];
        bits = lines.get(0).toString().split(" ");
        String grid[][] = new String[bits.length][];
        for(int i=0;i<grid.length;i++)grid[i] = new String[lines.size()];
        for(int i = 0; i < lines.size(); i++)
          bits = lines.get(i).toString().split(" ");
          for(int ii = 0; ii < bits.length; ii++) grid[ii] = bits[ii];
    for(int i = 0; i < grid.length; i++)
    for(int ii=0;ii<grid[i].length;ii++)System.out.print(grid[i][ii]+" ");
    System.out.println();
    System.exit(0);

  • How can I embed metadata in a pdf file using Acrobat XI Pro?

    Hi, everyone!
    I need some info how I can put things like key words, description of the file and the like permanently in the file to let it 'travel' in the file everywhere, no matter what the OS is. I guess I should use Properties 'path' but it resembles Windows system properties, so I'm not sure. Moreover, there's so little about it in manuals....
    Once I've done with it, can it be read just by Adobe Reader?
    And one important thing more: is there any inner search engine inside Acrobat XI to search the files by key words and other similar metadata criteria or I'm solely dependant on the OS search function?

    Thanks for the link - it sounds highly specialised, but simple experiments of opening a Properties Windows and putting some description notes and author or key word is readable by Acrobat reader or the system search engine so maybe it's not really complicated - mind you, I don't mean right-clicking on the file where options are poor and probably thode of the OS but Preferences edition after opening the document in Acrobat XI Pro - I hope this one is of Adobe and maybe I won't need Bridge to read it I know in the suggested thread it's a problem of graphics metadata within the pdf file....

Maybe you are looking for

  • Conditional text always shows when open file in FM12

    I have numerous files with contional text that appears if a certain condition is met. Now in FM12 (on Windows 7) when I open those files the text appear even if the condition is  not met. It disappears if I apply the conditions but it will reappear i

  • Read this if you have the Looping Audio issue...

    I was having this problem and it was driving me nuts. It would do it randomly everytime I used iTunes. I searched around the web but could not find anything related to this issue except for these forums. What fixed it for me - Go into your Sound pref

  • Mini displayport hdcp

    I've got an LG L204WT screen connected via VGA cable to mini Displayport. I've also connected to a sony Bravia TV. I purchased an HD movie in itunes, and cannot watch it on either screen because of the hdcp. I know the master key has been released, i

  • My Touch only plays single files in a podcast

    I have a bunch of pod casts downloading but my iPod will not go onto the next cast in the directory no matter what I do. As far as I can tell the circle / twisted arrows do not do anything whether blue or not, with a 1 on or not, despite what the man

  • Need a function module to read some std. fields in service process in CIC

    Hi All,     Process is - > user creating service process doc. in/from CIC (win client). SAP CRM 3.1 Version. Under service document's interaction record there are few fields (category, priority, reason, status, result). Using FM: crm_order_read, am a