Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

reload Form in Composite Application

Status
Not open for further replies.

zoro07

Technical User
Dec 7, 2010
1
0
0
BE
I have a Composite Application with an outline navigator.
I would like to make an action button on a form to reload that same form in the composite application.
In Lotusscript I made the following :

Sub Click(Source As Button)
Dim doc As NotesDocument
Dim uiDoc As NotesUIDocument
Dim workspace As New NotesUIWorkspace
Set uidoc = workspace.CurrentDocument
Set doc = uidoc.Document
doc.SaveOptions = "0"
Call uidoc.Close (True)
Call workspace.ComposeDocument( "", "", "foto" )
End Sub

This works fine when run in the form seperately but not when run in the Composite Application.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top