HyperlinkPart Method

This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

                 

The HyperlinkPart method returns information about data stored as a Hyperlink data type. The data in a Hyperlink field can contain up to four parts in the following format:

displaytext**#address#subaddress#**screentip

Syntax

object**.HyperlinkPart(hyperlink As Variant [, part As Integer])**

The HyperlinkPart method has the following arguments.

Argument Description
object Optional. The object.
hyperlink A Variant representing the data stored in a Hyperlink field.
part Optional. The value for the part argument is an intrinsic constant representing the information you want returned by the HyperlinkPart method:
  Constant Value Description
  acDisplayedValue 0 (Default) The underlined text displayed in a hyperlink.
  acDisplayText 1 The displaytext part of a Hyperlink field.
  acAddress 2 The address part of a Hyperlink field.
  acSubAddress 3 The subaddress part of a Hyperlink field.
  acScreenTip 4 The tooltip part of a Hyperlink field.
  acFullAddress 5 The address and subaddress parts of a Hyperlink field delimited by a "#" character.

Remarks

You use the HyperlinkPart method to return one of three values from a Hyperlink field or the displayed value. The value returned depends on the setting of the part argument. The part argument is optional. If it's not used, the function returns the value Microsoft Access displays for the hyperlink (which corresponds to the acDisplayedValue setting for the part argument). The returned values can be one of the four parts of the Hyperlink field (displaytext, address, subaddress, or screentip), the full address, address#subaddress, or the value Microsoft Access displays for the hyperlink.

Note   If you use the HyperlinkPart method in a query, the part argument is required and you can't use the constants listed above but must use the actual value instead.

When a value is provided in the displaytext part of a Hyperlink field, the value displayed by Microsoft Access will be the same as the displaytext setting. When there's no value in the displaytext part of a Hyperlink field, the value displayed will be the address or subaddress part of the Hyperlink field, depending on which value is first present in the field.

The following table shows the values returned by the HyperlinkPart method for data stored in a Hyperlink field.

Hyperlink field data HyperlinkPart method returned values
#http://www.microsoft.com# acDisplayedValue: http://www.microsoft.com

acDisplayText:

acAddress: http://www.microsoft.com

acSubAddress:

acScreenTip:

acFullAddress: http://www.microsoft.com

Microsoft#http://www.microsoft.com# acDisplayedValue: Microsoft

acDisplayText: Microsoft

acAddress: http://www.microsoft.com

acSubAddress:

acScreenTip:

acFullAddress: http://www.microsoft.com

Customers#http://www.microsoft.com#Form Customers acDisplayedValue: Customers

acDisplayText: Customers

acAddress: http://www.microsoft.com

acSubAddress: Form Customers

acScreenTip:

acFullAddress: http://www.microsoft.com#Form Customer

##Form Customers#Enter Information acDisplayedValue: Form Customers

acDisplayText:

acAddress:

acSubAddress: Form Customers

acScreenTip: Enter Information

acFullAddress: #FormCustomer

When you add an address part to a Hyperlink field by using the Insert Hyperlink dialog box (available by clicking Hyperlink on the Insert menu) or by typing an address part directly into a Hyperlink field, Microsoft Access adds the two # symbols that delimit parts of the hyperlink data.

You can add or edit the displaytext part of a hyperlink field by right-clicking a hyperlink in a table, form, or report, pointing to Hyperlink on the shortcut menu, and then typing the display text in the Text to display box.

When you add data to a Hyperlink field directly, you must include the two # symbols to delimit the parts of the hyperlink data.