Subject: | Re: general protection violation
| Date: | Fri, 22 May 2020 17:57:20 +1000
| From: | Tom Krieg <REMOVEtomkCAPITALS@sdassociates.com.au>
| Newsgroups: | pnews.paradox-programming
|
It's a documented limitation of Paradox. Forms and Libraries shouldn't
approach 1MB and individual methods shouldn't approach 32K. I've
overcome this limitation by breaking larger methods into smaller ones
and having a Main method. Call the smaller ones from the Main. I ensured
that forms and libraries didn't exceed 500KB and methods didn't exceed
16K. To make sure. copy and paste your method into notepad and save the
text file. Then see how large the file is.
On 22/05/2020 4:52 pm, modridirkac wrote:
> What are the sizes of forms and libraries?
>
> I've had a lot of problems with forms with size over 1Mb.
> And with libraries, if single method had over 32kb of code.
>
> J.
|