15 pts.
 Check the Rich Text Fields in Lotus Notes Database
First Question: I create two fields, one text field for input the name of the file and another Rich Text Field for file attachment. I want to check the file name attach match with the file name field. If they don't mach, will give an error message to the user when user click Install Button Second Question: How do I check the null value of Rich Text Fields, If they are null, will give an error message to the user when user click Install Button

Software/Hardware used:
ASKED: April 23, 2008  3:56 PM
UPDATED: April 24, 2008  11:36 PM

Answer Wiki:
Using Formula language compare your text field value to the attachment name @IF(@Uppercase(YOUR_TEXT_FIELD_NAME) != @UPPERCASE(@AttachmentNames);@FALSE;@TRUE)
Last Wiki Answer Submitted:  April 24, 2008  1:19 pm  by  Jellybean   405 pts.
All Answer Wiki Contributors:  Jellybean   405 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

Thank you for your answer. I did try it but it doesn’t work because I have five text fields and 5 Rich text fields. If you don’t specify which field attachnment and which text field, how can they know

Thanks

Hoa

 15 pts.