Help with displaying data selected in Listbox in Grid's cell.
Hi,
I am using a Listbox as a dropdown box in my Grid, how do I display rows selected in the Grid's cell separated by a comma?
For example if I select BEL, CAN and USA, I need to copy the data selected to the cell of the row selected in the following format: BEL,CAN,USA. and if I deselect USA, I need to only copy BEL,CAN to the cell of the selected row. Below is the current code I'm using to display the listbox as a dropdown box, but I can't display rows selected in the cell.
Private Sub C1TrueDBGrid45_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles C1TrueDBGrid45.Click
With ListBox1
.Left = Me.C1TrueDBGrid45.Left + Me.C1TrueDBGrid45.RecordSelectorWidth + Me.C1TrueDBGrid45.Splits(0).DisplayColumns(0).Width + Me.C1TrueDBGrid45.Splits(0).DisplayColumns(1).Width
.Top = Me.C1TrueDBGrid45.Top + Me.C1TrueDBGrid45.RowTop(Me.C1TrueDBGrid45.Row)
.Visible = True
.Select()
End With
End Sub
Visual Basic.NET.NET Programming
Last Comment
Victor Charles
8/22/2022 - Mon
Jesus Rodriguez
Create a listArrange an pass the values to the List
And on the click event Clear and go through the listItems of the Listbox and if is selected add it to the ListOfSelected, something like ListOfSelected+=ListItem+',' and when go through all the items then remember to remove the last "," on ListOfSelected. After that you got on ListOfSelected what you want.
Victor Charles
ASKER
Hi,
How do I modify the code below to remove the first "," and when I click on another column, the list box still appears, how do I make it invisible? Me.ListBox1.Visible = False is not working.
Private Sub C1TrueDBGrid45_Scroll(ByVal sender As Object, ByVal e As C1.Win.C1TrueDBGrid.CancelEventArgs) Handles C1TrueDBGrid45.Scroll
Me.ListBox1.Visible = False
End Sub
Dim tempstring As String
Private Sub ListBox1_Leave(ByVal sender As Object, ByVal e As System.EventArgs) Handles ListBox1.Leave
tempstring = ""
For Each item As Object In Me.ListBox1.SelectedItems
tempstring += "," + item
Next
Me.C1TrueDBGrid45.Columns(1).Text = tempstring
Me.ListBox1.Visible = False
End Sub
Jesus Rodriguez
To Remove the first Comma
tempstring = ""
For Each item As Object In Me.ListBox1.SelectedItems
tempstring += "," + item
Next
if TempString.Text<>"" then
TempString=right(TempString,len(tempString)-1)
End IF
Me.C1TrueDBGrid45.Columns(1).Text = tempstring
Me.ListBox1.Visible = False
To disappear the ListBox Check the possible events on The TrueDbGrid
Try On the RowUpdated also remember that the ListBox Will be contained inside a Cell in the Gridview. You need to DirectCast the control to make it Invisible according to the row index that you're in.
I think that you can Show/Hide the ListBox on the RowEditing/RowUpdated of each row and will be easy
Victor Charles
ASKER
Hi,
I tried your code but received the following two error in the code below
If tempstring.Text <> "" Then **** Text is not a member of string.
tempstring = Right(tempstring, Len(tempstring) - 1) ****Readonly property Right has no parameters and can not be indexed.
End If
Jesus Rodriguez
Sorry was my bad.. the code must be
if TempString<>"" then
TempString=right(TempString,len(tempString)-1)
End IF
Open in new window
And on the click event Clear and go through the listItems of the Listbox and if is selected add it to the ListOfSelected, something like ListOfSelected+=ListItem+'