Access Database runtCan't find wizard or wizard has not been insta

  • Thread starter Thread starter lynnie
  • Start date Start date
L

lynnie

I have created an Access Database that runs in "Runtime" on a Clients
machine. It is developed in Access 2003 and has an option to run and open
Word Mail Merge. On my machine which I have Office 2003 it runs no problem,
but when this is deployed to my clients machine and they try to run the Mail
Merge option they receive an error message 7850 - Can't find twizard or
wizard has not been installed, or there is a syntax error in the Declarations
section of a visual basic module. My client has Word 2007 and I was
wondering if this is the problem? Do I need to have Word 12.0 library
installed as a reference when I package the database up in to a runtime
version? Any help would be gratefully appreciated. Thanks
 
That could be an option or you could refer to your object as Microsoft Word
11 in your VBA. Best thing to do is however to refer to an object because
that way it doesn't matter which version you refer to and the code will just
look for a Word instance.

Dim objWord As Object
Set objWord = CreateObject("Word.Application")
 
Back
Top