Problems with: reportparameterdialog.dll

L

ldiaz

Hello all,
I have a DB that it working fine on my work, but now on my home computer is
shoing this error:

===================================================
Your "mdb name" database or project contains a missing or broken reference
to the file 'reportparameterdialog.dll' version 1.0
===================================================
I tried to find the dll on the internet with not results.
Do you have the DLL available? is there a webpage where I can download it?
how can I resolve this issue?



Thanks in advanced.

LD
 
T

Tony Toews [MVP]

ldiaz said:
Your "mdb name" database or project contains a missing or broken reference
to the file 'reportparameterdialog.dll' version 1.0
===================================================
I tried to find the dll on the internet with not results.
Do you have the DLL available? is there a webpage where I can download it?
how can I resolve this issue?

Try removing it and see if the code compiles.

Do you have any references besides the basic three or four? Are you
sure you need them? Write down the path and name of the extra ones
(or put the following code in a module and execute the code), delete
from the references list and Compile and Save All. Keep any
necessary references and ensure they are distributed to the target
system.

Sub ViewReferenceDetails()

Dim ref As Reference

For Each ref In Access.References
Debug.Print ref.Name & " - " & ref.Major & "." & ref.Minor & "
- " & ref.FullPath
Next ref

End Sub

For a very detailed page on reference problems see
http://www.accessmvp.com/djsteele/AccessReferenceErrors.html

Ctrl+G will take you into the Debug/Immediate window. Then click on
Tools on the menu bar and References.
 
L

ldiaz

Got it!
I tried it before unchecking unncessary references but didn't work,

Right now, I removed almost all, and it's now running.
Thanks a lot.


Lorenzo Díaz
Cad Technician
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top