Basically I have a label which I do the following with on start up of my application:
with Label1 do
begin
Caption := 'Computer Locked';
Align := alClient;
Alignment := taCenter;
Top := 400;
end;
Now the problem I have is the alClient and taCenter work perfectly making the label in the middle of the screen but the problem is it display the label right at the top of the screen in the middle. I want to display the label in the middle of the screen and then down from the top by 400 which is why I used the code "Top := 400" but it makes no difference and instead the label displays as if "Top := 0" which I have no idea how to fix. Any ideas?