vb Code:
Dim Out() As String Out() = Split(File, "\/\/")
Out(1) now contains the data i want, I want to put Out(1) into an Array()
vb Code:
Dim Out() As String Dim EFile() As String Out() = Split(File, "\/\/") EFile() = Out(1) '<- I need to know how to do this (o.o)




Reply With Quote