This works for me:
Code:
Sub Demo()
Application.ScreenUpdating = False
Dim SArr() As String, i As Long
SArr = Split("The.quick.brown.fox.jumps.over.the.lazy.dog.", ".")
For i = 0 To UBound(SArr)
MsgBox SArr(i)
Next
Application.ScreenUpdating = True
End Sub