RE: Doc Link without workspace icon nikoskar nikoskar 16.Aug.06 07:30 AM a Web browser Domino Designer 6.0.1 CF1Windows 2000
Hi Tom,
Thanks for you response.
I use a LS in order to send a mail with a doclink.
Here is a part of my code.
Dim Workspace As New NotesUIWorkspace
Dim UserName As New NotesName(session.UserName)
Dim tmpDescr As String
Set session = New NotesSession
Set db = Session.CurrentDatabase
Set UIDoc = Workspace.CurrentDocument
Set doc = uidoc.Document
'Create a new Memo
Set NewMail = New NotesDocument( db )
Set RtDocType = NewMail.ReplaceItemValue( "DocType", "Memo")
Set Subj = NewMail.ReplaceItemValue( "Subject", "Test Message"
Set rtitem = NewMail.CreateRichTextItem( "Body" )
Set richStyle = session.CreateRichTextStyle
'Send mail process
NewMail.SendTo = doc.D_Checker
Call NewMail.Send( False )
So, when I click on the doclink a database's (My Application) icon appears on my workspace.
do you have any idea that how can I prevent it or remove it.