Dynamic Query

C

Cees

I made a Query by Form (QBF) wich uses Dynamic Query Def. All works fine.

My question is:

Is it possible to show this query in a form (datasheet) and change some data
and save this data?

I hope it will.
 
D

Duane Hookom

This depends on if your query is updateable. You can create a form with a
subform control. Then use code to set the SourceObject of the subform control
to your query:

Me.subfrmName.SourceObject = "Query.qselName"
 
Top