|
: 72 : 84 : 12 |
When I create new lotuscript agents, I want a default set of code to drop in. Not just "option declare" but I may want to predefine some things that I use nearly every time I write an agent.
Some examples I might use:
use "myStandardUtilityLibrary"
Dim session as new notessession
Dim thisDb as notesdatabase : set thisDB = session.currentDatabase
Dim docCon as notesDocument : set docCon = session.documentContext
Dim crlf as String : crlf = chr$(13) & chr$(10)
I may even want to pre-define functions (Yeah, I know a lotuscript library would be great).
|