08-28-2014 03:30 AM
Hi, does anyone here can help me to put my data on to a Multicolum
Thank you and Best regards,
syrpimp
08-28-2014 03:41 AM
Hi,
I am not sure what exactely you are looking for based on what i understood what I can say is
1. Use property node "Item Name"
2. build your data as 2D andput data to multocolumn list box
08-28-2014 04:05 AM
08-28-2014 11:43 AM
Is each row in your display some kind of collection of properties of an object? Like say each row is a UUT and each column is data about that UUT. Here the user selecting a row, or even highlighting a row programatically seems like a good idea so a MCLB should be used, otherwise just use a table. Visually a table and a MCLB can look the same to the user.
Unofficial Forum Rules and Guidelines
Get going with G! - LabVIEW Wiki.
17 Part Blog on Automotive CAN bus. - Hooovahh - LabVIEW Overlord
08-28-2014 07:44 PM
Exactly HOoovahh, I like to Display test item test result and every test , it should be put into row
08-29-2014 08:49 AM - edited 08-29-2014 08:53 AM
Then a table well work fine, and it is easier to work with because from the standpoint of the data value written to it, a table is just a 2D array of strings.
You can also show column and row headers if you want. You can insert label into the headers by either simply typing into each cell, or there are properties for them as well.
Mike...
09-01-2014 05:08 PM
As Mike mentioned it is easier to work with table. The only benefit using multicolumn listbox in this case are the row symbols. You can use them to indicate for example if a test failed, or passed, etc... But this needs a little bit more work.
You can find all available listbox symbols in the Dialog & User Interface functional palette (see the Listbox Symbol Ring Constant). They can be assigned using the Item Symbols property.
Nick