Work fine on developer's side but not user's side

  • Thread starter Thread starter Tim
  • Start date Start date
T

Tim

I got a weird problem. I can open my .mde version (the developer's side), but
my users encounter a pop-up error message saying error in function or
expression. I check the function and query and everything is normal. Do you
know what cause the problem? and how to fix it?
Thank you in advance for your help.
 
Sounds like a reference problem. Did you use any specific libraries in your
mdb before creating an mde of it?
 
Maurice, you are right! It's DataPlugin.dll is missing. Do you know where can
I find this file to download it to user's computer. Thanks.
 
Tim,

I don't know exactly where you can get this file. I presume this has
something to do with a mediaplayer or something like that.

Is this a third party db you are using? if so ask the developer to give it
to you. If not you have a reference on your pc. Look under references in the
VBE and click it once. In the dialog you should see a path which file it is
referencing... maybe copy that one?

sorry to not be of any assistance on this one..
 
Tim said:
Maurice, you are right! It's DataPlugin.dll is missing. Do you know where can
I find this file to download it to user's computer.

Chances are very good you don't need that reference.

Delete it from the references list and Compile and Save All.

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
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Tony's Microsoft Access Blog - http://msmvps.com/blogs/access/
 
Jan Baird is out of the country until September 20. Every effort will be
made to respond to messages, but please be patient.
 
Jan Baird is out of the country until September 20. Every effort will be
made to respond to messages, but please be patient.
 
Jan Baird is out of the country until September 20. Every effort will be
made to respond to messages, but please be patient.
 
Back
Top