L
LisaB
In Access you have to ability to select "Hyperlink" as the field datatype.
However, I have an Access 2000 front-end connected to a SQL 2000 back-end
and Hyperlink datatype is not an option.
On my form, I have a filed that holds a webAddress entered by the user. When
the user double-clicks on this field IE opens and goes to the webAddress.
I have the following code in the Double Click event
-----------
Private Sub WebAddress_DblClick(Cancel As Integer)
Shell "C:\Program Files\Internet Explorer\iexplore.exe " &
Me.WebAddress, vbMaximizedFocus
End Sub
However, I have an Access 2000 front-end connected to a SQL 2000 back-end
and Hyperlink datatype is not an option.
On my form, I have a filed that holds a webAddress entered by the user. When
the user double-clicks on this field IE opens and goes to the webAddress.
I have the following code in the Double Click event
-----------
Private Sub WebAddress_DblClick(Cancel As Integer)
Shell "C:\Program Files\Internet Explorer\iexplore.exe " &
Me.WebAddress, vbMaximizedFocus
End Sub