Hi All,
I was wondering if anyone new how to access the field from an underlying form in a dialog box. In other words, on a form I have a field (say called “fieldName”) and from this form, I open a dialog box…
@DialogBox( “newDialobBoxName” ; [AutoHorzFit] : [AutoVertFit] : [NoNewFields]; “New Dialog Box” );
@Command([ViewRefreshFields])
… I would like to do something like this…
Sub Click(Source As Button)
Dim workspace As New NotesUIWorkspace
Messagebox(workspace.CurrentDocument.FieldGetText(“fieldName”))
End Sub
Any ideas out there?
Thanks,
Ryan