Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
Kim Kim is offline
external usenet poster
 
Posts: 284
Default Can't Find Project or Library

All of a sudden the =now() results in a 'Can't find project or library'. I've
tried "repairing" Office 2003 to no help. The VBA code has worked like a
champ for months on end.

What gives?

Thanks for any help.

Kim
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 249
Default Can't Find Project or Library

From any module Tools|References and look for one labeled 'MISSING'

--

Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

"Kim" wrote:
All of a sudden the =now() results in a 'Can't find project or library'.
I've
tried "repairing" Office 2003 to no help. The VBA code has worked like a
champ for months on end.

What gives?

Thanks for any help.

Kim


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7,247
Default Can't Find Project or Library

Close Excel, then go to the Windows Start Menu choose Run and enter the
following and press OK:

Excel.exe /unregserver

The Run

Excel.exe /regserver


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
(email address is on the web site)



"Kim" wrote in message
...
All of a sudden the =now() results in a 'Can't find project or library'.
I've
tried "repairing" Office 2003 to no help. The VBA code has worked like a
champ for months on end.

What gives?

Thanks for any help.

Kim



  #4   Report Post  
Posted to microsoft.public.excel.programming
Kim Kim is offline
external usenet poster
 
Posts: 284
Default Can't Find Project or Library

Chip,

Followed procedure - no effect. My further investigation shows a new excel
file work OK.

The failing workbook has a lot of VBA asscociated with one worksheet. the
failing code is specifically:

If Day([$a$1]) = 1 And Day([$a$1]) < 5 etc, etc.

cell a1 contains "=now()". The ([$a$1]) is highlighted when I get the error.

Still a mystery.......

Kim

"Chip Pearson" wrote:

Close Excel, then go to the Windows Start Menu choose Run and enter the
following and press OK:

Excel.exe /unregserver

The Run

Excel.exe /regserver


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
(email address is on the web site)



"Kim" wrote in message
...
All of a sudden the =now() results in a 'Can't find project or library'.
I've
tried "repairing" Office 2003 to no help. The VBA code has worked like a
champ for months on end.

What gives?

Thanks for any help.

Kim




  #5   Report Post  
Posted to microsoft.public.excel.programming
Kim Kim is offline
external usenet poster
 
Posts: 284
Default Can't Find Project or Library

Dave,

Couldn't find anything under References window having "MISSING" as part or
as standalone.

My reply to Chip has more detail of what I found.

Thanks for any help.

Kim

"Dave Patrick" wrote:

From any module Tools|References and look for one labeled 'MISSING'

--

Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

"Kim" wrote:
All of a sudden the =now() results in a 'Can't find project or library'.
I've
tried "repairing" Office 2003 to no help. The VBA code has worked like a
champ for months on end.

What gives?

Thanks for any help.

Kim




  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7,247
Default Can't Find Project or Library

Kim,

You might try changing your cell references in the code from

[$A$1]
to
Range("A1").Value

It shouldn't make a difference, but when you get weird errors sometimes
changing seemingly unrelated things makes a difference.



"Kim" wrote in message
...
Chip,

Followed procedure - no effect. My further investigation shows a new
excel
file work OK.

The failing workbook has a lot of VBA asscociated with one worksheet. the
failing code is specifically:

If Day([$a$1]) = 1 And Day([$a$1]) < 5 etc, etc.

cell a1 contains "=now()". The ([$a$1]) is highlighted when I get the
error.

Still a mystery.......

Kim

"Chip Pearson" wrote:

Close Excel, then go to the Windows Start Menu choose Run and enter the
following and press OK:

Excel.exe /unregserver

The Run

Excel.exe /regserver


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
(email address is on the web site)



"Kim" wrote in message
...
All of a sudden the =now() results in a 'Can't find project or
library'.
I've
tried "repairing" Office 2003 to no help. The VBA code has worked like
a
champ for months on end.

What gives?

Thanks for any help.

Kim






  #7   Report Post  
Posted to microsoft.public.excel.programming
Kim Kim is offline
external usenet poster
 
Posts: 284
Default Can't Find Project or Library

Chip,

This is getting wierder (sp?) by the minute.

I followed your instructions -- same effect. Then I tried a few other
things with the same result. I tried:

A blank cell on that worksheet to =NOW()
A blank cell on another worksheet (this workbook has 20 some) to =NOW()
I put a number (pick one) in a blank cell

After each occurance the Error Window came up. I clicked OK and the
References window came up. Scrolling through the libraries, nothing
"Missing". I clicked OK and the cell changed to the date or number as
appropriate.

Kim

"Chip Pearson" wrote:

Kim,

You might try changing your cell references in the code from

[$A$1]
to
Range("A1").Value

It shouldn't make a difference, but when you get weird errors sometimes
changing seemingly unrelated things makes a difference.



"Kim" wrote in message
...
Chip,

Followed procedure - no effect. My further investigation shows a new
excel
file work OK.

The failing workbook has a lot of VBA asscociated with one worksheet. the
failing code is specifically:

If Day([$a$1]) = 1 And Day([$a$1]) < 5 etc, etc.

cell a1 contains "=now()". The ([$a$1]) is highlighted when I get the
error.

Still a mystery.......

Kim

"Chip Pearson" wrote:

Close Excel, then go to the Windows Start Menu choose Run and enter the
following and press OK:

Excel.exe /unregserver

The Run

Excel.exe /regserver


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
(email address is on the web site)



"Kim" wrote in message
...
All of a sudden the =now() results in a 'Can't find project or
library'.
I've
tried "repairing" Office 2003 to no help. The VBA code has worked like
a
champ for months on end.

What gives?

Thanks for any help.

Kim






  #8   Report Post  
Posted to microsoft.public.excel.programming
Kim Kim is offline
external usenet poster
 
Posts: 284
Default Can't Find Project or Library

Dave,

My apologizes......on 2nd or 3rd look I found "MISSING" associated with a
program I unloaded days ago (MusicMatch Juke Box). The ActiveX Control
MMJBCTRL was missing.

What it has to to with Excel and my VBA code I'll never know.......

Again, my apologizes.

"Kim" wrote:

Dave,

Couldn't find anything under References window having "MISSING" as part or
as standalone.

My reply to Chip has more detail of what I found.

Thanks for any help.

Kim

"Dave Patrick" wrote:

From any module Tools|References and look for one labeled 'MISSING'

--

Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

"Kim" wrote:
All of a sudden the =now() results in a 'Can't find project or library'.
I've
tried "repairing" Office 2003 to no help. The VBA code has worked like a
champ for months on end.

What gives?

Thanks for any help.

Kim


  #9   Report Post  
Posted to microsoft.public.excel.programming
Kim Kim is offline
external usenet poster
 
Posts: 284
Default Can't Find Project or Library

Chip,

I did find a "MISSING" reference. It was MMJBCTRL Active x from a program
MusicMatch JukeBox I unloaded several days ago.

What it had to do with Excel I'll never know........

Kim

"Kim" wrote:

Chip,

This is getting wierder (sp?) by the minute.

I followed your instructions -- same effect. Then I tried a few other
things with the same result. I tried:

A blank cell on that worksheet to =NOW()
A blank cell on another worksheet (this workbook has 20 some) to =NOW()
I put a number (pick one) in a blank cell

After each occurance the Error Window came up. I clicked OK and the
References window came up. Scrolling through the libraries, nothing
"Missing". I clicked OK and the cell changed to the date or number as
appropriate.

Kim

"Chip Pearson" wrote:

Kim,

You might try changing your cell references in the code from

[$A$1]
to
Range("A1").Value

It shouldn't make a difference, but when you get weird errors sometimes
changing seemingly unrelated things makes a difference.



"Kim" wrote in message
...
Chip,

Followed procedure - no effect. My further investigation shows a new
excel
file work OK.

The failing workbook has a lot of VBA asscociated with one worksheet. the
failing code is specifically:

If Day([$a$1]) = 1 And Day([$a$1]) < 5 etc, etc.

cell a1 contains "=now()". The ([$a$1]) is highlighted when I get the
error.

Still a mystery.......

Kim

"Chip Pearson" wrote:

Close Excel, then go to the Windows Start Menu choose Run and enter the
following and press OK:

Excel.exe /unregserver

The Run

Excel.exe /regserver


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
(email address is on the web site)



"Kim" wrote in message
...
All of a sudden the =now() results in a 'Can't find project or
library'.
I've
tried "repairing" Office 2003 to no help. The VBA code has worked like
a
champ for months on end.

What gives?

Thanks for any help.

Kim






  #10   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 249
Default Can't Find Project or Library

No problem. You're welcome.

--

Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

"Kim" wrote:
Dave,

My apologizes......on 2nd or 3rd look I found "MISSING" associated with a
program I unloaded days ago (MusicMatch Juke Box). The ActiveX Control
MMJBCTRL was missing.

What it has to to with Excel and my VBA code I'll never know.......

Again, my apologizes.


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can't find project or library Paul Dennis Excel Programming 2 November 3rd 06 11:01 AM
Cant find project or library Newbie Excel Programming 1 July 26th 06 12:15 PM
Can't find project or library salut Excel Programming 1 March 22nd 06 10:10 PM
Can't find project or library Tracey Excel Discussion (Misc queries) 4 January 5th 05 05:19 PM
Cant find project or library Swift2003[_3_] Excel Programming 1 April 14th 04 10:20 PM


All times are GMT +1. The time now is 04:36 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"