Richtext Validation

RichText field validation
Sub RT_Valisation()
Dim w As New notesuiworkspace
dim w as new notesuiworkspace
dim uidoc as notesuidocument
set uidoc=w.currentdocument
Dim doc As notesdocument
Set doc=uidoc.document

Dim item As NotesItem
Dim RTSize As Integer
Set item = doc.GetFirstItem( "Body" )
RTSize = Item.ValueLength
(96 is the size of empty rt item)
if RTSize=96 then '
'your input validation goes here
msgbox "Nothing"
else
msgbox RTSize
End If
END Sub

This was first published in November 2000

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.