VB Code:
  1. Dim strDescription As String, intTemp As Integer, intContains As Integer
  2. For Each Item In strFullError
  3.     intContains = intContains + 1
  4. Next
  5. intContains = intContains - 1
  6. MsgBox intContains
  7. For intTemp = 0 To intContains Step 1
  8.     intTemp = intTemp + 1
  9.     MsgBox intTemp
  10.     MsgBox strFullError(intTemp)
  11.     strDescription = strDescription & " " & strFullError(intTemp)
  12. Next
im tryin to get all of the indexes from an array except for the first one (0) but when the second for loop runs, it increments in 2s? and goes from 1 to 3 so im gettin a subscript out of range errormibob, anyone know why?
cheers

ps, its in a function where strfullerror is declared as an arrayed string like strFullError() as String, im new to arrays please bare with mee :P