Hi all, I have a database with a blob field that contains RTF format and I'm trying to get HTML output, I'm using a module from CPAN called RTF::Parser but there doesn't seem to be a lot of docs for it. So, here is the loop that returns output from the SQL statement, can anyone help me get $theblob populated with the converted output? while ( @columns = $cursor->fetchrow ) { @therow = map { $_ } @columns; my $self = $therow[2]; $self = new RTF::HTML::Converter(Output => \$theblob); print "$therow[1]\n$theblob\n", br; } I have checked, the RTF formatted blob is in the $therow[2]. If anyone can point me to the right docs I would appreciate that too. Thanks. -- Scott Taylor Systems Administrator DCT Chambers Trucking Ltd. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]