Hi,
is it possible to populate listbox and listview with more than one column ?
Thanks in advance.
Hi,
is it possible to populate listbox and listview with more than one column ?
Thanks in advance.
Hi Huub,
Have you looked at the Canvas Section 'TreeGrid' control? Specify the text for the 'Header labels' and a SQL Select statement for 'List items'. In the 'click' event you can get x.CurrentItem.text, CurrentItem being the currently selected treeitem object.
Or, in a Form Section, you can use the Grid gadget for multiple columns.
Regards,
Yvonne
Hi Huub,
If there is a reason you HAVE to use a list instead of grid, you could concatenate the result of a query, but I don't recommend it.
This would work, but it would look ugly unless you forced some blank characters in to align it.
select first_name+" "+last_name from example
herb
Bookmarks