Thanks sjef. I will try this and let you know my findings.
Main Topics
Browse All TopicsHow do you make a view column display a link in the Notes Client that can launch a web page.
The url field is a richtext field with an http://.... value
Can this be done from the Notes Client ? See the snippet I'm working with as the column formula.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: sjef_bosmanPosted on 2008-03-21 at 15:36:13ID: 21183742
In the Notes client? Views in Notes do not contain clickable URLs. The snippet will work only from a browser.
mentByID(n oteid)
I recently found a way to have something clickable in a view that could be used to implement what you want: the InViewEdit event. I used a clickable icon; when the user clicks the icon an action will be executed. I think it may be possible to display a URL and make it clickable that way. You need R7 for the first type of event to work (the query request), because that's all you need. If you have R6, I'd advise you to use the icon method, the user clicks the icon to follow the URL.
From the Designer Help db: "A special case is a column that represents the item as an icon. You change the icon by writing to the item represented by the view column entry in a save request. Each time the user clicks on the column entry, your save code executes."
Real life example:
Sub Inviewedit(Source As Notesuiview, Requesttype As Integer, Colprogname As Variant, Columnvalue As Variant, Continue As Variant)
Dim noteid As String
Dim doc As NotesDocument
Dim ns As New NotesSession
Dim ws As New NotesUIWorkspace
continue= False ' never continue editing
If RequestType=3 Then
...
noteid= source.CaretNoteID
Set doc= ns.CurrentDatabase.GetDocu
...
' here you can try to activate a URL...
End If
End Sub