
Yes, I have posted this before, but never as a Show-n-Tell.

REM {From Jason Collier (jcollier@sd.synetics.com)}; DateTime := @Created; time := @Time(dateTime); t:= @Text(@Time(time)); t2:=@Left(@Text(@ReplaceSubstring(@Text(@Time(time)); ":" ;"")); 6); h:=@Left(t2;2); s:=@Right(t2;2); m:=@Middle(t2;2;2); AM:=@ReplaceSubstring(@Left(t2;2) ; "12" ;"00"); PM:=@ReplaceSubstring(@Left(t2;2) ; "12" ;"12"); PM2:=@Text(@TextToNumber(h)+12); timecheck:= @If(@Contains(t;"AM"); AM ; @If(@Contains(t;"PM") & @Contains(@Left(t2;2);"12") ; PM ; PM2)); MilTime := timecheck : m : s ; @Text( @Date( DateTime ) ) + "\\" + @Implode( MilTime ; ":" )
@If(Verify = 1; 82; Verify = 0; 81; 162)
.
When editing a LotusScript Calls Configuration there will be help available just as Craig defined. One other feature that I like is the ability to open the output in NotePad or anything else you wish.
The code is very simple until I needed to have LotusScript wait for the execution of LSCalls before it tried to open the output or import the CSV. Ken Yee came to the rescue with ‘ Can you start a program in Notes and wait for it to finish? ‘ from 1998. There was one other gotcha, having to write the command to a batch file and executing the batch file, so if anyone has a better idea let me know.
The LotusScript Calls database is not that fancy but maybe the concept storing and running command type programs from Domino. Enjoy!
Update: I lost the database in my transition to WordPress, so if anyone has it please send it to me, thanks.