Here are some more of Jon's changes. All will appear in the next release.
———————
In Index.ntf - Contact Form - Postopen Event - removed all code. This was leftover Formula Language stuff which should all be unnecessary now.
———————
In Index.ntf - Contact Form - Querysave Event - replaced Call fBuildAssociations(…)
'JES 4/7/05 - updated so the Associations field is actually updated <br/>
'Call fBuildAssociations(Source.Document) <br/>
<br/>
Dim doc As NotesDocument <br/>
Set doc = Source.Document <br/>
doc.Associations = fBuildAssociations(Source.Document) <br/>
———————
In Index.ntf - Organization Form - Postopen Event - removed all code. Same reason as above.
———————
In Index.ntf - Organization Form - Querysave Event - - replaced Call fBuildAssociations(…)
'JES 4/7/05 - updated so the Associations field is actually updated <br/>
'Call fBuildAssociations(Source.Document) <br/>
<br/>
Dim doc As NotesDocument <br/>
Set doc = Source.Document <br/>
doc.Associations = fBuildAssociations(Source.Document) <br/>
———————
In Config.ntf - CratchitCommonLibrary - fBuildAssociates - replaced 'Case "Person"'
'JES 4-07-05 - modified to accomodate "Contact" alias <br/>
'Case "Person" <br/>
Case "Contact" <br/>
Redim tmp_fields(1)