I'm using VB4 and am trying to use a replacement function for VB6's split().

The error messaage I get is that I cannot assign to a non-byte array. In essense what I'm doing is:

Dim x(5)

x=Split("1/11/2000","/")

msgbox x(1)

Need any and all help,

Old Man