I have a subform with 4 fields that must be entered, plus the key field that is automatically computed. I cannot get the subform to save when I click the OK button. I don’t use much LotusScript and I’m copying some code. Can you tell me what the True and False parameters mean in the code below. The code is in a button on the main form and it calls up the subform (named Materials) in a dialog box.
Thanks!
Sub Click(Source As Button)
Dim Session As New NotesSession
Dim uiWorkspace As New NotesUIWorkspace
Dim uidoc As NotesUIDocument
Set uidoc = uiWorkspace.CurrentDocument
flag = uiWorkspace.DialogBox( "Materials" , True , True , False , True ,True , False , "Describe Material Used" )
Call uidoc.refresh
End Sub