Let me preface this with the fact that\'s it\'s been a couple years since I did VB.
The first thing that sticks out at me is that you are not accessing the 0th element of that array inside your loop, but you are assigning it to your temp variable:
Private Sub cmdHighest_Click()
Dim curHighest As Currency
curHighest = curSale(0)
For I = 1 To 6
If curSale(I) > curHighest Then
curHighest = curSale(I)
End If
Next
txtHighest.Text = curHighest
End Sub
So if you have an array of 6 elements they can either run (0..5) or (1..6). I do remember you could change whether array indices started on 0 or 1 with the OptionBase = command, but I\'m not familiar with Option Explicit.