358 Lotus blogs updated hourly. Who will post next? Home | Downloads | Events | Jobs | Twitter | Bookmarks | Pods | Forum | Blogs | Search | myPL | About 
 
Latest 7 Posts
NLLUG 2010: We'll be there
Fri, Aug 27th 2010 30
dojo and Notes: Article 8 - dijit.Dialog - Modal dialogs with AJAX
Fri, Aug 13th 2010 164
ILUG 2010: We'll be there
Fri, Aug 13th 2010 52
dojo and Notes: Article 7 - dojo.fx.Toggler - Save the Object State
Fri, Jul 30th 2010 75
A Classic Lotus Domino Web Development Mystery
Thu, Jul 29th 2010 216
2 SSJS libs, one XPage and a Mystery
Thu, Jul 22nd 2010 153
Critical Windows-LNK-Vulnerability
Wed, Jul 21st 2010 164
Top 10
New version of the NSD analysis tool
Thu, May 15th 2008 299
dojo and Notes: Article 1 - Motivation and "Hello World" sample
Mon, Jun 7th 2010 220
A Classic Lotus Domino Web Development Mystery
Thu, Jul 29th 2010 216
Compatibility between Domino 8.5.1 and BES 4.1.7 is confirmed
Mon, Dec 7th 2009 214
dojo and Notes: new article series
Thu, May 20th 2010 197
Full text search message "Query is not understandable"
Wed, May 5th 2010 194
Internet Explorer 8 can massively slow down Notes 8
Fri, Aug 28th 2009 164
Critical Windows-LNK-Vulnerability
Wed, Jul 21st 2010 164
dojo and Notes: Article 8 - dijit.Dialog - Modal dialogs with AJAX
Fri, Aug 13th 2010 164
Quick Tip: Simple Excel export from Domino Web applications
Sat, Jul 17th 2010 155


Assonos Blog
Blog Title assonos blog
Blog Description Rund um IBM Lotus Notes/Domino und das Leben
Blog URL http://www.assono.de/blog/
RSS Feed http://www.assono.de/blog/stories.xml?OpenAgent&lang=en
Validate Feed feedvalidator.org or validator.w3.org
Feed Last Checked Sep 02, 2010 6:28:41 PM EST. Realtime Update:
Languageen
Landed Here Dec 10, 2007
Location
Posts: # / 1st / Latest - -
Total Hits 5,654. myPL RSS Selections: 80


Recent Blog Posts
30


NLLUG 2010: We'll be there
Fri, Aug 27th 2010 12:26p   Thomas Bahn
We've been invited to host two sessions at this year's NL Lotus User Group (NLLUG) "Get Social 2010" Conference, September 9th - 10th, in the Amsterdam ArenA: DEV03 - Get up to Speed with Object-Oriented Programming in LotusScript Speaker Thomas Bahn Date Th. 9 September Language English (EN) Slot 16:15-17:00 Track DEV Room L4KP Any objections against objects? Never visited classes about classes? Is abstraction still too abstract for you? Or don't you know how to use methodic methods a [read] Keywords: lotus lotusscript xpages applications javascript oop properties
164


dojo and Notes: Article 8 - dijit.Dialog - Modal dialogs with AJAX
Fri, Aug 13th 2010 11:28a   Bernd Hort
While the last article in this dojo series was only a small modification we will cover dijits in this one. Dijits are GUI elements and the name come from dojo interface widgets = dijit. From the many possible dijits we choose the dijit.Dialog for our sample. The dijit.Dialog object creates a modal dialog. One way of using a dijit.Dialog is to invoke it with a DOM node as content. Another more interesting way of using it is to specify an URL. The content of this URL is then loaded via AJAX. A [read] Keywords: domino notes ajax application applications css database dojo interface javascript server widgets
52


ILUG 2010: We'll be there
Fri, Aug 13th 2010 6:26a   Bernd Hort
We are pleased to present the following session at ILUG 2010: dojo and Notes Speakers: Bernd Hort Track: Development dojo is the JavaScript framework chosen by IBM to be used in XPages. This alone makes it worth a look. Beside this it is very powerful. To add "Drag&Drop" to your application is just three lines of code. Using a Date picker is just a HTML attribute added to the input element. And there are tons of other useful stuff. The best thing is that you can use it today in your st [read] Keywords: domino ibm ilug lotus notes xpages application development dojo javascript
75


dojo and Notes: Article 7 - dojo.fx.Toggler - Save the Object State
Fri, Jul 30th 2010 10:33a   Bernd Hort
Those who have tried the example from last weeks article might have noticed a little something. When you first click on the session title, the session description while come visible. Then clicking again on the session title "apparently" nothing happens. The code behind the onClick event was just for opening the session description. Because it is already open, there is only a brief flicker to be seen. We will adjust the code so that the function remembers the current state and either displays or [read] Keywords: domino notes database dojo javascript properties
216


A Classic Lotus Domino Web Development Mystery
Thu, Jul 29th 2010 7:34a   Arnd Koch
In classic Lotus Domino Web development (without XPages) using non-7 bit-ASCII characters in field names can lead into problems, because Domino encodes such names into cryptic strings inside the HTML page. In some cases, i.e. for client side validation of fields using JavaScript in the browser, it is nearly impossible to get the original fields name off the encoded one. The easiest way would be to pre-calculate the encoded names in the Domino back-end and generate the needed JavaScript code befo [read] Keywords: domino lotus notes xpages development javascript server
153


2 SSJS libs, one XPage and a Mystery
Thu, Jul 22nd 2010 9:25a   Thomas Bahn
At times, I spend waste a lot of time due to my stubbornness, when something that should work, doesn't work. This time, the problem (at its core) involved only two server-side JavaScript script libraries and one XPage. First II wrote a SSJS commonUtils.jss, which creates an objects de.assono.commonUtils with a method getView(db, viewName). Then I developed a second library myViewUtils.jss, which in turn creates the object de.assono.myViewUtils. In order to use the first library, I import [read] Keywords: ibm lotus database javascript server xml
164


Critical Windows-LNK-Vulnerability
Wed, Jul 21st 2010 11:25a   Marcus Ley
On July 16th Microsoft published Security Adisory (2286198) concerning a vulnerability on windows systems from XP to 7. All versions are affected including the server derivates. The vulnerability exists because Windows parses shortcuts in such a way that malicious code can be executed. It is possible to load malicious software using a prepared LNK or PIF file. It is not required to open an infected file. Displaying the link in Windows Explorer or any other graphical file browser (e.g. Total [read] Keywords: desktop microsoft network security server virus




155


Quick Tip: Simple Excel export from Domino Web applications
Sat, Jul 17th 2010 6:24a   Thomas Bahn
At times you want to export documents from a Domino Web application in order to work with the data in a spreadsheet like Microsoft Excel, to prepare, process and visualize the information. A simple, but flexible way is to write an LotusScript agent in the Web app, which "prints" a HTML table: Sub Initialize() Print |Content-Type:application/vnd.ms-excel| Print |Content-Disposition: Attachment; filename="exportToExcel.xls"| Print || Print || Prin [read] Keywords: agent domino lotusscript application applications microsoft
55


Fix Pack 2 for Domino 7.0.4
Fri, Jul 16th 2010 9:25a   Marcus Ley
Almost one year after the latest Fix Pack for Domino Server 7.0.4 IBM released a second Fix Pack on June 30 2010. According to IBM it addresses a limited number of low-risk fixes. An interesting point is the fix of problems concerning the LotusScript-Commands GetDocumentByKey and GetAllDocumentsByKey (see Blogentry of June 03 2010). The error occured in version 7.0.4 and persisted up until version 8.5.1 where it was fixed via Fix Pack 3. See Technote SPR CSCT836HFL. Download options See Technot [read] Keywords: domino ibm ldd lotus lotusscript notes server
94


dojo and Notes: Article 5 - dojo.fx -Animation
Thu, Jul 15th 2010 10:24a   Bernd Hort
In the last article I introduced dojo.query(). In this one we will actually use dojo.query() also. But this time in combination of the dojo.fx package, which brings functions to animate elements in a web page. Specially in dynamic web applications, where elements appear only when they are needed or after the have been loaded, animations helps the user to notice the change. Instead of making an element just visible in a blink it is better to smoothly fade it in. Actually we start in our sampl [read] Keywords: notes application applications css database dojo javascript
34


QuickTip: Nested Bookmarks in the Activities plug-in in the Notes client
Thu, Jul 8th 2010 11:24a   Thomas Bahn
To structure activities in the Activities plug-in in the Standard Notes client, you can use sections. In the sections you can add entries and to do items. An entry may contain one or more bookmarks and/or files. Only if an entry contains exactly one bookmark, you can open the referenced Web site directly with a double click; adding more than one bookmark to an entry leads makes them inconvenient to use. All this results in very, very long lists of bookmarks and heavy use of the search fun [read] Keywords: connections notes notes client
99


dojo and Notes: Article 3 - dojo.query() using CSS selectors
Fri, Jul 2nd 2010 9:24a   Bernd Hort
The last article dealt primarily with the presentation of the sample application and with the first step in that direction. Today we cover dojo.query(), which is pretty much the most important and most powerful method in the dojo toolkit. Simply put, dojo.query() returns a set of HTML DOM nodes that satisfy a given CSS selection. The ingenious thing is that we can use CSS-3 queries in browsers which do not support CSS-3 natively. Supported CSS selectors are class selectors, e.g., ".foo" node [read] Keywords: notes application css dojo javascript
104


dojo and Notes: Article 3 - Use case "SpeedAgendaing" and the first step
Sat, Jun 26th 2010 6:30a   Bernd Hort
In the last article we covered the parts of dojo. Before we finally get into the use of dojo in Lotus Notes applications, I will briefly introduce the sample application, which I will use in this article series. I originally developed it for the EntwicklerCamp. Rudi Knegt, the driving force behind the EntwicklerCamp and the AdminCamp, came two or three years ago with the idea of SpeedAgendaing. On the morning of every conference day each speaker has short time to promote his session. For my Spe [read] Keywords: domino lotus notes notes client xpages ajax application applications css development dojo javascript profile
104


dojo and Notes: Article 2 - Introduction to dojo
Fri, Jun 18th 2010 11:28a   Bernd Hort
After I covered the mandatory "Hello World" sample in my last dojo article I want to introduce the parts of dojo in this one. dojo consist of three parts. In the core part of dojo there is also the base part, which provides a lot of functionality. The base is the "dojo.js" file. Compressed the file has only 30k. Browser recognitionJSON encoding / decodingPackages loading EventhandlingAnimation effectsAJAXCSS utilitiesOOP Firebug integrationFor 30k there is a lot of functionality in there. [read] Keywords: domino ibm lotus notes ajax application css dojo integration interface javascript oop server widgets wiki
63


Kaspersky blocks dojo JavaScript file
Mon, Jun 14th 2010 6:25a   Bernd Hort
After my last dojo-Article - "Motivation and 'Hello World' sample" a colleague called, that he could not see the three calendars in the embedded iframe. Instead he only saw three plain input fields. Screenshot dojo calendar: After doing some research and some trial and error we figured out that the anti-banner component from the Kaspersky suite blocked the JavaScript file "popup.js". If blocking a file named "popup.js" really stops somebody who wants to annoy their users with a popup [read] Keywords: dojo javascript
220


dojo and Notes: Article 1 - Motivation and "Hello World" sample
Mon, Jun 7th 2010 6:30a   Bernd Hort
As announced, the first article from the dojo-article series. Before we deal with the actual technology, first the question "why"? There are a number of alternatives. So why should we use dojo as "our" JavaScript Framework? OpenSource That dojo is open source is certainly not a unique feature. Many of the JavaScript frameworks are also open source. However, dojo is used by AOL, IBM, Cisco, Sun and others, and supported by them. Wide browser support Anyone who has ever tried to get a s [read] Keywords: ibm notes applications css dojo javascript server
197


dojo and Notes: new article series
Thu, May 20th 2010 9:26a   Bernd Hort
When I lately did my presentation from the EntwicklerCamp "dojo and Notes" internally, I got the idea to write a little series of articles about dojo and Notes. In the coming weeks I will introduce a dojo technique briefly with an example. All examples are a) available for download and b) could be used in Lotus Notes web applications prior to version 8.5. I will use this blog entry to write a table of the contents. So it pays to bookmark this page. dojo article 1 - Motivation and "Hello Wor [read] Keywords: lotus notes ajax applications dojo javascript
194


Full text search message "Query is not understandable"
Wed, May 5th 2010 11:26a   Bernd Hort
We all love Lotus Notes for its RAD flexibility. But sometimes Notes has a memory like an elephant. A customer had recently a problem with the full text search. Early in the project a field in one of the Notes forms had been defined as a number field. Later they changed the field type to text. No big deal until a user tried to make a full text search specially for this field. The following message came as quite a surprise. The search string FIELD fieldname= "Value" was correct. I [read] Keywords: ldd lotus notes application database
80


BLUG 2010: Advanced JavaScript
Wed, Mar 31st 2010 1:24p   Thomas Bahn
BLUG 2010 is over. A really great day with lot of content and contacts. I held my session "Advanced JavaScript". Here are the slides of my presentiation (including the 35 slides, I removed for the session, because I only had 60 minutes): AdvancedJavaScript.pdf (1,456 KB) [read] Keywords: javascript
43


BLUG 2010 - We'll be there
Fri, Mar 12th 2010 7:23a   Thomas Bahn
[read] Keywords: lotus applications javascript
100


Synchronize contacts with LotusLive
Sun, Feb 28th 2010 8:23a   Manuel Nientit
[read] Keywords: lotus notes application eclipse xml
122


LotusLive can do instant messaging
Fri, Feb 12th 2010 9:23a   Manuel Nientit
[read] Keywords: lotus notes noteslotus sametime community email instant messaging password server
106


Webcast: Lotusphere 2010 Opening General Session
Wed, Feb 3rd 2010 9:25a   Thomas Bahn
[read] Keywords: ibm lotusphere lotusphere2010
21


Lotusphere 2010 - We'll be there
Wed, Jan 27th 2010 11:07a   Thomas Bahn
[read] Keywords: domino ibm lotus lotusphere lotusphere2010 lotusscript notes xpages applications eclipse java javascript oop server
45


BlackBerry Client for Lotus Connections 2.3 and Quickr 1.0
Wed, Jan 27th 2010 11:07a   Thomas Bahn
[read] Keywords: collaboration connections ibm lotus lotusphere quickr application applications blackberry enterprise integration profile
88


Abstract classes concrete
Thu, Dec 17th 2009 12:55p   Thomas Bahn
[read] Keywords: lotusscript java
214


Compatibility between Domino 8.5.1 and BES 4.1.7 is confirmed
Mon, Dec 7th 2009 11:55a   Manuel Nientit
[read] Keywords: domino ibm lotus bes blackberry rim
14


LotusLive Engage and LotusLive Connections 1.1 announced
Tue, Nov 24th 2009 5:55a   Thomas Bahn
[read] Keywords: collaboration connections ibm inotes lotus sametime enterprise
18


New project on OpenNTF.org: assono Password-Safe
Fri, Oct 30th 2009 12:06p   Thomas Bahn
[read] Keywords: administration document forms notes notes client application database openntf password security
46


New and cheaper: IBM LotusLive for Enterprises
Tue, Oct 27th 2009 11:00a   Thomas Bahn
[read] Keywords: collaboration connections domino ibm inotes lotus notes quickr sametime community enterprise instant messaging networking server
40


Lotus Quickr elements blocked by Kaspersky
Mon, Oct 26th 2009 9:59a   Marcus Ley
[read] Keywords: domino ibm javascript lotus quickr richtext firefox java security server wiki
11


New project on OpenNTF.org: assono Framework 2
Tue, Oct 20th 2009 7:58a   Thomas Bahn
[read] Keywords: lotusphere lotusphere2008 lotusscript archive oop openntf
11


Downloading Lotus Notes and Domino 8.5.1...
Mon, Oct 12th 2009 2:55a   Thomas Bahn
[read] Keywords: domino lotus notes noteslotus
11


Lotusphere 2010 registration - open or not?
Thu, Oct 1st 2009 3:55p   Thomas Bahn
[read] Keywords: ibm lotus lotusphere
117


Strange error messate
Thu, Sep 17th 2009 12:56p   Bernd Hort
[read] Keywords: agent domino lotus lotusscript notes database server
24


Diskussions-Datenbank in Notes 8.5.1
Sat, Sep 5th 2009 4:55p   Thomas Bahn
[read] Keywords: domino ibm lotus notes notes client template traveler xpages database properties
10


IBM Lotus Connections 2.5 available
Fri, Aug 28th 2009 4:53a   Thomas Bahn
[read] Keywords: connections ibm lotus community integration mobile
164


Internet Explorer 8 can massively slow down Notes 8
Fri, Aug 28th 2009 4:53a   Arnd Koch
[read] Keywords: ibm ldd lotus notes notes client email microsoft networking security
7


Lotus Knows IdeaJam is over
Sat, Aug 22nd 2009 8:57a   Thomas Bahn
[read] Keywords: lotus noteslotus community ideajam ideajam.net
112


Quick Tip: Lotus Symphony portable
Fri, Aug 21st 2009 12:58p   Thomas Bahn
[read] Keywords: ibm ldd lotus symphony application applications microsoft office properties
4


Lotus Knows IdeaJam is running... come and join, too!
Thu, Aug 20th 2009 6:00p   Thomas Bahn
[read] Keywords: ibm lotus noteslotus applications ideajam ideajam.net
24


Domino - sticking Worlds together with Perl
Thu, Aug 20th 2009 5:53a   Arnd Koch
[read] Keywords: domino lotus database java password server
5


Lotus Knows IdeaJam has been started
Wed, Aug 19th 2009 7:53a   Thomas Bahn
[read] Keywords: lotus noteslotus ideajam ideajam.net
98


Quick Tip: @LocationGetInfo - undocumented, but useful
Tue, Aug 18th 2009 1:53p   Thomas Bahn
[read] Keywords: dblookup document formula formula language ibm lotus lotusscript notes notes client server
6


We are OpenNTF Alliance members now
Thu, Aug 13th 2009 4:56a   Thomas Bahn
[read] Keywords: domino ibm lotus notes applications community openntf
5


Respect
Tue, Aug 11th 2009 6:53p   Bernd Hort
[read] Keywords: wiki
50


Ye118w Day: Views with design elements
Tue, Aug 11th 2009 6:53a   Thomas Bahn
[read] Keywords: acl agent designer document domino forms formula ibm ldd lotus lotusscript notes notes client database java server wiki
79


SnTT: OnChange-Event for fields in the Notes Client
Thu, Aug 6th 2009 12:52p   Bernd Hort
[read] Keywords: designer javascript lotusscript notes notes client rich text show-n-tell sntt
30


JavaScript: parseInt() with leading zeros
Fri, Jul 10th 2009 5:59a   Bernd Hort
[read] Keywords: javascript application google
117


SSL Certifcate with 2048 key length on a Domino 7.0.3
Fri, Jun 26th 2009 3:55a   Bernd Hort
[read] Keywords: admin domino ibm lotus template database server wiki
21


SnTT: Performance considerations for Instr
Thu, Jun 11th 2009 10:52a   Bernd Hort
[read] Keywords: lotusscript show-n-tell sntt application
5


We couldn't find a hammer...
Wed, May 20th 2009 5:52a   Thomas Bahn
[read] Keywords:
11


JavaScript in the Notes client causes crashes
Mon, May 11th 2009 10:53a   Bernd Hort
[read] Keywords: document javascript notes notes client sntt
70


NotesHound and concurrent Notes installations
Sun, Feb 15th 2009 7:50a   Thomas Bahn
[read] Keywords: lotus lotusscript notes notes client R5 sntt interface oop
7


IBM Lotus Notes and Domino 8.5 are available
Tue, Jan 6th 2009 4:01a   Thomas Bahn
[read] Keywords: domino ibm lotus notes noteslotus
12


Press: assono in Businessland, edition 02.2008
Mon, Jan 5th 2009 10:55a   Thomas Bahn
[read] Keywords: nd
8


Lotusphere 2009 - We'll be there
Fri, Dec 19th 2008 8:52a   Thomas Bahn
[read] Keywords: designer domino ibm javascript lotus lotusphere lotusphere2009 lotusscript notes xpages applications java oop server
6


7 Things IT Managers Should Know About Lotus Notes
Tue, Dec 16th 2008 4:52p   Thomas Bahn
[read] Keywords: domino lotus notes notes client noteslotus application applications development enterprise server
30


Using smbmount to mount a Windows share in Linux
Sat, Dec 13th 2008 8:51a   Thomas Bahn
[read] Keywords: domino archive linux password server vm ubuntu
18


SnTT: Is database design hidden
Thu, Oct 23rd 2008 5:50a   Bernd Hort
[read] Keywords: dxl lotusscript notes show-n-tell sntt application applications database
9


IBM Lotus Notes and Domino 8.0.2 English available
Tue, Aug 26th 2008 3:48a   Thomas Bahn
[read] Keywords: domino ibm lei lotus notes noteslotus enterprise server
10


Ye118w Day: Sideshelf-enable your Notes app (without Java)
Mon, Aug 11th 2008 8:53a   Thomas Bahn
[read] Keywords: document notes java
9


New Hope: iPhone - Domino - push mail solution coming into reach?
Thu, Jul 31st 2008 1:52p   Thomas Bahn
[read] Keywords: domino ibm lotus apple applications iphone server
7


SnTT: Run Actions Continuously
Thu, Jul 24th 2008 10:50a   Bernd Hort
[read] Keywords: show-n-tell sntt wiki
5


Nathan "Flutebox" Lee and Beardyman @ Google, London
Sun, Jul 6th 2008 6:51a   Thomas Bahn
[read] Keywords: application google
67


SnTT: Create date values without time information via LotusScript
Thu, Jul 3rd 2008 4:09a   Bernd Hort
[read] Keywords: document lotusscript show-n-tell sntt
8


Quick Tip: Open application always in new window
Wed, Jul 2nd 2008 9:44a   Thomas Bahn
[read] Keywords: notes notes client application database properties
3


ILUG 2008: simply - OOP - simply
Tue, Jun 10th 2008 8:22p   Thomas Bahn
[read] Keywords: ilug notes database oop
5


Find music you like
Sun, May 18th 2008 8:04a   Thomas Bahn
[read] Keywords:
10


Sametime Essentials for Sametime Supporters (and Admins)
Fri, May 16th 2008 7:00p   Thomas Bahn
[read] Keywords: administration ibm lotus sametime community security server
299


New version of the NSD analysis tool
Thu, May 15th 2008 7:00p   Thomas Bahn
[read] Keywords: domino ibm ldd lotus notes notes client noteslotus nsd database server
4


Quote of the day
Thu, May 15th 2008 4:46p   Thomas Bahn
[read] Keywords: domino lotus notes wiki
4


Video about the benefits of IBM Lotus Sametime
Wed, May 14th 2008 1:24a   Thomas Bahn
[read] Keywords: ibm lotus notes sametime application integration
10


Quick-Tipp: $DontAutoProcessURL verhindert automatisches Erstellen von URL-Hotspots
Tue, May 13th 2008 4:04p   Thomas Bahn
[read] Keywords: ibm notes richtext template blogSphere
53


SnTT: Kölner Phonetik - better than Soundex?!
Sat, May 10th 2008 4:27a   Thomas Bahn
[read] Keywords: domino formula formula language lotusscript sntt php
6


Performance basics for IBM Lotus Notes developers
Fri, May 9th 2008 11:46a   Thomas Bahn
[read] Keywords: formula ibm ldd lotus notes database profile
7


Introducing a revolutionary software platform... LND
Thu, Apr 24th 2008 8:28a   Thomas Bahn
[read] Keywords: document domino ibm lotus notes noteslotus apple application applications blogging community eclipse firefox instant messaging linux macintosh microsoft mobile network office security server
6


JAX 08: 5 rules for a better software architecture
Wed, Apr 23rd 2008 12:27p   Thomas Bahn
[read] Keywords: java php
9


JAX 08: 5 rules for a better software architecture (Update)
Wed, Apr 23rd 2008 12:16p   Thomas Bahn
[read] Keywords: java php
12


JAX 08: 20 Basic Concepts of Software Architecture
Wed, Apr 23rd 2008 5:45a   Thomas Bahn
[read] Keywords: application eclipse exchange exchange java linux php xml
13


JAX 08: Groovy, a successful dynamic language for the JVM
Wed, Apr 23rd 2008 5:24a   Thomas Bahn
[read] Keywords: application applications eclipse integration java office oracle php properties security sql xml
5


JAX 08: Ruby - Programming Language of the Future
Wed, Apr 23rd 2008 5:24a   Thomas Bahn
[read] Keywords: community java php properties python vm
6


JAX 08: Keynote - The Future of Enterprise Java
Tue, Apr 22nd 2008 5:22a   Thomas Bahn
[read] Keywords: ibm application community competitive enterprise java microsoft oracle php profile server websphere xml
6


Security vulnerabilities in Lotus Notes file viewers
Sat, Apr 12th 2008 9:02a   Thomas Bahn
[read] Keywords: ibm , lotus , notes , security
17


Noteshound Class Navigator now separately available
Wed, Apr 9th 2008 9:54a   Thomas Bahn
[read] Keywords: domino , lotus , lotusscript , script library , development , oop
105


LotusScript: CopyToDatabase screws up NotesDocument.Responses
Fri, Mar 28th 2008 5:15a   Bernd Hort
[read] Keywords: agent , document , lotus , lotusscript , notes , application , bug , database
7


ILUG 2008: We'll be there
Wed, Mar 5th 2008 5:04p   Thomas Bahn
[read] Keywords: ilug , lotusscript , development , oop , properties
51


Java: Option -jar ignores classpath
Wed, Mar 5th 2008 3:34a   Bernd Hort
[read] Keywords: agent , notes , application , database , google , java
7


IdeaJam - a great idea
Thu, Feb 28th 2008 9:33a   Thomas Bahn
[read] Keywords: ibm , ilug , lotus , community , email , ideajam , profile , widget
7


Lotusphere 2008 Podcasts download helper
Sat, Feb 16th 2008 10:06a   Thomas Bahn
[read] Keywords: lotusphere , lotusphere2008 , lotusscript , application , archive , email , password
6


Lotussphere 2008 - OGS in 60 seconds
Wed, Feb 6th 2008 11:48a   Thomas Bahn
[read] Keywords: ibm , lotusphere
10


Phyllanthus axillaris - only pretended to pretend
Tue, Feb 5th 2008 6:19p   Thomas Bahn
[read] Keywords: wiki
14


From Microsoft Outlook 2008 to IBM Lotus Notes 8
Mon, Feb 4th 2008 5:53p   Thomas Bahn
[read] Keywords: ibm , lotus , notes , microsoft , outlook
9


Lotusphere 2008 - AD311 - Object Oriented Programming with Lotusscript – Take It To the Next Level
Thu, Jan 24th 2008 5:36p   Bernd Hort
[read] Keywords: lotusphere , lotusscript , database , oop
8


All texts form Notes - including error messages
Tue, Jan 22nd 2008 6:16p   Thomas Bahn
[read] Keywords: acl , lotus , notes , notes client , template , database
18


SnTT: Configuration documents - fast and reliable
Tue, Jan 22nd 2008 6:00p   Thomas Bahn
[read] Keywords: dblookup , document , forms , notes , sntt , application , applications , database , profile
12


SnTT: How does replication work
Mon, Jan 21st 2008 9:38p   Thomas Bahn
[read] Keywords: domino , notes , sntt , server
13


OOP in LS: Use of Controller Classes / Separation of Front end and Back end
Sat, Jan 19th 2008 10:50p   Bernd Hort
[read] Keywords: lotus , notes , oop
42


OOP in LS: MVC in Lotus Notes
Sun, Jan 13th 2008 1:31p   Bernd Hort
[read] Keywords: agent , lotus , lotusscript , notes , script library , integration , oop , server
31


OOP in LotusScript - Why should you care?
Mon, Jan 7th 2008 3:26p   Bernd Hort
[read] Keywords: document , formula , formula language , lotus , lotusscript , notes , script library , application , applications , development , email , java , oop , properties




Created and Maintained by Yancy Lent - About - Blog Submission - Suggestions - Change Log - Blog Widget - Advertising - FAQ - Mobile Edition