Link to home
Start Free TrialLog in
Avatar of tomcruisew
tomcruisew

asked on

Sort Array

How can I sort an array in Vb60 ?

Thanks in advance for any help
ASKER CERTIFIED SOLUTION
Avatar of deighton
deighton
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Example call

Private Sub Command1_Click()
Dim x(4), c As Integer

x(0) = 55
x(1) = 3
x(2) = 1
x(3) = 88
x(4) = -1

Call sorta(x)

For c = 1 To 4
Print x(c)
Next


End Sub