UniGUI 如何进行 UniDBGrid 的单元 Cell 的计算 ?
Posted hopesun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UniGUI 如何进行 UniDBGrid 的单元 Cell 的计算 ?相关的知识,希望对你有一定的参考价值。
来源:http://forums.unigui.com/index.php?/topic/10508-update-dataset-events-in-unidbgrid/?hl=unidbgrid
I test these code with 1.10.0.1456,maybe work for you.
write code in UniDBGrid‘s OnSetCellValue event
procedure TMainForm.UniDBGrid1SetCellValue(Sender: TObject; ACol,
ARow: Integer; AField: TField; var Value: Variant);
begin
self.UniDBGrid1.DataSource.DataSet.Edit;
self.UniDBGrid1.DataSource.DataSet.FieldByName(self.UniDBGrid1.Columns.Items[Acol].FieldName).Value:=Value;
self.UniDBGrid1.DataSource.DataSet.Post;
end;
以上是关于UniGUI 如何进行 UniDBGrid 的单元 Cell 的计算 ?的主要内容,如果未能解决你的问题,请参考以下文章
(25)uniGUI for C++ builder之UniHTMLMemo初使用及uniGUI如何调用javaScript