Type 'Array' is not defined?

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?
 
P

Phillip Ian

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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top