Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

"you can only run one instance of the combo box wizard at a time"

Status
Not open for further replies.

bradleyhorn

Technical User
Sep 15, 2004
35
0
0
US
Hi All,

I got the message "you can only run one instance of the combo box wizard at a time" when trying to use this wizard. This happened to me before and I can remember how I solved the problem. Can anyone help? There is of course only one instance that is being run.

Bradley
 
bradleyhorn,


Done some digging and found this old document. Maybe it will help.

It sounds like your application has another instance of the Access Control
Wizards running, most likely from an earlier version of Access.


Check to ensure that your application isn't using the Access Control Wizards
as a referenced library. Open a module in the VB Editor. Select Tools
menu -> References... to open the References dialog window. Make sure that
acwzmain (from the acwzmain.mde file for Access 2K and newer versions) and
wzmain80 (WZMAIN80.MDE for Access 97) libraries aren't checked. (I don't
know the names of the files or projects for earlier versions of Access, but
if you've ever had those versions loaded on your computer, you may want to
research and find out for yourself.) If your database has any library
databases checked in the current database's References, then also look at
the References for those libraries, too.


If neither of these Wizard libraries are checked in the References, then
search the code modules for the strings "acwzmain.mde" and "wzmain80.mde" to
determine whether either of these file names are being used in a VBA
procedure. If you can't find these file names in the code, then look for
the following two function names: bw_Entry and cmb_Entry.


If you can't find either the file names or their Wizard entry points in a
VBA procedure, then you need to hunt through the properties of the database
objects for these strings. Use the Documentor to create a report, then save
the report in an Excel spreadsheet. Search through the spreadsheet's cells
for these two file names and entry point function names.


Hey let us know..

Good Luck...

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top