Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cannot find project or library (No se puede encontrar el proyecto o la biblioteca

Status
Not open for further replies.

FreCard

Technical User
Aug 17, 2021
4
0
0
PE
Hi there!
I have a VBA Excel program designed to extract information from MyExtra Enterprise.
It happens that it only works on a few computers. In those that does not work, I get the error 'Cannot find project or library' pointing to this part of the code:

Private Const TIME As Long = 1200

Private lFila As Long

'Attribute VB_Name = "ModExtra"
Option Explicit
Global gExtraPath As String
Global gTimerIntervalExeExtra As String
Global gCountIntervalExeExtra As String
[highlight #FCE94F]Global gExtra As New ExtraCOM.clsExtra[/highlight]​

How could I add that library? or what solution could I give you?

Greetings.
 
Hi,

In the VBA Editor...

Tools > References...

...and CHECK the appropriate Attachmate reference.

Skip,
[sub]
[glasses]Just traded in my OLD subtlety...
for a NUance![tongue][/sub]
"The most incomprehensible thing about the universe is that it is comprehensible" A. Einstein
 
You must ADD the appropriate Attachmate reference in Tools > References as previously instructed.

Skip,
[sub]
[glasses]Just traded in my OLD subtlety...
for a NUance![tongue][/sub]
"The most incomprehensible thing about the universe is that it is comprehensible" A. Einstein
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top