Make bold DBLabel
How can I make bold of font? I can not reach documentation.
Does IDE has ability to provide sub routines?
procedure StokKoduDBLabelOnPrint;
begin
if Malzeme_planlama_tablo_alanlari['upl_uretim_tuket'] = 1 then
StokKoduDBLabel.Font := fsBold;
end;
end;
StokKoduDBLabel.Font := fsBold; does not work.
There must be some function or other for end user.
Thanks
Does IDE has ability to provide sub routines?
procedure StokKoduDBLabelOnPrint;
begin
if Malzeme_planlama_tablo_alanlari['upl_uretim_tuket'] = 1 then
StokKoduDBLabel.Font := fsBold;
end;
end;
StokKoduDBLabel.Font := fsBold; does not work.
There must be some function or other for end user.
Thanks
Comments
procedure StokKoduDBLabelOnPrint;
begin
if Malzeme_planlama_tablo_alanlari['upl_uretim_tuket'] = 1 then
begin
StokKoduDBLabel.Font.Bold := True;
end else StokKoduDBLabel.Font.Bold := False;
end;