Microsoft KB Archive/100471

From BetaArchive Wiki
< Microsoft KB Archive
Revision as of 16:01, 18 July 2020 by 3155ffGd (talk | contribs) (importing KB archive)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

ACC1x: Order Entry Ship To Address Contains City Information

Q100471



The information in this article applies to:


  • Microsoft Access versions 1.0, 1.1





SYMPTOMS

In the sample database ORDENTRY.MDB you can print a sample invoice form. When you print the form, the Ship To information will contain the city name twice, and will not print the address line.



CAUSE

There is an error in the ShipToInfo procedure in the Order Routines module. The error will occur only if you enter a Ship To address.



RESOLUTION

Correct the error in the ShipToInfo procedure as follows:


  1. From the File menu, choose Open Database to open the ORDENTRY.MDB database. Bypass the autoexec macro by pressing SHIFT when you double-click the database name, or when you choose OK. (If you do not press SHIFT when opening the database, the autoexec macro will run and you will not be able to modify the procedure.)
  2. In the Database window, choose the Module button. Select the Order Routines module and choose Design.
  3. Press F2 and the View Procedures dialog box will appear. In the bottom half of this box is the Procedures box. In the Procedures box, select the ShipToInfo procedure, and choose OK.
  4. Find the line that starts with:


stAddress$ = ConvertNulls(DLookup("ShipCity"

Change this line so that the beginning reads:

stAddress$ = ConvertNulls(DLookup("ShipAddress"

Leave the remainder of the line intact.

  1. Save the changes and close the database.



STATUS

Microsoft has confirmed this to be a problem in Microsoft Access versions 1.0 and 1.1. This problem no longer occurs in Microsoft Access version 2.0.



MORE INFORMATION

Steps to Reproduce Behavior



  1. Open the ORDENTRY.MDB database.
  2. From the View menu, choose Orders.
  3. Select Add Orders and choose Select.
  4. Select any employee from the Employee ID box and choose OK.
  5. Select any customer from the Bill To box.
  6. In the Ship To box enter your name, address, city, state and ZIP code.
  7. Select the printer icon in the bottom-left corner of the form or choose Print from the File menu.

Keywords : kberrmsg kbusage
Issue type :
Technology :


Last Reviewed: November 4, 2000
© 2001 Microsoft Corporation. All rights reserved. Terms of Use.