Contact Information
- Email: ctoohey@dominoguru.com
- BleedYelow.com: Chris Toohey
- Skype: ChrisToohey
- Gizmo: ChrisToohey
- Yahoo!: ChrsToohey
- Google: ChristopherToohey
(ctoohey@dominoguru.com) - AIM: ChrisToohey
- Twitter: ChrisToohey
- Facebook: ChrisToohey
- LinkedIn: Chris Toohey
- Videos:youtube.com/christoohey
vimeo.com/christoohey - Podcast Information
http://www.yellowcast.net
YellowCast @ Twitter - RSS:

- Guru Tag:

Like what you see? Help feed-the-beast by donating to the site and its humbly thankful author!
My Twitpic Updates
My Twitter Updates
Publishings
Domino Development and Data Store Architecture 06/06/2008Domino Development RIM's Blackberry Connections Client - First Impressions (Part 2) 05/19/2008
My Gear RIM's Blackberry Connections Client - First Impressions 05/19/2008
My Gear Remove my name from the Domino Directory!! 02/05/2008
Lotus Notes Quick and Dirty Mail Application Document Importing 01/24/2008
Methods and Strategies Publishings Archive
Examples & Downloads
SOTU - Remote Console Command Utility v0.3 01/06/2009Examples and Downloads Adding Admin-defined Color-coding to Lotus Notes View rows via Color Profile Documents 01/05/2009
Examples and Downloads Showtime: Blackberry Enterprise Server Push Utility for the Lotus Notes Client - Release v0.1 11/13/2008
Examples and Downloads MixMaster v0.1 - Remote NotesItem Manager 10/06/2008
Examples and Downloads No-View NotesDocument Lookups, UNID Logic, and Environment Variables - Example Application and Video Tutorial 09/16/2008
Examples and Downloads E & D Archive
Resources
PlanetLotus.org [ Community ] Alan Lepofsky's Notes Tips [ Community ] Chris' The Business Controls Caddy [ Community ] Petr Stanicek [pixy] [ CSS ] JoeLitton.net [ Community ] Resources ArchiveAdvertisements
Lotus Notes Client URLs
01/09/2003 12:47:32 PM | Chris Toohey | Saylorsburg, PA
Ever wanted to link to a Domino database from your intranet? Easy enough if your intranet is in Domino; but what if it's in ColdFusion or just plain old HTML?!? How do you link to a Domino database and how do you get that link to run in the Lotus Notes client?!? The following tip shows you how!
This should launch your personal address book (names.nsf). The URL for this was simply "Notes:///names.nsf".
The schemes for Lotus Notes client URLs is as follows:
Server Databases
Taking this a step farther, you can also, by using Domino web-URL arguments, do the following:
New Contact
By appending /person?openform to the scheme, I was able to have a user launch their Person or new contact form.
The application of this is endless. You can now use dynamic URLs even for your Notes Applications as I have with framesets pointing to specific user's view in a custom welcome page (hey, it's something that I had to do!). For example, I created a new view in the R5 Mail Template called "Unread Messages" so a user could view all of their Unread Messages directly from the welcome page/splash screen. To make the button dynamic for all users, I used the following:
server := @Subset(@MailDbName;1);
database := @Subset(@MailDbName;-1);
mail := "Unread Messages";
setMail := @Do(@SetTargetFrame("NotesView");
@URLOpen("Notes://" + @Name([CN];server) + "/" + database + "/unread?OpenView"));
setMail;
@Command([RefreshHideFormulas])I placed this formula on a URL hotspot (in the Click Event of the hotspot mind you) - this allowed for all users to click and launch this Notes client-specific URL in a frame in a frameset IN THE NOTES CLIENT!!!
Made me look good anyways!
Like what you see? Help feed-the-beast by donating to the site and its humbly thankful author!
Chris Toohey | Domino Guru