The external provider's fax, if any.
object.Fax
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISExternalProvider interface |
string
Display the external provider's fax, if any.
Dim aExtProvider
Dim aCode
Dim aMessage
aCode = "JT"
Set aExtProvider = Profile.LoadExternalProvider(aCode)
if aExtProvider.ID = 0 then
aMessage = "No external provider with the specified code"
else
aMessage = aMessage & vbNewLine &_
"Full Name:" & vbTab & "Fax:" & vbNewLine & vbNewLine &_
aExtProvider.FullName & vbTab & aExtProvider.Fax
end if
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface Fax can be found in
.