ACC2000: How to Find a Record from a Drop-down List in a Data Access Page
ID: Q247823
|
The information in this article applies to:
Moderate: Requires basic macro, coding, and interoperability skills.
SUMMARY
This article shows you how to find a record in a data access page based on an entry that you select from a drop-down list.
MORE INFORMATION
To create the data access page and the appropriate script to find a selected record, follow these steps:
- Open the sample database Northwind.mdb.
- In the Database window, click Pages under Objects, and then double-click Create data access page by using wizard.
- Under Tables/Queries, click the arrow, and then click Table: Customers in the list.
- Click >> to move all the fields from the Available Fields list to the Selected Fields list.
- Click Finish.
- In the toolbox, click Dropdown List, and then click anywhere on the page to add the Dropdown List control.
- Set the following properties for the Dropdown List control:
ID: CustID
ListRowSource: Table: Customers
ListBoundField: CustomerID
- Right-click anywhere on the page, and then click Microsoft Script Editor on the shortcut menu to open the HTML source.
- In the Script Outline window, expand Client Objects & Events, expand CustID, and then double-click the onchange event.
- Insert the following script:
<SCRIPT LANGUAGE=vbscript FOR=CustID EVENT=onchange>
<!--
Dim rs
Set rs = MSODSC.DefaultRecordset
rs.Find "[CustomerID] = '" & document.all.item("CustID").value & "'", 0, 1, 1
'0 = Skip zero records before starting the search.
'1 = Search in a forward direction.
'1 = Always begin the search with the first record in the recordset.
-->
</SCRIPT> NOTE: To search for numeric data, change the command line in the script as follows:
rs.Find "[CustomerID] = " & document.all.item("CustID").value
- Save the page as Page1.htm, and then click Page View on the View menu.
- Click a value in the CustID drop-down list to move the data access page to that record.
Additional query words:
inf dap mod dhtml search move to
Keywords : kbdta AccDAP DAPScriptHowTo dtavbscript
Version : WINDOWS:2000
Platform : WINDOWS
Issue type : kbhowto
|