Hi there.
I have this regular vcl form app and i wanted to know if I can see changes made before a form procedure ends.
ex:
procedure TForm1.FormShow(Sender: TObject);
Begin
Memo1.Text := 'blah blah';
Sleep(10000);
Memo1.Text := 'End of blah blah';
End;
But it will only show me the "End of blah blah" text with a delay b4.
Thank in advance.
I have this regular vcl form app and i wanted to know if I can see changes made before a form procedure ends.
ex:
procedure TForm1.FormShow(Sender: TObject);
Begin
Memo1.Text := 'blah blah';
Sleep(10000);
Memo1.Text := 'End of blah blah';
End;
But it will only show me the "End of blah blah" text with a delay b4.
Thank in advance.