我需要從Lotus Formula調用Lotus腳本函數。從Lotus公式調用Lotus腳本函數
函數返回結果。我不只是想運行一個不返回任何值的腳本。
這是爲Lotus Notes 7.
例
的LotusScript功能:
Function isName(name As String) as Boolean
if name Is "Danny" Then
isName = true
endif
isName = false
End function
LotusFormula
name := getName("troy")???????
因此,我可以再使用在蓮花式的名稱。
這可能嗎?