
KF 123 D456 1890
I am trying to get the data to look as such in the multiline textbox when you scroll down the datagridview:
KF
123
D456
1890
I was given this code but I do not know where to put it within my code should it be placed in the form_load or does it need its own Private Sub here is the code:
Uhm could you try this on DataSourceChange event:
for each row as DataGridviewRow in yourDataGridView.Rows
row.cells("CALLNUMBER")=row.cells("CALLNUMBER").value.tostring().replace(Chr(32), Chr(13)+Chr(10))
next