Home > Software Tutorial > Computer Software > Detailed method of using access query to add functions to a form

Detailed method of using access query to add functions to a form

PHPz
Release: 2024-06-04 15:07:51
Original
1044 people have browsed it

Queries come in handy when you need to add functions such as data filtering or sorting to Access forms. PHP editor Yuzai will introduce in detail how to use queries to add functionality to forms, including creating queries, linking queries to forms, and customizing filtering and sorting options. By reading this article, you can learn how to take advantage of the power of Access queries to enhance the functionality and usability of your forms.

First prepare a table: the book name table. The fields include: book name, book author, book category, etc.

Detailed method of using access query to add functions to a form

1. Form

1. Create a blank form, as shown in the picture.

2. Add three text controls to this blank form and rename their labels. These controls are used to accept query conditions.

Detailed method of using access query to add functions to a form

3. Change the [Name] field in the text box attribute table to the corresponding text for ease of use later.

Detailed method of using access query to add functions to a form

4. Okay, the form part is over for now, remember to save it.

Detailed method of using access query to add functions to a form

2. Query

1. Next, let’s talk about [Query]. Use [Query Design] to create a new query and select the tables to join.

2. Add the field name to be queried. This is very simple. The key is [query conditions].

Detailed method of using access query to add functions to a form

3. What we want to achieve here is to click the button [Query] in the form to get the corresponding content in the table, so we need to use [Like].

4. Right-click in the [Book Name] condition box and select [Generator].

Detailed method of using access query to add functions to a form

5. Enter like and find [Expression Element]>[Forms]>All Forms>Form Name. Then select the book name in the [Expression Category] column.

Detailed method of using access query to add functions to a form

6. This is not enough. You also need to add the wildcard "*" as shown in the figure and use & to connect.

Detailed method of using access query to add functions to a form

7. As shown above, add conditions to all three items in the form in the query. Then save and the query is completed.

Detailed method of using access query to add functions to a form Detailed method of using access query to add functions to a form

3. Query

1. Go back to our form and drag the query you just completed to the form. , it is considered a subform. I won’t talk about size adjustment or anything like that. Here comes the key.

Detailed method of using access query to add functions to a form

2. The key is this query button. Create a new button and rename it to Query. In its attribute table, click [Click] on the last three points.

Detailed method of using access query to add functions to a form

3. The [Select Generator] pops up as shown below, and select the [Code Generator] item.

Detailed method of using access query to add functions to a form

4. Just write the code in the picture below and it will be closed. Just change the query name.

Detailed method of using access query to add functions to a form

5. Go to the form view, enter one of the three conditions, click Query, and the subform below will display content that meets the conditions.

Detailed method of using access query to add functions to a form

The above is the detailed content of Detailed method of using access query to add functions to a form. For more information, please follow other related articles on the PHP Chinese website!

source:zol.com.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template