Default Question

P

pas926

In a text box I want a large single page contract style text to always be the
default when the user starts a new record. This text is usually modified.
I know how to enter simple default values but not something like a page of
text. Any help is appreciated in advance. Thanks, Paul
 
D

Dirk Goldgar

pas926 said:
In a text box I want a large single page contract style text to always be the
default when the user starts a new record. This text is usually modified.
I know how to enter simple default values but not something like a page of
text. Any help is appreciated in advance. Thanks, Paul

One possibility is to store the default text in a memo field in a table
(possibly a table in which you store various application configuration
options), and set the DefaultValue property of the text box to a DLookup
expression that returns the value from that field of the table. For
example,

=DLookup("DefaultContract", "tblProfile")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top