Problems with: reportparameterdialog.dll

  • Thread starter Thread starter ldiaz
  • Start date Start date
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
 
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.
 
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
 
Back
Top