Hi,
I want to make a link from ms access to Reuter like this excel-Reuters link:
Sub HotLink()
Rem Initialize the number of updates to zero and display in cell B2
UpdateCount = 0
ActiveSheet.Cells(2, 2) = UpdateCount
Rem Create a hot link and place it in cell A2
ActiveSheet.Cells(2, 1) = "=REUTER|IDN!’IBM,LAST’"
Rem Cause the procedure "Count" to be called when each update is received
ActiveWorkbook.SetLinkOnData "REUTER|IDN!’IBM,LAST’", "Count"
End Sub
Thanks again