We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3db8ec4 commit 0b1eb6bCopy full SHA for 0b1eb6b
samples/repository_showcase/MainFormU.dfm
@@ -28,8 +28,6 @@ object MainForm: TMainForm
28
ReadOnly = True
29
ScrollBars = ssBoth
30
TabOrder = 0
31
- ExplicitLeft = 0
32
- ExplicitWidth = 884
33
end
34
object Panel1: TPanel
35
Left = 0
samples/repository_showcase/MainFormU.pas
@@ -130,7 +130,7 @@ procedure TMainForm.LoadSampleData;
130
lCustomer.City := Cities[Random(Length(Cities))];
131
lCustomer.Rating := Random(5) + 1;
132
lCustomer.Note := 'Sample customer ' + I.ToString;
133
- lCustomer.Insert;
+ lRepo.Insert(lCustomer);
134
finally
135
lCustomer.Free;
136
end;
0 commit comments