LEdit Version 1.01


Frequently Asked Questions:



Question: I have the LEdit package with the Delphi VCL and entered code into
the OnTimeToLoadText event that causes my program to lock up. Why?

Answer: It is likely that you are setting the Filename property from within
the OnTimeToLoadText event. This cannot be done. If you set the
Filename property in the OnTimeToLoadText event, it will cause your
program to go into an endless loop.

--------------------------------------------------------------------------------

Question: My program that uses one of the LEdit wrappers has developed a
memory leak and I cannot find anything wrong with my code. How can
I fix this?

Answer: When using the Text property in the LEdit wrappers, memory is
allocated to hold the text. We do not free this memory since you may
want to do something else with it. You must free this memory yourself
by calling the BurnHandle method and passing it the memory Handle
returned by the Text property.




