Setting Text Alignment of a Label
Hi,
Newbe question.
I have a label for which I want to set the taxt alignment at run time
depending on which object calls the Report. Something like ;
pplabel1.textalignment:=tacentered;
This obviously does not work. The compiler retiurns an error message
'tacentered is undefined'.
Help appreciated.
Mike
Newbe question.
I have a label for which I want to set the taxt alignment at run time
depending on which object calls the Report. Something like ;
pplabel1.textalignment:=tacentered;
This obviously does not work. The compiler retiurns an error message
'tacentered is undefined'.
Help appreciated.
Mike
This discussion has been closed.
Comments
Mike:
Do a search on tacentered in the source directory of RBuilder. I'd
guess it's ppTypes without looking myself.
Craig
Delphi Source Code for Accounting Systems
www.ledgeraccounting.com
Add ppTypes to the uses clause at the top of the unit you have
tacentered being used.
Negected to mention that.
Craig
--
Delphi Source Code for Accounting Systems
www.ledgeraccounting.com
Thats what I was looking for.
Mike