Link to home
Start Free TrialLog in
Avatar of catti
catti

asked on

Change caption of a column of a TCustomListView

At start I've got this code:

lvwSak.ClearColumns;
lvwSak.Columns.Add.Caption := AMOUNT;
lvwSak.Columns[0].Width := 85;
lvwSak.Columns.Add.Caption := CODE;
lvwSak.Columns[1].Width := 50;

Later I want to change caption of the first column, how do I do that?

ASKER CERTIFIED SOLUTION
Avatar of Mike Littlewood
Mike Littlewood
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial