J
JethroUK©
Is it possible to bind a textbox to table that's not bound to the form via
control source e.g.
= [Stats]![from]
control source e.g.
= [Stats]![from]
JethroUK© said:Is it possible to bind a textbox to table that's not bound to the form via
control source e.g.
= [Stats]![from]
Marshall Barton said:JethroUK© said:Is it possible to bind a textbox to table that's not bound to the form via
control source e.g.
= [Stats]![from]
No, there is not.
Actually, that really doen't make any sense when the table
has multiple records because you can not specify which row
you want to use to get the value of the [from] field.
OTOH, you can easily retrieve the value using a function to
get the value for you. If the table only has one record,
this will work:
=DLookup("[From]", "Stats")
The Domain Aggregate functions also allow you to specify a
where clause to select a particular record from a table with
multiple records.
Douglas J Steele said:No. You can only bind to fields that are in the form's recordset, and you
can only put the field's name.
--
Doug Steele, Microsoft Access MVP
(no e-mails, please!)
JethroUK© said:Is it possible to bind a textbox to table that's not bound to the form via
control source e.g.
= [Stats]![from]