HughLerwill
Programmer
The following is giving me a mad morning;
List1.Sorted = True set at design time
The resulting sort is not as expected, the "-" characters seem to be ignored. Results are as expected if I change the "-" characters for another e.g. ".".
Thanks in advance for any help.
List1.Sorted = True set at design time
Code:
Private Sub Command2_Click()
List1.AddItem "TEKTIPS / MALTON"
List1.AddItem "TEK-TIPS / MENWITH HILL"
List1.AddItem "TEKTIPS / MEXBOROUGH"
List1.AddItem "TEK-TIPS / NAFFERTON"
List1.AddItem "TEK-TIPS / AMBERLEY"
List1.AddItem "TEKTIPS / ARUNDEL"
End Sub
The resulting sort is not as expected, the "-" characters seem to be ignored. Results are as expected if I change the "-" characters for another e.g. ".".
Thanks in advance for any help.