Use GreaseMonkey’s persistent data functions as a aged Cache.

GreaseMonkey (Don’t know that GreaseMonkey is the greatest thing since slice bread? See Greasemonkey) has two persistent data function’s, GM_setValue and GM_getValue, which let you set and get values. See Mark Pilgrams excellent Dive Into Greasemonkey : Storing and retrieving Continue reading Use GreaseMonkey’s persistent data functions as a aged Cache.

Validating URL and Email Addresses with regexp in Lotus Notes

I needed to recreate this from scratch, and so I’m documenting this here for the next time. Most of the credit should go to Julian Robichauxand his ls2j examples db, and in particultar the JakartaOroWrapper Library My “invention” involves creating Continue reading Validating URL and Email Addresses with regexp in Lotus Notes

can’t use @ThisName in Hide-When formulas, LOTUS NOTES meta coding FAIL

I had hoped to use the “@ThisName” to get the suffix of the field name “Comment_1” and hide it if the Field “Status_1” is “Pending” by doing this : 1234Suffix := @Right(@ThisName; "_"); EmpListFieldName := "Status_" + Suffix; Status_value := Continue reading can’t use @ThisName in Hide-When formulas, LOTUS NOTES meta coding FAIL

Expanding Group Names for Lotus Domino using LotusScript

I needed to find the people that belonged to a given lotus Notes group. It couldn’t be a simple lookup since other groups can and frequently are also members of a group, so it needed to be be recursive. 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455Function Continue reading Expanding Group Names for Lotus Domino using LotusScript