Posts by Manoel Jr • 1 point
2 posts
-
0
votes2
answers1398
viewsA: How to change the background color of a Listview list item in Delphi 10
Look this is not possible to be done in Runtime because Listview itself in Firemonkey does not allow it to be done in Runtime only in design time you can change the backgroundCollor of listview via…
-
0
votes2
answers448
viewsA: Hide component in first record (Dbctrlgrid)
You can use the Dataset Afterscroll event to make the Dashboard Visible or not, it would be like this: procedure TfrmPrincipal.ClientDataSet1AfterScroll(DataSet: TDataSet); begin Panel1.Visible:=…