LotusScript SwtichForm equiv?

I want to permanently switch a form used to view a document.

Is there a LotusScript method for doing this? I’d like it to be the last thing in a list of other commands I’m doing.

Subject: LotusScript SwtichForm equiv?

Change the FORM field in the document to point to the form you want to use. (Don’t do this while the document is open for edit in the client, as saving it from there will overwrite your change.)

Subject: LotusScript SwtichForm equiv?

Permanently?NotesDocument.form = “new form name”

and the save.

Collin

Subject: RE: LotusScript SwtichForm equiv?

Many thanks