File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ object DelphiAIDevDBChatView: TDelphiAIDevDBChatView
17
17
ShowHint = True
18
18
OnActivate = FormActivate
19
19
OnClose = FormClose
20
- OnCreate = FormCreate
21
20
OnResize = FormResize
22
21
OnShow = FormShow
23
22
DesignSize = (
Original file line number Diff line number Diff line change @@ -134,7 +134,6 @@ TDelphiAIDevDBChatView = class(TDockableForm)
134
134
procedure btnCleanAllClick (Sender: TObject);
135
135
procedure btnExecuteSQLClick (Sender: TObject);
136
136
procedure cBoxDatabasesClick (Sender: TObject);
137
- procedure FormCreate (Sender: TObject);
138
137
procedure DBGrid1DrawColumnCell (Sender: TObject; const Rect: TRect; DataCol: Integer; Column: TColumn; State: TGridDrawState);
139
138
procedure CopyCurrentColumn1Click (Sender: TObject);
140
139
procedure CopyCurrentLine1Click (Sender: TObject);
@@ -248,6 +247,7 @@ constructor TDelphiAIDevDBChatView.Create(AOwner: TComponent);
248
247
249
248
Self.ConfScreenOnCreate;
250
249
Self.FillMemoReturnWithFile;
250
+ TUtilsDBGrids.ConfDBGrid(DBGrid1);
251
251
end ;
252
252
253
253
destructor TDelphiAIDevDBChatView.Destroy;
@@ -281,11 +281,6 @@ procedure TDelphiAIDevDBChatView.FormActivate(Sender: TObject);
281
281
end ;
282
282
end ;
283
283
284
- procedure TDelphiAIDevDBChatView.FormCreate (Sender: TObject);
285
- begin
286
- TUtilsDBGrids.ConfDBGrid(DBGrid1);
287
- end ;
288
-
289
284
procedure TDelphiAIDevDBChatView.FormClose (Sender: TObject; var Action: TCloseAction);
290
285
begin
291
286
Self.WaitingFormOFF;
You can’t perform that action at this time.
0 commit comments