Type 'Array' is not defined?

  • Thread starter Thread starter Elmo Watson
  • Start date Start date
E

Elmo Watson

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?
 
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?
 
Back
Top