Opening a Lotus Notes Profile Document in Read Only mode

I needed to display for “regular” users information that was maintained database wide (preferable via a profile form). Although the usual “@Command( [EditProfileDocument] ; formname; uniqueKey )” worked fine for the db admin people to edit/maintain the information, there was Continue reading Opening a Lotus Notes Profile Document in Read Only mode

Q&D Action button to set Date Value with Lotus Notes Formula Language

A quick and dirty way for doing this. No error checking, big assumptions about the input to the prompt being right. 12345nd := @Prompt([OKCANCELEDIT]; "Enter the New Date"; "YYYY/MM/DD."; @Today); @If (nd ="";@Return("");""); y := @Left (nd;"/"); m := @Left(@Right Continue reading Q&D Action button to set Date Value with Lotus Notes Formula Language

Computed and Structured Dblookup in Keyword Formulas to reduce simple mistakes.

Kevin Pettitt aka Lotus Guru has written up a SnTT note on “Standardized and Simple-to-Use Keyword Formulas” where the structured dblookup is computed for you to use in your code. A nice application of the structured dblookup. Given that all Continue reading Computed and Structured Dblookup in Keyword Formulas to reduce simple mistakes.