How to read/convert table designed with HTML on a richtext field

I am designing an agent to intercept a particular incoming mail that has a table built with HTML on the “Body” field. I am to read that table to find out row count as well as data on those cells then process them into a new report. My agent works fine except that I have to edit & save that incoming mail in order for my code to read that table. By Edit & Save that mail, the table is converted to Lotus Notes readable format.

I appreciate any help or suggestion how to deal with this. May thanks in advance.

Subject: How to read/convert table designed with HTML on a richtext field

Check out the ConvertMime property of the NotesSession class.

Syntax

To get: flag = notesSession.ConvertMIME

To set: notesSession.ConvertMIME = flag

Subject: RE: How to read/convert table designed with HTML on a richtext field

Thank Steven. I’ll check it out. Again, thank for your reply.