Timer Countdown - Hvad går galt
Jeg kan ikke se hvorfor den ikke vil sætte visible := false på 2 labels og sætte visible := true på 1 label... Kan I se hvad der går galt i ??///// SNIP
procedure TFMain.TCountdownTimer(Sender: TObject);
begin
LCountdown2.Caption := IntToStr(StrToInt(LCountdown2.Caption)-1);
if LCountdown2.Caption = IntToStr(-1) then
Begin
LCountdown1.Visible := FALSE;
LCountdown2.Visible := FALSE;
LUpdateStatus.Visible := TRUE;
TCountdown.Enabled := FALSE;
////// SNIP SLUT
Resten af koden ser ud til at virke...
