The information in this article applies to:
SUMMARYThis article shows by example how to display only those records that meet a given criteria in a grid on a form. MORE INFORMATIONTo display only those records that meet a given criteria, use one of the following three methods described below. Method One
Method Two
Method ThreeUse a parameterized view. To create a parameterized view, choose View Parameters from the Query menu in the View Designer, or use the CREATE SQL VIEW command with a "?" symbol and a parameter name, as in this example:
This example includes all records where the Country field in the
Customer table match the value in the cCountry memory variable. If
cCountry did not exist at the time the form was created, a dialog box
would appear asking for the value of cCountry. To use a parameterized
query as the source of data for the grid, set the RecordSource property
to 1 - Alias and the RecordSource property to the name of the view.
Additional query words: browse key
Keywords : kbDesigner kbVFp300 kbVFp500 kbVFp600 |
Last Reviewed: August 10, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |