Textbox Properties

  • Thread starter Thread starter Saxman
  • Start date Start date
S

Saxman

I have a textbox on a form which has hyperlink as the data type.

The default format for a hyperlink is a file or web link. Is it possible
change the default to an email address for all records without the need to
select hyperlink/edit hyperlink/select email address for every record?

TIA
 
It's unclear to me what you're trying to do here. Are you referring to
a Label control, rather than a Textbox? On a Label, you could prefix
its Hyperlink Address property with "mailto:", as in

mailto:[email protected]

but you could let its Caption property be

(e-mail address removed)

If you wanted to change this value, you'd need to do it under program
control. The contents of a Label would not be sensitive to the current
record selection of the Form's underlying data source.

-- Vincent Johns <[email protected]>
Please feel free to quote anything I say here.
 
Back
Top