The methods of the DoCmd object in Microsoft Access can be used to run actions from Visual Basic. Examples of said actions are: closing windows, opening forms and setting the value of a control.
For example to open a form call "Customers" in a normal view, as opposed to a design view or a table view, use this code:
DoCmd.OpenForm "Customers", acNormal
To open the same form but show only records for a customer called Acme Inc (the underlying table or query must have a field called [CompanyName]), use this code:
DoCmd.OpenForm "Customers", , ,"[CompanyName] = 'Acme Inc'"
Thursday, April 14, 2005
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment