Hello all.
For sorting, I want to add a Up or Down arrow to each of the column headers in a web list box. Can anyone direct me as to how to do this??
ThanksTim
Found a way to do it:
Dim Up As String = &u25B2 Dim Dn As String = &u25BC grdActivity.Heading(1) = "Date " +Up // &u(25B2) grdActivity.Heading(2) = "Adr " + Dn
It turns out to be that easy - nice. Very nice!Tim
· Robert L likes this.