Hello,
My parent class is a form(TParent) ,here's the code:
type
TChild = class(TParent)
private
procedure Handle(sock:integer);static; //error
end;
implementation
The error is "STATIC can only be used on non-virtual methods"
Is there any possible way of doing this?
If not, can I make the Parent Class(TForm) static?
The TParent class is a form used for WSAAsyncSelect() and it's hidden(its not the main form).It's only used for the message loop.