Jump to content

LotusScript: Difference between revisions

From EDM2
No edit summary
No edit summary
Line 1: Line 1:
An embedded [[object-oriented]] [[Basic]] like scripting language used by [[Lotus Corporation]] (Later [[IBM]]) as the default scripting language on all of their software products. The language has in particular a large number of objects available for use with [[Lotus Notes]], [[Lotus WordPro]] and [[Lotus 123]], but it is also used on products that commonly interface with Lotus Notes such as [[Domino Server]] and Domino Designer.
An embedded [[object-oriented]] [[Basic]] like scripting language used by [[Lotus Corporation]] (Later [[IBM]]) as the default scripting language on all of their software products. The language has in particular a large number of objects available for use with [[Lotus Notes]], [[Lotus WordPro]] and [[Lotus 123]], but it is also used on products that commonly interface with Lotus Notes such as [[Domino Server]] and Domino Designer.


The language has great similarities to [[Visual Basic]] and [[VisualAge for Basic]].
The core language itself has great similarities to [[Visual Basic]] and [[VisualAge for Basic]] and may even be considered a variation of those, but the object model and the available objects have been adapted for fit the application domain rather than general programming tasks.


==Links==
==Links==
;Introductions
* [http://www-01.ibm.com/support/knowledgecenter/api/content/SSVRGU_9.0.0/com.ibm.designer.domino.main.doc/H_DUMMY_TOPIC_HEAD.html?locale=en LotusScript] - IBM - has a good introduction to the language.
* [http://www-01.ibm.com/support/knowledgecenter/api/content/SSVRGU_9.0.0/com.ibm.designer.domino.main.doc/H_DUMMY_TOPIC_HEAD.html?locale=en LotusScript] - IBM - has a good introduction to the language.
* [https://www.openntf.org/internal/home.nsf/project.xsp?action=openDocument&name=LotusScript%20Gold%20Collection LotusScript Gold Collection] - An open source collection of code, primarily intended for Notes but portions usable for Smartsuite development.
 
* [http://wwwendt.de/tech/md5/ Wendt's MD5 Implementation] - MD5 implemented in LotusScript.
;Tips and code snippets
* [http://www.breakingpar.com/bkp/home.nsf/Category?OpenNavigator&87256B280015193F872571F0000895B0 A collection of LotusScript Tips] - Again primarily intended for Notes but portions should usable for Smartsuite development.
* [http://www.breakingpar.com/bkp/home.nsf/Category?OpenNavigator&87256B280015193F872571F0000895B0 A collection of LotusScript Tips] - Again primarily intended for Notes but portions should usable for Smartsuite development.
* [http://www.hadsl.eu/hadsl.nsf/Vienna_Buchan_Calling%20the%20Notes%20C-API%20from%20LotusScript.pdf Calling the Notes C API from LotusScript] - Presentation from 2006 by Bill Buchan
* [http://www.hadsl.eu/hadsl.nsf/Vienna_Buchan_Calling%20the%20Notes%20C-API%20from%20LotusScript.pdf Calling the Notes C API from LotusScript] - Presentation from 2006 by Bill Buchan
* [http://chc-3.com/pub/tips1.htm Tips for Top-Quality LotusScript] - By Charles Connell
* [http://chc-3.com/pub/tips1.htm Tips for Top-Quality LotusScript] - By Charles Connell
* [http://webcache.googleusercontent.com/search?q=cache:IWc5fbaYHtoJ:www.ovalbusinesssolutions.co.uk/thoughts/using-lists-to-improve-the-efficiency-of-your-lotusscript-code-2+&cd=49&hl=en&ct=clnk&gl=uk Using lists to improve the efficiency of your LotusScript code] - By Matt from [http://www.ovalbusinesssolutions.co.uk/ Oval Business Solutions]


;Code
;Code
* [https://www.openntf.org/internal/home.nsf/project.xsp?action=openDocument&name=LotusScript%20Gold%20Collection LotusScript Gold Collection] - An open source collection of code, primarily intended for Notes but portions usable for Smartsuite development.
* [https://web.archive.org/web/20110712174747/http://blog.lsdoc.org LotusScript.doc] - From Archive.org - Note that while most of the pages are missing from the archive the code download still works. - A tool to create [[HTML]] documentation similar to what [[Javadoc]] does for [[Java]].
* [https://web.archive.org/web/20110712174747/http://blog.lsdoc.org LotusScript.doc] - From Archive.org - Note that while most of the pages are missing from the archive the code download still works. - A tool to create [[HTML]] documentation similar to what [[Javadoc]] does for [[Java]].
* [https://www.abc.se/~m9071/lss/ A library of LotusScript classes] - By Daniel Eriksson.
* [https://www.abc.se/~m9071/lss/ A library of LotusScript classes] - By Daniel Eriksson.
* [http://wwwendt.de/tech/md5/ Wendt's MD5 Implementation] - MD5 implemented in LotusScript.


==Publications==
==Publications==

Revision as of 04:39, 12 January 2016

An embedded object-oriented Basic like scripting language used by Lotus Corporation (Later IBM) as the default scripting language on all of their software products. The language has in particular a large number of objects available for use with Lotus Notes, Lotus WordPro and Lotus 123, but it is also used on products that commonly interface with Lotus Notes such as Domino Server and Domino Designer.

The core language itself has great similarities to Visual Basic and VisualAge for Basic and may even be considered a variation of those, but the object model and the available objects have been adapted for fit the application domain rather than general programming tasks.

Links

Introductions
  • LotusScript - IBM - has a good introduction to the language.
Tips and code snippets
Code

Publications