My Assistant
|
|
Dec 28 2010, 06:45 AM
Post
#1
|
|
|
UtterAccess Enthusiast Posts: 77 From: Greece |
I am developing application in Access 2010. However, although it works fine as an ACCDB file, when I create and run an ACCDR I get an error "Requested type library of wizard is not a VBA project".
The error message arises when switching to any tab from in the Main Navigation control that is opened when the app first runs. The ACCDR and ACCDB versions access the same back-end data file, which is in the same directory as they are. They are both being run on the same PC. Thanx in advance Katy |
|
|
|
![]() |
Dec 28 2010, 08:03 AM
Post
#2
|
|
|
UtterAccess Ruler Posts: 1,621 From: Arkansas |
This may not help, but go into VBA, go to Tools/references and see if anything says "missing."
|
|
|
|
Dec 28 2010, 08:51 AM
Post
#3
|
|
|
UtterAccess Enthusiast Posts: 77 From: Greece |
I've already done that. Nothing is missing.
I've also decomple database. I've searched in google for any possible answer, but with no luck!!! I think that the problem is the navigation control, but I can't figure out where... |
|
|
|
Dec 28 2010, 01:32 PM
Post
#4
|
|
|
UtterAccess Ruler Posts: 1,621 From: Arkansas |
You DO know that accdr will only lauch in runtime?
|
|
|
|
Dec 28 2010, 02:57 PM
Post
#5
|
|
|
UtterAccess Enthusiast Posts: 77 From: Greece |
Of course !!!
I've created a shortcut with the /runtime command |
|
|
|
Jan 12 2012, 04:03 PM
Post
#6
|
|
|
New Member Posts: 1 |
I'm having the same problem. Any resolution on this problem?
|
|
|
|
Aug 12 2012, 04:55 PM
Post
#7
|
|
|
UtterAccess Member Posts: 24 From: Orygun, USA |
Hi all:
If anyone is coming here because they, too, encountered this "error" in their ACCDE when moving between primary tabs on a two-tier navigation form, this answer resolved the problem for me: (http://www.experts-exchange.com/Microsoft/Development/MS_Access/Q_26438281.html#a35743544). In short, create an OnError event for the main navigation form: CODE Private Sub Form_Error(DataErr As Integer, Response As Integer) '//This addresses the annoying "Requested type library or wizard is not a VBA project" error. If DataErr = -25357 Then Response = acDataErrContinue End If End Sub Really, Microsoft, if you can't fix this problem, can't you at least publish the workaround? |
|
|
|
![]() ![]() |
|
Go to Top · Lo-Fi Version | Time is now: 21st May 2013 - 09:28 PM |