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!

Can't Find Project or Library...

Status
Not open for further replies.

JJman

Technical User
May 8, 2003
89
0
0
IN

When the code below runs, it highlights the first "Left" keyword and gives me a message saying it can't find the project or library. Any help is appreciated.

Private Sub ChildID_AfterUpdate()
Dim teststring As String
Dim teststring2 As String
Dim teststring3 As String

teststring = Left(ChildID, 5)
teststring2 = Left(teststring, 2)
teststring3 = Right(teststring, 3)

ProjectIDComboBox = teststring2 & "-" & teststring3

Forms!Visitors.Refresh

End Sub
 

Sounds like another A2k bug that throws sand in the gears... Thanks for the heads-up.
 
I get this occaisionally - havn't followed the link but it seems to be missing references to add-ins etc that causes the issue. Tools>References should throw some light on it

Rgds, Geoff

Never test the depth of water with both feet

Help us to help you by reading FAQ222-2244 before you ask a question
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top