S
SHIPP
I purchased the FMS suite for 2003 and am using the Memo enhancer. I am
trying to use the following code to save the RTF format as plain text in a
secondary memo field.
Private Sub Form_BeforeUpdate(Cancel As Integer)
'***************************************************************************************
'* PROGRAM : TRN
'* CREATED : 7/27/08
'* COMMENTS : Save the memo field in plain text.
'* PARAMETERS: -
'* RETURNS : -
'* CALLED BY :
'* MODIFIED :
'***************************************************************************************
On Error GoTo HandleErr
Const cstrProcName As String = "sfrmtblTRN - btnSaveTentativeRuling_Click"
Me.TrnHdrPlainText = Me.TrnHdr.Text
Me.TrnDtlPlainText = Me.TrnDtl.Text
ExitHere:
Exit Sub
HandleErr:
Select Case Err.Number
Case Else
MsgBox "Error " & Err.Number & ": " & Err.Description, vbCritical,
cstrProcName
End Select
End Sub
I receive the error "Method or Data Member Not Found" and the .text is
highlighted. I checked my references and FMS Total Access Memo 2002 Control
is checked. What else could be the problem?
trying to use the following code to save the RTF format as plain text in a
secondary memo field.
Private Sub Form_BeforeUpdate(Cancel As Integer)
'***************************************************************************************
'* PROGRAM : TRN
'* CREATED : 7/27/08
'* COMMENTS : Save the memo field in plain text.
'* PARAMETERS: -
'* RETURNS : -
'* CALLED BY :
'* MODIFIED :
'***************************************************************************************
On Error GoTo HandleErr
Const cstrProcName As String = "sfrmtblTRN - btnSaveTentativeRuling_Click"
Me.TrnHdrPlainText = Me.TrnHdr.Text
Me.TrnDtlPlainText = Me.TrnDtl.Text
ExitHere:
Exit Sub
HandleErr:
Select Case Err.Number
Case Else
MsgBox "Error " & Err.Number & ": " & Err.Description, vbCritical,
cstrProcName
End Select
End Sub
I receive the error "Method or Data Member Not Found" and the .text is
highlighted. I checked my references and FMS Total Access Memo 2002 Control
is checked. What else could be the problem?