My code :
Line 71: Dim sFiles As String
Line 72: Dim myFileArray As Array
It breaks on Line 72 - - error message:
Compiler Error Message: BC30002: Type 'Array' is not defined.
I've tried this as a public, global variable, and a local Dim - - that's all
I really need in this case.
any ideas on why this is happening?
Phillip Ian - 15 Jul 2005 16:04 GMT
Isnt' Array defined MustInherit?
I think you want something like Dim myFileArray() as String or
something like that? Or are you looking for an ArrayList?