Ładny brzuch
Mam taki kod...
label4.Caption := 24 - IntToStr(edit1.text);
...chodzi o to, eby od wartoci (cyfry) wpisanej w edit1 odj 24 i wynik ma by wywietlany na label4, ale wywala bd:
Build [Error] Unit1.pas(61): Incompatible types: 'String' and 'Integer' [Fatal Error] Project1.dpr(5): Could not compile used unit 'Unit1.pas'
Pomocy :unsure:
Label4.Caption := IntToStr(24 - StrToInt(Edit1.Text));
?
Label4.Caption := IntToStr(24 - StrToInt(Edit1.Text));
?
zanotowane.pl doc.pisz.pl pdf.pisz.pl zsf.htw.pl
label4.Caption := 24 - IntToStr(edit1.text);
...chodzi o to, eby od wartoci (cyfry) wpisanej w edit1 odj 24 i wynik ma by wywietlany na label4, ale wywala bd:
Build [Error] Unit1.pas(61): Incompatible types: 'String' and 'Integer' [Fatal Error] Project1.dpr(5): Could not compile used unit 'Unit1.pas'
Pomocy :unsure:
Label4.Caption := IntToStr(24 - StrToInt(Edit1.Text));
?
Label4.Caption := IntToStr(24 - StrToInt(Edit1.Text));
?
