Showtime
My Blackberry Enterprise Server Push Utility for the Lotus Notes Client, allows you to create Jobs for individual Channel, Message, and Browser Content Pushes, as well as allows you to delete Pushed Channel Icons from defined recipient devices.
Contact Information
Blogger, podcaster, writer, and geek Chris Toohey covers topics from application development to the latest must-have-gadgets.
Latest Updates
Products & Applications
Time Tracker
The idea is simple. At the start of your day - upon completion of your first task - create an entry highlighting what you did and whether you feel it was an efficient or inefficient use of your time. Based on several requests, you can also select the priority, apply categories, or even align your time against a project.
For Lotus Notes Client v8.0 and above, you can use the Time Tracker Widget to make this process even easier!
Zephyr
My Configuration-based Rich Text Mail Merge and Emailing Utility, Zephyr allows you to create rich, data-driven emails to support automated workflow - all via Microsoft Word Mail Merge-like architecture. Dear <firstname> allows you to personalize each email message not only to the individual recipient, but also to the individual application workflow event!
xCopy
xCopy is a simple configurable xCopy client for the Lotus Notes client. By creating and defining xCopy Profiles, you can batch process your file backup or remote upload jobs. With the addition of the xCopy sidebar widget, you can easily kick-off these jobs, and modify both the xCopy Profiles and xCopy itself.
Community & Resources
Lotus Technical Information & Education Community
The Lotus Technical Information & Education community is comprised of IBM, business partner, and customer subject matter experts who use product wikis, published articles, white papers, community blogs and the latest in social media to build and share high quality technical content.
OpenNTF.org - Open Source Community for Lotus Notes Domino
OpenNTF is devoted to enabling groups of individuals all over the world to collaborate on IBM Lotus Notes/Domino applications and release them as open source.
developerWorks Lotus : Wikis
Share your deployment experiences and best practices in our wikis and help IBM to create scenarios for successful deployments. Contribute to the community by collaborating on shared content and leverage the shared knowledge from that community.
Embedded Windows Explorer/File Browser for remotely-stored file resources in the Lotus Notes Client UI
06/10/2008 03:47:40 PM by Chris Toohey
I had a request from a manufacturing customer who was asking for a document library, which would be used to store CAD files (read: too-large-for-logic drawings). I immediately didn't want to store these mammoth files in a Domino database container, as 1) the Full Text Index really wouldn't do any good for CAD files and 2) well - duh - there's a long list of reasons not to bring 500MB files as attachments into a Domino database container - and that's not what I'm getting at here... so I'll move on.
After some questions, I found that the customer was asking for a "document library" because they wanted to track specific drawings against specific projects and other categorizations that the standard File Store architecture would no longer facilitate. They wanted to be able to apply category labels to grouped files. All things that you'd want to do in a typical "document library" - but I again didn't want to store these large files in Domino. So I thought about using some sort of embedded, programaticaly-accessible Windows Explorer widget - which would allow me to display the "linked" documents, while storing the labeling information on the actual "container" UI document. Simple enough right? Now to just find a Windows Explorer widget... that I could modify within the Lotus Notes client container... in release 6.5.
Got some good feedback from people via my Twittering the question (thanks Steve and Andrei!!!) but me being the stubborn me, there had to be a simple way of doing it... and possibly with the Microsoft Web Browser Control (which was the closest thing that I could find to a Windows Explorer Object). So I googled "Microsoft Web Browser Object" + Lotus Notes...
Now, I should have known that...
- I was getting the idea that this was possible from somewhere.
- That someone like Tommy Valand would already have done it!
The good news? Well, using this approach, I was able to give my customer a quick-since-it-was-already-written solution:
I simply modified their current "project" Form Design Element and added (on a new tab called File Resources) a field called url and am embedded Microsoft Web Browser Object (Control).
Pretty simple right? Yeah - the only this that was missing was the logic to control the embedded object - which I added to the PostOpen event:
Sub Postopen(Source As Notesuidocument)
Dim browser As Variant
Set browser = source.GetObject("Microsoft Web Browser")
If (Len(Source.FieldGetText("url")) > 0) Then
If (browser.width <> 400) Then
browser.width = 400
browser.height = 400
End If
Call browser.navigate(Source.FieldGetText("url"))
End If
End Sub
So pretty basic stuff all around - when the "project" document is opened, I check to see if there's a value defined in the url field. If so, launch my embedded "File Browser" of sorts and show the contents!
If there's an interest in having an example of this "approach", let me know and I'll put one out here.




Tim Tripcony has done the same thing, except he was detaching attachment files to a temp folder and pointing the url at the temp file.
The result is a fantastic file preview application which ranks as one of the *most* useful notes client mechanisms blogged to date.
I've combined it with the Adobe SVG viewer and a generated SVG file to create enbedded charts and graphs.
Is it possible to embed the Mozilla browser in this way?
Wayne
Actually... I just saw a similar application that wasn't built with Notes. I thought that it would be easy enough to build one of these with Notes, but as you mention, some things are better left to the file system. Of course, Mac/Linux clients are excluded but they're used to that. I'd love to see the demo if you find time to post it.
"ranks as one of the *most* useful notes client mechanisms blogged to date."
lol. You're welcome.
There are many Tim Tripcony moments of brilliance that I could never take credit for. But this was not one of them. :-D
That being said... head over to http://www.timtripcony.com for his latest -- which is most definitely him!
For the record:
Tim hates babies, small animals, and the eldery.
I'd like to see your example. I'm not sure exactly how you're presenting the files to the Web Browser control. Are you using a view and exposing that via HTTP?
I have some other ideas that won't require running HTTP, I just need to get them into Notes in a way that makes sense.
Oh, okay. You're using the web browser control to DISPLAY the file. That's completely different than where I was going. :-)
I hate to be such a dunce, but what does having one web browser embedded into another web browser really get you?
In one place you talk about the "Windows Explorer Object", which is not a web browser, right? It's like "Finder" on the Mac ... lets you look at and manipulate your file system.
Then the the code says "GetObject('Microsoft Web Browser')". Now that sounds like a web browser. Perhaps my problem is that I'm just not up on the Microsoft architecture.
So where are the files actually stored? Is this application on the Internet or the company intranet? How is access to the files controlled and security permissions applied? How do the files get there to begin with? You also mentioned associating meta-data with the drawing files; how does that get done?
The reason I ask is that I've designed a couple of systems kind of like this using Notes including detaching and renaming the files from the uploaded document, but the files were small. I've found no way to control access to the files stored on the server so I still do that through Notes. That is, I put the files on the server outside of the HTTP base address.
My plan to handle large files, if I ever need to, is to dynamically attached the file requested to a document so the user could download it. I don't know what that would do to performance, however.
Peace,
Rob:-]
@ Nathan: That doesn't surprise me really, I guess I mentioned Tim 'cause I got the sample DB from his blog. That being said, I've downloaded samples from your blog plenty of times. I'm just thankful that *someone* is coming up with ideas for furthering the use of the Notes client.
Wayne
Thanks for you help.