Change column width
Hi,
I have a classic report based on follow statement:
select
numero,
'<pre><span style="font-family:Courier;font-size:15;font-weight:bolder;color:' || forecolor || '">' || texto || '</span></pre>' as Convertido,
'<pre><span style="font-family:Courier;font-size:15;font-weight:bolder;color:' || forecolor || '">' || texto || '</span></pre>' as Original
from FONTE_SELECT,
ACAO_CONVERSOR
where arquivo_id = :P36_ARQUIVO_ID
and fonte_select.acao_id = acao_conversor.acao_id
I need to change column width and if is possible, create a scroll in these columns. I looked for an idea here, I tried some but it didn't work.
Could you help me?
Ricardo