Posted 10 April 2020, 9:14 pm EST
Hello,
I’m using the code below to load my multiselect control with all columns from C1Screen1 Grid control. How do I automatically select all the columns in my MultiSelect control and hide a column when its column name is deselected and show the column when it’s column name is selected?
Also when I place my mouse on a column name of the Multiselect control how do I display a description? For example when place my mouse on the row with NSN, would like to display description as National Stock Number below or above the NSN…
For ida As Integer = 0 To C1Screen1.Splits(0).DisplayColumns.Count - 1
C1MultiSelect1.Items.Add(C1Screen1.Splits(0).DisplayColumns(ida).Name)
Next
C1MultiSelect1.TagWrap = True
Thanks,
Victor