P
piddie
Below is in Delphi...
procedure TMyForm.AppIdle(Sender: TObject; var Done: Boolean);
begin
if OkToDoThings = true then begin
//do things
end;
end;
What this does is make a procedure for running things
in the background. It's very fast and is used in games.
How do I do this in VB .Net?
procedure TMyForm.AppIdle(Sender: TObject; var Done: Boolean);
begin
if OkToDoThings = true then begin
//do things
end;
end;
What this does is make a procedure for running things
in the background. It's very fast and is used in games.
How do I do this in VB .Net?