Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6
Default Help With Missing References

I developed an applicaiton in VBA on my computer. However when I test it on
some machines it works and others it doesn't. The problem is a missing
reference to the "Microsoft Forms 2.0 Object Library."

Some background,

My computer is running Office 2000 Win 98 (works fine)
The wife's computer is running Office 2003 & Win XP Pro (Works fine)

Tried it at work (Office 2000 Win 98) and it didnt' work.
Sent to a few friends, not sure of their systems (though I'm guessing a
later version of Office and Windows than I have and it didnt' work.

Is there any way to correct this.

Possibly that would be:
Somehow sending the library with the workbook
Changing the reference on my computer.
Or some other alternative.

Thanks in advance.

PC


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,560
Default Help With Missing References

hi,
I had a similar problem. What I did was copied the code out and pasted it in
a module and workbook in the place it did not work. It worked after that.
Hope it works for you.

Thanks,

"PC" wrote:

I developed an applicaiton in VBA on my computer. However when I test it on
some machines it works and others it doesn't. The problem is a missing
reference to the "Microsoft Forms 2.0 Object Library."

Some background,

My computer is running Office 2000 Win 98 (works fine)
The wife's computer is running Office 2003 & Win XP Pro (Works fine)

Tried it at work (Office 2000 Win 98) and it didnt' work.
Sent to a few friends, not sure of their systems (though I'm guessing a
later version of Office and Windows than I have and it didnt' work.

Is there any way to correct this.

Possibly that would be:
Somehow sending the library with the workbook
Changing the reference on my computer.
Or some other alternative.

Thanks in advance.

PC



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 575
Default Help With Missing References

PC,

You need to make sure that FM20.dll is installed and registered on the
target machine. I've never gone that route, but on installation of Excel
there are obviously some configuration options that don't include the file.

An installation package such as Visual Studio Installer would handle this
for you, but if this is a one off

1. put FM20.dll in the system32 folder on the target machine
2. Goto Start, Run, and enter this to register the dll
regsvr32 "C:\Windows\System32\FM20.dll"

Robin Hammond
www.enhanceddatasystems.com

"PC" wrote in message
...
I developed an applicaiton in VBA on my computer. However when I test it
on
some machines it works and others it doesn't. The problem is a missing
reference to the "Microsoft Forms 2.0 Object Library."

Some background,

My computer is running Office 2000 Win 98 (works fine)
The wife's computer is running Office 2003 & Win XP Pro (Works fine)

Tried it at work (Office 2000 Win 98) and it didnt' work.
Sent to a few friends, not sure of their systems (though I'm guessing a
later version of Office and Windows than I have and it didnt' work.

Is there any way to correct this.

Possibly that would be:
Somehow sending the library with the workbook
Changing the reference on my computer.
Or some other alternative.

Thanks in advance.

PC




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6
Default Help With Missing References

Thanks Robin. That's the detail I was looking for .

Question:

You indicate that I should use the System32 folder. On my computer the
FM20.dll is in the System folder. Is that a "typo" or is the location
dependent on the operating system, or does it even matter? (I don't know
much at all about dll's)

Thanks again

PC

"Robin Hammond" wrote in message
...
PC,

You need to make sure that FM20.dll is installed and registered on the
target machine. I've never gone that route, but on installation of Excel
there are obviously some configuration options that don't include the

file.

An installation package such as Visual Studio Installer would handle this
for you, but if this is a one off

1. put FM20.dll in the system32 folder on the target machine
2. Goto Start, Run, and enter this to register the dll
regsvr32 "C:\Windows\System32\FM20.dll"

Robin Hammond
www.enhanceddatasystems.com

"PC" wrote in message
...
I developed an applicaiton in VBA on my computer. However when I test it
on
some machines it works and others it doesn't. The problem is a missing
reference to the "Microsoft Forms 2.0 Object Library."

Some background,

My computer is running Office 2000 Win 98 (works fine)
The wife's computer is running Office 2003 & Win XP Pro (Works fine)

Tried it at work (Office 2000 Win 98) and it didnt' work.
Sent to a few friends, not sure of their systems (though I'm guessing a
later version of Office and Windows than I have and it didnt' work.

Is there any way to correct this.

Possibly that would be:
Somehow sending the library with the workbook
Changing the reference on my computer.
Or some other alternative.

Thanks in advance.

PC






  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 575
Default Help With Missing References

Technically, I think you could put it anywhere provided it is registered
correctly.

I would have a look for it in System32, then System. If it's not in either,
then if System32 exists (all the more recent OSs), put it in there, else in
System.

Robin Hammond
www.enhanceddatasystems.com

"PC" wrote in message
...
Thanks Robin. That's the detail I was looking for .

Question:

You indicate that I should use the System32 folder. On my computer the
FM20.dll is in the System folder. Is that a "typo" or is the location
dependent on the operating system, or does it even matter? (I don't know
much at all about dll's)

Thanks again

PC

"Robin Hammond" wrote in message
...
PC,

You need to make sure that FM20.dll is installed and registered on the
target machine. I've never gone that route, but on installation of Excel
there are obviously some configuration options that don't include the

file.

An installation package such as Visual Studio Installer would handle this
for you, but if this is a one off

1. put FM20.dll in the system32 folder on the target machine
2. Goto Start, Run, and enter this to register the dll
regsvr32 "C:\Windows\System32\FM20.dll"

Robin Hammond
www.enhanceddatasystems.com

"PC" wrote in message
...
I developed an applicaiton in VBA on my computer. However when I test
it
on
some machines it works and others it doesn't. The problem is a missing
reference to the "Microsoft Forms 2.0 Object Library."

Some background,

My computer is running Office 2000 Win 98 (works fine)
The wife's computer is running Office 2003 & Win XP Pro (Works fine)

Tried it at work (Office 2000 Win 98) and it didnt' work.
Sent to a few friends, not sure of their systems (though I'm guessing a
later version of Office and Windows than I have and it didnt' work.

Is there any way to correct this.

Possibly that would be:
Somehow sending the library with the workbook
Changing the reference on my computer.
Or some other alternative.

Thanks in advance.

PC










  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6
Default Help With Missing References

Thanks Robin!

PC


"Robin Hammond" wrote in message
...
Technically, I think you could put it anywhere provided it is registered
correctly.

I would have a look for it in System32, then System. If it's not in

either,
then if System32 exists (all the more recent OSs), put it in there, else

in
System.

Robin Hammond
www.enhanceddatasystems.com

"PC" wrote in message
...
Thanks Robin. That's the detail I was looking for .

Question:

You indicate that I should use the System32 folder. On my computer the
FM20.dll is in the System folder. Is that a "typo" or is the location
dependent on the operating system, or does it even matter? (I don't

know
much at all about dll's)

Thanks again

PC

"Robin Hammond" wrote in message
...
PC,

You need to make sure that FM20.dll is installed and registered on the
target machine. I've never gone that route, but on installation of

Excel
there are obviously some configuration options that don't include the

file.

An installation package such as Visual Studio Installer would handle

this
for you, but if this is a one off

1. put FM20.dll in the system32 folder on the target machine
2. Goto Start, Run, and enter this to register the dll
regsvr32 "C:\Windows\System32\FM20.dll"

Robin Hammond
www.enhanceddatasystems.com

"PC" wrote in message
...
I developed an applicaiton in VBA on my computer. However when I test
it
on
some machines it works and others it doesn't. The problem is a

missing
reference to the "Microsoft Forms 2.0 Object Library."

Some background,

My computer is running Office 2000 Win 98 (works fine)
The wife's computer is running Office 2003 & Win XP Pro (Works fine)

Tried it at work (Office 2000 Win 98) and it didnt' work.
Sent to a few friends, not sure of their systems (though I'm guessing

a
later version of Office and Windows than I have and it didnt' work.

Is there any way to correct this.

Possibly that would be:
Somehow sending the library with the workbook
Changing the reference on my computer.
Or some other alternative.

Thanks in advance.

PC










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
Missing References Felix[_3_] Excel Programming 1 June 7th 04 03:19 PM
References.Remove References(1) DOES NOT WORK for "MISSING:" Refs Jamie Carper[_2_] Excel Programming 0 May 27th 04 04:22 PM
MIssing References RJ Excel Programming 3 April 5th 04 04:02 AM
Missing References Steve Andrews Excel Programming 0 January 20th 04 03:26 PM
Bad or Missing References Bill B[_3_] Excel Programming 0 January 8th 04 01:29 PM


All times are GMT +1. The time now is 10:07 PM.

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

About Us

"It's about Microsoft Excel"