error message

  • Thread starter Thread starter alex McKenzie
  • Start date Start date
A

alex McKenzie

Hi all
Getting the following error message when I try enter some
numbers or letter in a standard xcel worksheet

"Can't find project or library"

which is followed by a dialogue box saying I am missing an mp3encodeAny help
much appreciated

Many thanks

Alex
 
Try going into the VBIDE, and from the Tools>Reference menu check if any
items are tagged MISSING:. If so, uncheck them and see if that cures it.
 
This is typical when VBA cannot find a library reference specified in
the VBA project. In VBA, go to the Tools menu, choose References, and
see if any are marked MISSING. If so, there are a few options. First,
if you don't need the reference, just uncheck it. Second, if you do
need the reference, re-install the program that creates it (you can
usually tell by the name of the reference) or contact the vendor or
developer. Last, if it is a core Excel reference (Excel, Office, OLE,
VBA), close Excel, go to the Windows Start menu, choose Run and enter
the following and click Run.

"C:\Program Files\Microsoft Office\Office11\Excel.exe" /regserver

Include the quotes as shown. The actual path to Excel.exe may be
different on your machine. The Office11 folder name varies by version.
(Office11 = XL 2003, Office12 = XL 2007, Office10 = XL 2002 etc)

Cordially,
Chip Pearson
Microsoft Most Valuable Professional,
Excel, 1998 - 2010
Pearson Software Consulting, LLC
www.cpearson.com
 
Back
Top