Re: Urgent Help - access violation


Posted by Jean Claude Servaye on October 27, 2000 at 15:03:11:

In Reply to: Urgent Help - access violation posted by Alex on October 27, 2000 at 12:41:41:

If the graphform is created at run time you must do:

GraphForm := TGraphForm.Create(Self);
GraphForm.ShowModal;
GraphForm.Release;

If the GraphForm is created at startup do :

GraphForm.ShowModal;
and don't release it.





Related Articles and Replies: