Posts by Eduardo Belo • 101 points
4 posts
-
2
votes1
answer190
viewsA: Fields losing Datasource property
Datasource is centered on Forms or a Datamodule? As a rule, every time you open your project, first open the Form or the Datamodule where the access components are (Table, Query, Clientdataset,…
delphianswered Eduardo Belo 101 -
4
votes2
answers860
viewsA: Dbgrid Delphi Seattle
This is a BUG that affects only the first column of Dbgrid and Stringgrid. It has been fixed in RAD Studio 10 Seattle Update 1. More details on the link below: RSP-11797 - VCL Tstringgrid.Colwidths…
-
1
votes1
answer643
viewsA: Filling a Listbox with Paradox(Delphi) Database
procedure TFrmPrincipal.Button4Click(Sender: TObject); begin ListBox1.Items.Clear; Table1.First; while not Table1.Eof do begin ListBox1.Items.Add(Table1.FieldByName('CAMPO').AsString); Table1.Next;…
-
0
votes1
answer87
viewsA: Hiding Delphi null field mask
Use the event OnSetText: procedure TDM.cdsCadClientesFONESetText(Sender: TField; const Text: string); begin if Text = ' - ' then Sender.AsString := '' else Sender.AsString := Text; end;…