Hi
I have gotten my other post taken care of I have one last request. The code I have below will take the data from column(13) and format it the way I want it here is the code I am using.
and the textbox (txtCallnumber.Text) is formated as neededCode:Private Sub CARD_CATALOGDataGridView_CurrentCellChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles CARD_CATALOGDataGridView.CurrentCellChanged txtCallnumber.Text = txtCallnumber.Text.Replace(Chr(32), Chr(13) + Chr(10)) End Sub
KF
123
B234
1990
The problem I am having is when I scroll down the datagridview the data takes on the formatting that the (txtCallnumber.Text) does and I would like it to stay formatted as a single line within the cell as such:
KF 123 B234 1990


Reply With Quote


Bookmarks