Home  Fees/Services  Access Examples  Tutorials  Access Download  Articles  Search  Contact  Privacy  Links
Custom Database Design Consultants
 
Access Programming Examples
 
Access Example Downloads
Access Application Object Examples

Application Object Method Examples
Methods for Controlling Access Objects

Access Tutorials>Application Object Methods> Build Criteria Method



                                   
AccessError Method
AddToFavorites
BuildCriteria Method
CloseCurrentDatabase
CodeDB
CompactRepair Method
ConvertAccessProject


Access BuildCriteria Method Example


BuildCriteria Method - The BuildCriteria method returns a criteria string as it would appear in the criteria line in the query design grid.
For example, you may want to set a form's Filter or ServerFilter property based on varying criteria from the user. You can use the BuildCriteria method to construct the string expression argument for the Filter or ServerFilter property.

The BuildCriteria Method has the following structure:

strVar = BuildCriteria (fieldname, fieldtype, expression)

where:

fieldname is the name of the field in the record source of the form.

fieldtype is an integer constant for the data type of the field. 
The field type can be any of the following constants:

  • dbDate

  • dbText

  • dbBoolean

  • dbInteger

expression is string containing the criteria.

Here's an example:

Sub BuildCriteria_Click
Dim strCriteria As String

strCriteria = BuildCriteria ("OrderDate", dbDate, ">1-1-95")

End Sub

This example returns the following criteria string:

OrderDate>#1/1/95#

Contact Information

Custom Software Development
Microsoft Access 2003 2000 2002(XP) 97 All Windows Versions