Access field data not populate on the form

S

souris

I need access field value which does not populate on the form.
Are there anyway can access those fields value?

Any information is great appreciated.

Souris
 
J

John Vinson

I need access field value which does not populate on the form.
Are there anyway can access those fields value?

Any information is great appreciated.

Souris

You'll have to explain a bit more. Where is this field? What's the
Recordsource of the Form? Why doesn't the field "populate on the
form"?

John W. Vinson[MVP]
 
S

Sergey Poberezovskiy

Not quite sure what you mean: do you need to use a field
in the form's RecordSource that is not dispayed on the
form?

In this case you may just create an invisible control
with this field in its ControlSource property and use
that as you normally would with any other control.

HTH
 
S

souris

Thanks for the information.
I use Delphi before.
Delphi has TField component. I can use TField component to access the data
without having controls on the form.

Souris,
 
S

Sergey Poberezovskiy

If your form is bound then you can use its RecordsetClone
property to access the underlying recordset and use its
fields (and even navigate to other records) without using
controls on the form as well.
 
Top