Trying to integrate AsyncCalls into one of my Delphi 7 projects, I haven't yet been able to call a parameterless procedure of a class.
What I want to do:
TMyForm = class(TForm)
private
procedure TestCalculation;
procedure RunTest;
end;
var
TestCall: IAsyncCall;
procedure TMyForm.RunTest;
begin
TestCall := AsyncCall(TestCalculation);
end;
This is not possible, resulting in error E2036 Variable required (This error message occurs when you try to take the address of an expression or a constant.).
It is possible whenever my procedure has parameters like the WaitForItprocedure in this example.
Furthermore it is possible for a LocalAsyncCall but I don't always want to declare local procedures.
And it is also possible to call this procedure if I make it static (i.e. procedure TestCalculation and not procedure TMyForm.TesCalculation). Then I can call successfully RunTestCall := AsyncCall(@TestCalculation, []); But this does not work for a procedure belonging to TMyForm.
Question
How can I call the parameterless class procedure in my example (TestCalculation) with AsyncCalls from another procedure within my class?

AsyncCall( procedure (param:integer) begin TMyClass.MyMethod(); end)? Or perhaps you can use OmniThreadsLibrary ? For what i remember you can justParallel.Async( ProcedureName() )but you can check it. At least OTL is not discontinued :-) – Arioch 'The Dec 13 '12 at 14:20