[Solved] Access Violation While Calling Form’s Method

In your question you left out a very important piece of the puzzle. You’ve mentioned it in comments, but I repeat it here because it’s the direct trigger of your problem. In comments you said the form is created as follows: with TForm1.Create(Self) do begin try ShowModal; finally Free; end; end; Your problem is that … Read more