Can anyone tell me how do I display the calculation in the TLabelEdit and why can't I do the mathematics calculation? I have included <math.h>.
void __fastcall TForm1::LabelEdit1(TObject *Sender)
{
float h;
if (yRed == 90) {
h = 160*4.4/(2*xRed*tan39 - 160*tan39 + 160*tan40) //cannot compile due to error
Height->SubLabel( h ); //Is this how you write it??????
}
}
Please advice.