LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

passing data to multi list box

hi let say i have an array and i need to pass it to the third column in the multi list box.
how can i do it?
can i get an example
0 Kudos
Message 1 of 5
(3,643 Views)

Hi jeyanthi,

see the attached example. If you already have some data in your multicolumn listbox, then use first the property node to read the old values and connect this to the replace function.

Hope it helps.
Mike

0 Kudos
Message 2 of 5
(3,642 Views)
You have to wire 2 to the column index in the Insert Into Array or the Replace Array Subset function, to write the data into the ML Box. For this, you have tp use the Item Names property of the ML Box.
- Partha ( CLD until Oct 2027 🙂 )
0 Kudos
Message 3 of 5
(3,623 Views)

hi need help..

i have a multilist box.

wen user click on the number in the multilist box.

i will open a subvi...for the user to save the number in the base.

aftr the subvi close...

i need to make the number disapper from multilist box after it saved  in the database...

i try few methods but none showing result

plz help..thk u

0 Kudos
Message 4 of 5
(3,591 Views)
It would help if you explained or showed what methods you have tried. The contents of a multi-column listbox is a 2D string array and you get the 2D array with the ItemNames property. If you want to delete a row or column, use the Delete From Array function. If you want to show the row or column as empty, you can use the Replace Array Subset function and write an array of empty strings to the row/column.
0 Kudos
Message 5 of 5
(3,586 Views)