Hyperlink

R

rafik

I m trying to create a text field with a hyperlink to an
address but a m geting an error that the hyperlikaddress
property is Read only for this Hyperlink

the code:

With Application.FileDialog(msoFileDialogFilePicker)
.Show

For Each a In .SelectedItems
With Me.Loan_Doc
.Value = a
With .Hyperlink
.Address = a
End With
End With
Next
End With
 
Top