Print .jpg in pdf print

General Help regarding HMG, Compilation, Linking, Samples

Moderator: Rathinagiri

franco
Posts: 821
Joined: Sat Nov 02, 2013 5:42 am
DBs Used: DBF
Location: Canada

Re: Print .jpg in pdf print

Post by franco »

Edk
Very clean, and has some very interesting code.
One question, does the timer build up in memory. I have attached a memory check and it stays the same,
Do you always release memory at end of all programs.
Does release memory release any public or private memory variables.
Great Work.
All The Best,
Franco
Canada
edk
Posts: 914
Joined: Thu Oct 16, 2014 11:35 am
Location: Poland

Re: Print .jpg in pdf print

Post by edk »

Franco, all controls build up some memory ;)
I don't always use the RELEASE MEMORY command, only when some functions may cause RAM leakage, usually when working in a loop or recursively.
It is a matter of experience or analysis of the operation of the program for a long time. Sometimes just in case.
RELEASE MEMEORY does not release any declared variables. Does release allocated memory that is no longer used by some functions in C. http://hmgforum.com/hmgdoc/data/Memory_ ... hreads.htm
Post Reply