Dynamic Query

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
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"
 
Back
Top