VBE6.DLL

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

A problem has occured today for no obvious reason with code which worked flawlessly until today. My code doesn't get compiled - the compiler halts at a line using the "Left" function with the message

Compile Error: Can't find project or library

But this library is VBA which is referred to by default and which is used quite happily by Excel2000 and VB6 which are also installed on my PC

The Object Browser give the following for "Left

Function Left(String, Length As Long
Member of VBA.String

Does anyone know why this library is not being read? It is checked under references, NOT marked as MISSING

Any help would be gratefully received

Thank

Andrew Walker
 
What's the code that produces the error?

The VBA container could be corrupt ... back it up, try importing it, and see
what happens.


Andrew Walker said:
A problem has occured today for no obvious reason with code which worked
flawlessly until today. My code doesn't get compiled - the compiler halts at
a line using the "Left" function with the message:
Compile Error: Can't find project or library.

But this library is VBA which is referred to by default and which is used
quite happily by Excel2000 and VB6 which are also installed on my PC.
The Object Browser give the following for "Left"

Function Left(String, Length As Long)
Member of VBA.Strings

Does anyone know why this library is not being read? It is checked under
references, NOT marked as MISSING.
 
Back
Top