DA = New SqlDataAdapter("select * from tb_product WHERE SYSTEM='" & cmbSystem.Text & "' and Supplier='" & cmbSupplier.Text & "' and subsystem='" & cmbSubSystem.Text & "' order by SUBSYSTEM asc", con)
The result is as follows
A
B
C
But if it contains numeric also
The result is as follows
32 Ch.
16 Ch.
8 Ch.
A
B
C.
I want the result to be lik this
8 Ch.
16 Ch.
32 Ch.
A
B
C
What can i do for this