ACC2000: Combo Box or List Box Empty After You Use Upsizing Tools

ID: Q229755


The information in this article applies to:

Advanced: Requires expert coding, interoperability, and multiuser skills.

This article applies only to a Microsoft Access database (.mdb).


SYMPTOMS

After you use the Microsoft Access Upsizing Tools to migrate your database to a Microsoft Access client/server application, combo boxes and list boxes that previously functioned correctly now are blank or return the following error message when you use them:

The recordsource 'ut_qry##' specified on this form or report does not exist.


CAUSE

The Rowsource property of the combo box or list box contains one of the following values:


RESOLUTION

In your Microsoft Access project, create a stored procedure that returns the data that you want to display in your data-bound control. Then, use the stored procedure in the RowSource property of the control that does not work correctly.


STATUS

Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article.


MORE INFORMATION

Steps to Reproduce Behavior

  1. Open the sample database Northwind.mdb.


  2. Create the following form:


  3. 
       Form: MyForm
       ----------------------
       Caption: Upsizing Test
       RecordSource: None
    
       Combo box
       ----------------------------------------------------------------------
       Name: Field1
       RowSource: SELECT [Categories].[CategoryID],[Categories].[CategoryName] 
                  FROM Categories 
                  ORDER BY [CategoryName] DESC; 
  4. Open the form in Form view and verify that the combo box works correctly.


  5. On Tools menu, click Database Utilities, and then click Upsizing Wizard.


  6. Upsize all tables in the database to SQL Server or MSDE, making sure to select Create a new client-server application in the What application changes do you want to make option group.


  7. After the Upsizing Wizard is finished, examine and close the Upsizing Report. Note that the newly created Access project opens automatically.


  8. Open the MyForm form in Form view, and try to show the list of values that should appear in the combo box.



REFERENCES

For more information about the Upsizing Wizard, click Microsoft Access Help on the Help menu, type "upsizing wizard" in the Office Assistant or the Answer Wizard, and then click Search to view the topic.

Additional query words: pra


Keywords          : kbdta AutPrb 
Version           : WINDOWS:2000
Platform          : WINDOWS 
Issue type        : kbbug 

Last Reviewed: July 16, 1999