Here is a function from Data Moving Animal:
Function getForms( dbTarget As NotesDatabase ) As Variant
'Returns the list of Forms in the db
Dim varForms As Variant
Dim arrayForms() As String
Dim i As Integer, intElements As Integer
varForms = dbTarget.Forms
If Isarray( varForms ) Then
intElements = Ubound( varForms )
Redim arrayForms( intElements )
i=0
Forall form In varForms
arrayForms(i)=form.Name
i = i+1
End Forall
Else
Redim arrayForms(0)
End If
getForms = arrayForms
End Function
So looks like you should try database.Forms, not database.getForms() if you are using LS.