cxGrid扩展当前日期,该日期以字符串形式存储在数据库中

时间:2014-02-04 17:31:19

标签: delphi delphi-xe4

关于这个问题: Have cxGrid expand current date 和解决方案:

procedure TForm1.FormCreate(Sender: TObject);
begin
  with cxGrid1DBTableView1 do
  begin
    DataController.DataSource.DataSet.Locate('YourDateFieldName',DateTimeToStr(Date),
    [loPartialKey]);
    ViewData.Records[DataController.FocusedRowIndex].Expand(True);
  end;
end;

如果数据库中的“YourDateFieldName”字段是字符串类型(日期存储为字符串),您将如何将其传递给上面示例中的网格?

0 个答案:

没有答案