Why restricted to 32K for html in Progress ?

Prajan

New Member
Hi All
During my work my html file grew more than 32k. My html file is around 40k. Since due to so I couldn't see my output, its now a blank page. I reduced my html file size but have some problems doing so.
I request to all the progress programmers to help me solve my problem. Can i find any settings in Progress to change the limit size of my html file to 45k ?
I am looking forward to getting a reply from the all programmers. Please help me out for the task.
 

TomBascom

Curmudgeon
Normal character strings are limited to somewhat less than 32k in 4GL code.

If you're on OE10 or higher you can use LONGCHAR instead of character. Otherwise you need to break up your output into smaller chunks.
 
Top