Function in the form

Hi,How to add a function in the global section of a form.

thanks

Subject: Function in the form

Assuming you mean a LotusScript function I believe you just create it there in Declarations. Alternatively you can create a LotusScript libraryand then enter “Use LibraryName” in the Options section.

Function myFunc(arg as String) As String

myFunc = arg + " other"

End Function