How to import a string array from labview into DIAdem Spreadsheet/table

How to set up a diadem template so when using labview diadem express, the values are imported into a table.
I have values such as gain, corner frequency, and pass/fail that exist in arrays generated from collecting information from a 7 electrode EEG system.  I want to create a table/spreadsheet in DIAdem that imports the data when using the LabVIEW DIAdem express function, into a table or spread sheet?
Any takers?
-Regards
eximo
UofL Bioengineering M.S.
Neuronetrix
"I had rather be right than be president" -Henry Clay
Solved!
Go to Solution.

Hi eximo,
The DIAdem Report express block makes it easy to populate text boxes and 2D graphs in DIAdem from variables (wires) in LabVIEW.  Unfortunately neither 2D tables nor 3D graphs are implemented in the DIAdem Rerpot express block.  So you've got 2 options.
Option 1:  if you don't have too many strings that you want to display, you can arrange that many text boxes into the shape of a 2D table and use the DIAdem Report express block as it was intended (sending data to it from LabVIEW wires).
Option 2:  at some point as you continue to add elements to your report, you'll probably end up here.  The DIAdem Report express block was designed to connect LabVIEW wires with simple DIAdem reports.  But there is a hook you can use in the DIAdem Report express block to run a VBScript instead of loading a REPORT template *.TDR file.  With a DIAdem VBScript you can accomplish anything in DIAdem.  In addition to wiring up a VBScript path instead of a REPORT template path, you'll also need to send all the data you want to report on to a TDMS file and have DIAdem read the data from that file, instead of receiving the data directly from the LabVIEW wire at the express block's input terminal.  This is a little more complicated, but it will allow you to do absolutely anything you want to in DIAdem and start that report from LabVIEW.
I'm attaching an example of Option 2, but I'd be willing to help you adapt it to your data and reporting needs if you'll post or email ([email protected]) your data set and a rough *.TDR file of what you want in REPORT.  It's pretty slow here at the office over Christmas, so I've got time....
Brad Turpin
DIAdem Product Support Engineer
National Instruments
Attachments:
DIAdem Report File.zip ‏90 KB

Similar Messages

  • How to import PSE tagged pictures from friends into organizer correctly?

    Hello,
    my father and me have both PSE, I have version 11, he 10. When I get tagged pictures from him, the persons are normal tags after import to PSE Organizer 11 and not faces. How can I import those pictures, that I can filter later for the already included persons without repeated face detection by myself?
    Thank you
    Christian

    Hello Andaleeb,
    sorry for my long delay, but I don't get so often new photos from Friends. Today I got the same problem by importing Tagged Fotos from PSE11 to an other PSE11 Catalog. Here is the reproduction:
    - Having two Catalogs: One e.g. For photos until 2009 and one for newer photos.
    - Finding some Scans in newer Catalog (>2009) with wrong date and correct the date to <2009.
    - Tag all photos in new Catalog with Persons (faces) e.g. "Christian from Laatzen"
    - Save meta data in the files (by File menu)
    - Copy Files via Drag and Drop to a folder where also other files of old catalog (<2009) are stored
    - delete files in new catalog (incl. checkbox detele also from harddisk) because the copy is in the other folder
    - open old catalog where also a person "Christian from Laatzen" is included
    - import there the fotos from the folder created above
    - Get a selection box if tags shall be imported (there the names are shown: e.g. "Christian from Laatzen")
    - Import -> Now are the persons are together with other imported tags in a Tag-category like "imported keywords" (german: "Importierte Stichwort-Tags").
      Here I can filter for "Christian from Laatzen" correcty like for other tags like "Holiday". But the photos are not detected as people/faces - when I select People tab and then the stack of "Christian from Laatzen" (tagged before in old catalog <2009) the new imported photos are not shown...
    Hope it helps to understand the problem. I wouldn't create a screenshot as there would be real names with first and last name of > 10 persons and I assume it would not be ok for them to find there nemed in a forum.
    Thank you very much!
    Christian

  • How to import the vdo clip from youtube into iMovie?

    I just bought MacBookAir (version 10.7.2), in addition I haven't  got used to Mac yet.
    I have to make a presentation which needs a vdo clip inserted from youtube. How can I do?
    Thank you.
    Phantila

    cphantila wrote:
    … What's going on? …
    YT videos usually are 'hidden'.
    a very convenient way is:
    • download and install Firefox
    • download and install the add-on Download Helper
    You'll notice a tiny new button upper left, which starts to animate if the site you're on offers any downloadable media.
    On YT, DownloadHelper shows all sizes&formats, YT offer this specific upload. If avail, select the .mp4 to avoid further conversions.
    WARNING:
    This is technical advice!
    Not all content at YT is 'free' for download nor free for further processing nor meant for publication by you!
    The ToU you signed at YouTube prohibits any downloads if not esp. mentioned for this specific content.
    be nice to copyrights

  • Pass 2D array from LabVIEW to C# problem

    Hi , I have made a dll using .net assembly to use my labview code in c# . I can easily pass string , numerical and 1D arrays from labview to c# and vice versa, but when I want to read back 2D U16 array from Labview in c# I get the following exception although they have exactly the same type (ushort)
    Cannot widen from source type to target type either because the source type is a not a primitive type or the conversion cannot be accomplished.
    Could you please let me know how should I pass 2d array from labview to c#
    Thanks

    If all else fails, you could pass n 1D arrays across and then put the original 2D array back together. That's probably how the computer would do it behind the scenes, anyway.
    Cameron
    To err is human, but to really foul it up requires a computer.
    The optimist believes we are in the best of all possible worlds - the pessimist fears this is true.
    Profanity is the one language all programmers know best.
    An expert is someone who has made all the possible mistakes.
    To learn something about LabVIEW at no extra cost, work the online LabVIEW tutorial(s):
    LabVIEW Unit 1 - Getting Started
    Learn to Use LabVIEW with MyDAQ

  • How do I return a Boolean array from LabView to TestStand?

    I am trying to return a Boolean array from Labview to TestStand and have TS evaluate the results. I can do this for arrays of integers or reals but booleans do not work. I tried copying the PassFailTest step type and adding an array of Bool but I couldn't get it to evaluate the array. It simply always passed. How can this be done?
    Bob A.

    I have thought about evaluating the Boolean data in TestStand but, as you say, this is a lot of work. What I have been doing is to map the boolean data to integers in LV (very easy) and then use the multiple numeric step type to evaluate the integer array automatically. This feels kludgy and I have tried a couple of times to create a "multiple boolean" step type with little success. I'm surprised TS hasn't anticipated a test returning multiple pass/fail results. I do this all the time for production code.
    What I have tried is to copy MultipleNumericLimitsTest data type to a custom type and add a BooleanArray with a data type Array of Boolean[0..empty]. Then when I specify module, I select Step.BooleanArray as the value. The last step (that I know of) is to select Step.BooleanArray as the data source in the edit limits window. At this point if I run the test, I get the error "expect numeric, found boolean" (or something similar). When I look at the properties of my custom step type, the Substeps has DoMultiNumericMeasEvaluation as the Post-Step. I believe this is the root of my problem but I can't figure out how to change this to "DoMultiBooleanMeasEvaluation" or similar. Any Ideas?

  • Problem in reading data from Excel sheet to 2D string array (ActiveX & LabView).

    I am trying to read data from Excel sheet to 2D string array (ActiveX & LabView). Error -2147352571 is generated (type mismatch) if cell value is "#NULL!", "#N/A" etc. What should I do?

    Hello �
    Is the error happening when the cell value is #NULL or #NA only?
    Sometimes these errors occur because of an ActiveX object mismatch. The version of the ActiveX object might have changed or been updated since the VI was created. The VI tries to use an earlier, incompatible version of the ActiveX object.
    To solve the problem, you need to link automation refnum terminal to the correct ActiveX object. To do so, right-click an automation refnum terminal and choose Select ActiveX Class»Browse from the shortcut menu. From the Type Library pull-down menu, select the latest version of the library you want to use, such as Microsoft Excel Object Library. In the Objects list, select an ActiveX object, and click the OK button. Link ea
    ch automation refnum terminal in the VI and its subVIs until the run arrow is not broken. Also, you might have to replace some or all of the Invoke Nodes and Property Nodes for the ActiveX objects.
    Also, I came across this Knowledgebase. The error number is slightly different but it is always good to check it out and make sure it is not your case.
    Hope this helps.
    S Vences
    Applications Engineer
    National Instruments

  • How can i load a VI from LABVIEW ver 6.0.1b3 to LABVIEW ver 6.1

    How can i load a VI from LABVIEW ver 6.0.1b3 to LABVIEW ver 6.1......I want to load a vi but i'm getting this error:
    LabVIEW load error code 9:VI version (6.1) is newer than LabVIEW version (6.0.1b3)
    My LabVIEW ver is 6.1
    Please help ......it's important
    Thanks

    I am having similar issues with a *.exe from LV6.1.  I have the runtime engine for 6.1 and recently upgraded to 8.2 from 7.1.  I've never had 6.1 on my machine.  I am able to install this executible and runtime engine on a machine with 7.1 and can run the *.exe fine. 
    I get a load error and am not sure why.  I have had similar issues with old VI's that I have written in 7.1 executing on this machine w/ 8.2
    any suggestions.
    Attachments:
    error.zip ‏14 KB

  • Can some please provide instructions on how to import an iPhoto library from an old Mac to a new Mac without getting a bunch of duplicates?  I tried transferring my pictures using an external hard drive and then copying it to the Pictures folder on my Mac

    Can someone please provide instructions on how to import an iPhoto library from an old Mac to a new Mac without getting a bunch of duplicates?  I tried transferring my pictures using an external hard drive and then copying it to the Pictures folder on my new Mac.  I ended up getting a bunch of duplicates. My old Mac has an older version of iPhoto while the new Mac has iPhoto '11.  Is that the cause of the problem?  Please advise.  Thanks.

    Simply copy the iPhoto Library from the Pictures Folder on the old Machine to the Pictures Folder on the new Machine.
    Then launch iPhoto. That's it.
    This moves photos, events, albums, books, keywords, slideshows and everything else.
    Regards
    TD

  • How can I read pdf files from LabVIEW with different versions of Acrobat reader?

    How can I read pdf files from LabVIEW with different versions of Acrobat reader?
    I have made a LabVIEW program where I have possibility to read a PDF document.  When I made this LabVIEW program it was Acrobat Reader 5.0.5 that was installed on the PC. Lather when the Acrobat Reader was upgraded to version 6.0, there was an error when VI tries to launch the LabVIEW program. And Later again when we upgraded to Acrobat Reader 7.0.5 I must again do some changes and rebuild the EXE files again
    It isn't so very big job to do the changes in one single LabVIEW program, but we have built a lot of LabVIEW programs so this take time to due changes every time vi update Acrobat Reader. (We have build EXE files.)
    The job is to right click the ActiveX container and Click "Insert ActiveX Object", then I can brows the computer for the new version of acrobat Reader. After this I must rebuild all the "methods" in the Activex call to make the VI executable again.
    Is there a way to build LabVIEW program so I don't have to do this job every time we update Acrobat Reader?
    This LabVIEW program is written in LabVIEW 6.1, but I se the problem is the same in LabVIEW 8.2.
    Jan Inge Gustavsen
    Attachments:
    Show PDF-file - Adobe Reader 7-0-5 - LV61.vi ‏43 KB
    Read PDF file.jpg ‏201 KB
    Show PDF-file - Adobe Reader 5-0-5 - LV61.vi ‏42 KB

    hi there
    try the vi
    ..vi.lib\platform\browser.llb\Open Acrobat Document.vi
    it uses DDE or the command line to run an external application (e.g. Adobe Acrobat)
    Best regards
    chris
    CL(A)Dly bending G-Force with LabVIEW
    famous last words: "oh my god, it is full of stars!"

  • Code for how to read an integer array from the command prompt...

    hello,
    Could anyone give me the code for how to read an integer array from the command prompt...its very urgent!..

    If you are using a recent version of Java (5 or later) you can use Scanner:
    http://java.sun.com/javase/6/docs/api/java/util/Scanner.html
    That page has some example code on it, too.

  • How to import SQLite .db file from AIR project

    hi friends..
    how to import SQLite.db file from AIR project. and i want use this in my application.
    after importing can i update and delete the recordS?

    There's no import needed. You just open it using the AIR SQL APIs. If this database file was created outside AIR, it's not necessarily compatible, though. There are SQLite features and extensions that aren't supported in AIR.

  • Passing values to form bean string array from dynamic added textboxes

    Hi,
    I am unable to pass values to form bean string array from a jsp in which I have incorporated dynamically adding of textboxes in javascript.
    I have given add/delete row option in the jsp. If there is single row, this is working fine. But after adding a row, I am not able to either do any validations on added textboxes or pass the values to the String array form bean variable.
    code snippet:
    var cell6 = row.insertCell(4);
    var element5 = document.createElement("input");
    element5.type = "text";
    element5.className = "formtext1";
    element5.size = "5";
    element5.value = "00.00";
    element5.name= "qty"; // this is a string array of the form bean.
    element5.onchange=function() {checkNumeric(this);};
    cell6.appendChild(element5);
    <html:text styleClass="formtext1" property="qty" value="" size="5" styleId="qty" onchange="checkNumeric(this)"/></td>
    form bean declaration
    private String[] qty; Please help.
    Edited by: j2eefresher on Jan 12, 2010 11:23 PM

    Shivanand,
    There's no need to post that much code when you could create a very short test case that demonstrates only the problem you are having.
    You're using &NAME. notation on something that isn't a page or application item. You can't reference PL/SQL variables that way (or any other way) outside the PL/SQL scope. For your situation, you could create a page item named P55_DOCID and assign it a value in the PL/SQL process (:P55_DOCID := DOCID;), then reference &P55_DOCID. in HTML areas like the success message.
    Scott

  • HT4489 how to import Contacts in iCloud from Exchange?

    how to import Contacts in iCloud from Exchange?

    This usually works:
    Go to Settings>iCloud, turn Contacts to Off, choose Delete from My iPhone when prompted (they will still be in iCloud).
    Download the app My Contacts Backup.  Use this to backup the remaining contacts on your phone (from your exchange account) as a vCard attachment to an email that you send to yourself.  Confirm that you have received the email.
    Go to Settings>iCloud and turn Contacts back to On.
    Go to Settings>Mail,Contacts,Calendars>Default Account (in the Contacts section), set this to iCloud.  (This will cause new contacts added to your phone to be added to the iCloud account.)
    Go to Settings>Mail,Contacts,Calendars and turn off contacts syncing with your exchange account (otherwise you will end up with duplicates on your phone).
    Open the My Contacts Backup email and tap the attachment to import the contacts from your exchange account back to your phone and to iCloud.

  • HOW TO IMPORT MY EMAILS (MESSAGES) FROM OUTLOOK 2007?

    HOW TO IMPORT MY EMAILS (MESSAGES) FROM OUTLOOK 2007?

    Into what email program on the Mac?
    Mail
    Outlook for Mac '11
    Entourage '04/'08
    Thunderbird
    Eudora
    ... etc
    If it's going into Mail you'll need to do a work around, it's not a "straight" transfer unless you buy a 3rd party application called Outlook2Mac.
    http://www.trickyways.com/2010/08/how-to-transfer-emails-from-outlook-to-apple-m ail/

  • Example of passing String Array from java to C using JNI

    hi all
    i searched net for passing string array from java to C but i dont get anything relevent
    i have
    class stu
    int rollno
    string name
    String [] sub
    i want to pass all as String array from java to C and access it C side

    1. Code it as though it were being passed to another method written in java.
    2. Redefine the method implementation to say "native".
    3. Run jnih to generate a C ".h" file. You will see that the string array
    is passed into C as a jobject, which can be cast to a JNI array.
    4. Write the C code to implement the method and meet the interface
    in the generated .h file.

Maybe you are looking for

  • Network drives open finder windows at every login?

    I just created a network drive and set it up so that when I log into my machine it should connect/mount the network drive.   However, now every time I log in it opens a finder window to that drive.    Mavericks appears to do the same thing on my macb

  • Blog Entries Saved to Folder

    Hi all: I hope those of you who have already used iWeb 2 can answer me. One of the worste thing of the previous version of iWeb was that when I added a new post to my blog and saved it folder, it saved AGAIN all the other unedited posts and pages too

  • The latest Java update breaks some vital applications

    The latest Java update breaks some vital applications. I have reverted back to 7u45. But now, every time a java applet is used, the "later", "block", "update" window appears and stops the applet from loading. I must have this older release. Oracle do

  • Filters - planar tiling; kalaidescope

    I was looking to buy some filters to replace what I used to use with Kai's Power Tools. Like its planar tiling and kalaidescope filters. I found that Corel has taken over this software, and the filters listed do not appear to contain these two that w

  • How to separate enter GR and return in invoice verification

    Hi: guys I have completed GR for purchase order, and then, vendor send me invoice. however, during invoice check, warehouse return goods to this vendor. so I just want enter GR item excluding the new return item. but sap system automatically propose