Sayfayı Yazdır | Pencereyi Kapat

Unknown member method: 'caption'.

Nereden Yazdırıldığı: Clomosy | Forum
Kategori: Genel Programlama
Forum Adı: Genel İşlemler
Forum Tanımlaması: TRObject dili ile programlama yaparken karşılaşılan genel işlemler
URL: https://forum.clomosy.com.tr/forum_posts.asp?TID=822
Tarih: 08 Ocak 2025 Saat 20:53
Program Versiyonu: Web Wiz Forums 12.07 - https://www.webwizforums.com


Konu: Unknown member method: 'caption'.
Mesajı Yazan: Furblood
Konu: Unknown member method: 'caption'.
Mesaj Tarihi: 06 Ağustos 2024 Saat 17:05
function BMIHesapla(weightR: Real; heightR: Real):Real;
var
  heightM:Real;
{
  heightM = heightR / 100;
  BMI =  weightR / Sqr(heightM);
}

function bmiResult(BMI:Real):String;
{
  if(BMI < 18.5)
    bmiResultLabel.caption('Underweight ');
  else if(18.5 <= BMI && BMI < 25 )
    bmiResultLabel.caption('Normal weight');
  else if(25 <= BMI && BMI < 30)
    bmiResultLabel.caption('Overweight');
  else
    bmiResultLabel.caption('Obesity');
}

{
bmiResult(BMI); bmiResultLabel = MyprofileForm.AddNewLabel(Scroll, 'bmiResultLabel', ''); bmiResultLabel.Align = alCenter; bmiResultLabel.Margins.Bottom = 0; bmiResultLabel.Margins.Left = 400; bmiResultLabel.Width = 300; bmiResultLabel.TextSettings.FontColor = clAlphaColor.clHexToColor('#6482AD'); bmiResultLabel.TextSettings.Font.Size = 20;
}


TclForm
Unknown member method: 'caption'.
Source position: 23,43
Clomosy Build : 20240709.111531


-------------
furkanfidan



Cevaplar:
Mesajı Yazan: oguz22
Mesaj Tarihi: 06 Ağustos 2024 Saat 17:07
bmiResultLabel.Caption := 'Normal weight';


Mesajı Yazan: oguz22
Mesaj Tarihi: 06 Ağustos 2024 Saat 17:08
bmiResultLabel.Caption = 'Normal weight';



Sayfayı Yazdır | Pencereyi Kapat

Forum Software by Web Wiz Forums® version 12.07 - https://www.webwizforums.com
Copyright ©2001-2024 Web Wiz Ltd. - https://www.webwiz.net