Sign up to receive Decoded, a new monthly digest with product updates, feature release info, continuing education opportunities, and more.
Are you are experiencing a similar issue? Get a personalized answer when you ask a related question.
Have a better answer? Share it in a comment.
"Access voilation" means you are accessing address was not allocated to your program.
it often happened when you code that in a function:
in method
procedure TForm1.metho1();
begin
//Form1.property1:=somethi
//Form1.method2();
//something like that!!!
end;
...
var F:TForm1;
F:=TForm1.Create(applicati
F.method1;
it means Form1 is not created but want to call it.