OpenNTF.org - VIC CRM for Notes
VIC CRM for NotesOpenDocument[/Projects/pmt.nsf/ProjectView?ReadForm&Query=]

My Links (Not logged in)
User Name Password
Hosted by Prominic.NET

   Project: VIC CRM for Notes (Managed by Dave Leigh)
Actions:

Hide details for The bugThe bug
Bug ID: NOSS-678NTB
Description
Submitted by:Rob Breault
Project Master Chef:Dave Leigh
Bug type:UI
Brief Description:How do you spell Supres?
Severity:Low
Version20041127
Status:

Details
The word suppress is spelled incorrectly in the Reply form in the Journal DB...


Action taken
Status:Fixed
Implemented in Release:20050515
Fix Details:Need to add "Option Declare" in both Form globals and form objects... and change PO event to:

Sub Postopen(Source As Notesuidocument)
Dim session As New NotesSession
Dim cSuppressSig As String
' Modified 20040915 by Dave Leigh to use CratchitCommonLibrary
If Source.EditMode = True Then
cSuppressSig = session.GetEnvironmentString("CratchitSupressSig")
If cSuppressSig = "" Then
Call sInsertSignature(Source)
Call Source.GotoField("Body")
Else
' Kludge to allow you to suppress adding a signature
Call session.SetEnvironmentVar("CratchitSuppressSig","")
End If
End If
End Sub

Modification history
Entered 30-Nov-2004 11:44 by Rob Breault. Last Modified 15-May-2005 10:30 by Dave Leigh.