Home > Domino Tips > Developer > Programmatically create a shortcut for Lotus Notes
Domino Tips:
EMAIL THIS
 TIPS & NEWSLETTERS TOPICS 

LOTUSSCRIPT

Programmatically create a shortcut for Lotus Notes


Jon Urwin
02.13.2007
Rating: -2.76- (out of 5)


Lotus Notes and Domino tips, tutorials and how-to articles
Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us    Add to Google


When used in a form action, this code will invite users to click a button, browse for a file, and then insert a shortcut to that file in a rich-text field. This is ideal for items like a Lotus Notes discussion database, because it provides an easy way for users to create a pointer to a shared file.
VIEW MEMBER FEEDACK TO THIS TIP

This code is made up of Formula language for a form action, and a LotusScript agent that is called by the Formula script.

Formula language for the form action:

REM {Runs LotusScript agent, which prompts 
user to browse for file...}; 
REM {...saves the Shortcut, and passes back the filepath};

@Command([RunAgent];"(file shortcut)"); 
REM {inserts shortcut at insertion point of a Rich Text field};
@Command([EditInsertFileAttachment];
@Environment("fileshortcutpath"))

The LotusScript agent:

(called '(file shortcut)' in this example)
Runtime: Agent list selection
Target:None
>>>>>>>>>>>
>>>>>>>>>>>>

Sub Initialize
Dim ws As New notesuiworkspace
Dim s As New notessession


a = ws.openfiledialog(False,"Select file to link to")

If Isempty(a) Then Exit Sub ' exit if user clicks Cancel
 
' else continue
 
 
' get filename
fname = Strrightback(a(0),"",5)



Set SH =  CreateObject("WScript.Shell")

' Shortcut is actually stored in Windows 
Temp directory, ready for attaching into document
 
DPath = SH.ExpandEnvironmentStrings
("%windir%" & "Temp")

Set SC = SH.CreateShortcut(DPath & 
"Shortcut to " & fname & ".lnk") 

' sets environment variable, to pass the filepath 
of the 'Shortcut, so it can be picked up 
by the formula language action button

Call s.SetEnvironmentVar("fileshortcutpath",DPath 
& "Shortcut to " & fname    & ".lnk")
 
 
SC.TargetPath = SH.ExpandEnvironmentStrings(a(0))
 
 
SC.WorkingDirectory =
SH.ExpandEnvironmentStrings("%windir%")
SC.WindowStyle = 4
 
SC.Save
 
 
End Sub


>>>>>>>>>>>
>>>>>>>>>>>>

MEMBER FEEDBACK TO THIS TIP

A pseudo protocol is a very simple way to create a shortcut for a file. If you add a string that looks like the following, it becomes a clickable hyperlink to the file: file:\\servername\directory and path\filename.
—Thierry S.

******************************************

I believe there are a couple of errors in this agent that I'd like to point out:

First, in the (file shortcut) agent, dpath=sh.expandenvironmentstrings("%windir%" & "temp") is incorrect. Instead, there should be a backslash with "temp" to read dpath=sh.expandenvironmentstrings("%windir%" & "\temp").

Also in the (file shortcut) agent, fname=strrightback(a(0,"",5) returned nothing, which may have been by design. But changing this to fname = strrightback(Strleftback(a(0),".",5), "\", 5) returns a file name.
—Chris L.

******************************************

Thanks for the feedback, Thierry, although the drawbacks to the pseudo file protocol are originally what prompted me to develop this workaround.

For example, when using file:\\servername\directory and path\filename, there are often issues if there's a space in the filename. Also, I have had reports of Internet Explorer 7 users struggling to launch links created with this protocol.
—Jon Urwin, tip author

Do you have comments on this tip? Let us know.

Related information from SearchDomino.com:

  • Learning Guide: LotusScript
  • Learning Guide: Formula language
  • FAQ: LotusScript advice
  • FAQ: Formula language advice
  • Reference Center: LotusScript tips and resources
  • Reference Center: Formula language tips and resources

    This tip was submitted to the SearchDomino.com tip library by member John Urwin. Please let others know how useful it is via the rating scale below. Do you have a useful Lotus Notes, Domino, Workplace or WebSphere tip or code snippet to share? Submit it to our monthly tip contest and you could win a prize.

    Rate this Tip
    To rate tips, you must be a member of SearchDomino.com.
    Register now to start rating these tips. Log in if you are already a member.




    Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us    Add to Google



    RELATED CONTENT
    LotusScript
    LotusScript finds the first occurrence of a string from the right
    Clear Recent Contacts view and prevent repopulation in Lotus Notes 8.x
    Search Microsoft Active Directory with LotusScript
    Three steps to trap and handle save conflicts with LotusScript
    Troubleshoot agents by displaying LotusScript variables online
    LotusScript sorts lists alphabetically
    Run or restart Notes/Domino agents via text messages
    LotusScript code rebuilds corrupted busytime.nsf file
    Soft-code item names to facilitate LotusScript management
    LotusScript agent automates selective mail file replication

    Lotus Notes Domino Formula Language
    View hidden fields on Lotus Notes/Domino forms
    Case-insensitive @Unique version combines fields on Lotus Notes forms
    Do I use Formula or LotusScript to include a doclink to a Notes view?
    Top 10 Lotus Notes/Domino coding and development tips of 2008
    Provide rich-text formatting via the Profile document and Formula
    Top 10 Formula language tips
    Using Formula language code to sort Lotus Notes messages by subject
    How to create dynamic JavaScript in Notes Domino without formulas
    Stop response documents from showing in a Lotus Notes form
    Formula language button manages Deny Access list searches

    Formula
    View hidden fields on Lotus Notes/Domino forms
    Case-insensitive @Unique version combines fields on Lotus Notes forms
    Provide rich-text formatting via the Profile document and Formula
    Using Formula language code to sort Lotus Notes messages by subject
    How to create dynamic JavaScript in Notes Domino without formulas
    Formula language button manages Deny Access list searches
    Retrieve Lotus Notes names from a nested group using @DBLookup
    Create a computed Lotus Notes field to list Personal Address Book names
    Show multiple Lotus Notes document fields in a single view column
    How to send a document as a link in a Lotus Notes email

    RELATED RESOURCES
    2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
    Search Bitpipe.com for the latest white papers and business webcasts
    Whatis.com, the online computer dictionary

    DISCLAIMER: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.



  • Domino & Lotus Notes Security Solutions: Authentication, Antispam, Encryption and Antivirus
    HomeTopicsITKnowledge ExchangeTipsAsk the ExpertsMultimediaWhite PapersDomino IT Downloads
    About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
    SEARCH 
    TechTarget provides technology professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective purchase decisions and managing their organizations' technology projects - with its network of technology-specific websites, events and online magazines.

    TechTarget Corporate Web Site  |  Media Kits  |  Site Map




    All Rights Reserved, Copyright 1999 - 2009, TechTarget | Read our Privacy Policy
      TechTarget - The IT Media ROI Experts