gibt's sowas wie fieldsettext auch für zahlen??
habe folgende auswahlformel für berechnete subforms:
@If(status="0";"reg";
@If(status="1";"frage1";""))
auf reg ist ein button mit folgendem code:
Sub Click(Source As Button)
Dim workspace As New NotesUIWorkspace
Dim thisdoc As NotesUIDocument
Set thisdoc = workspace.CurrentDocument
Call thisdoc.fieldsettext("status","1")
End Sub
der wert von status wird auch verändert, aber nicht die angezeigte teilmaske...