2020年9月13日

Delphi实战中讲解FormCreate,FormShow,FormActivate

摘要: 原文:https://cloud.tencent.com/developer/article/1472222 阅读全文

posted @ 2020-09-13 18:34 癫狂编程 阅读(557) 评论(0) 推荐(0)

delphi Try except on e:Exception do

摘要: except on e:Exception do //判断单位转换率 try um_rate := vp_mstr.F('vp_um_rate_d').AsFloat / vp_mstr.F('vp_um_rate_m').AsFloat; if um_rate <= 0 then abort el 阅读全文

posted @ 2020-09-13 17:45 癫狂编程 阅读(1233) 评论(0) 推荐(0)

Delphi处理数据网格DBGrid的编辑框 获取还没有提交到数据集的字段文本

摘要: 原文地址:Delphi处理数据网格DBGrid的编辑框 获取还没有提交到数据集的字段文本作者:mfg99 //fromhttp://kingron.myetang.com/zsfunc12.htm 标签: 育儿 分类: delphi //fromhttp://kingron.myetang.com/ 阅读全文

posted @ 2020-09-13 16:29 癫狂编程 阅读(190) 评论(0) 推荐(0)

delphi dbgrid中如何自动生成序号

摘要: 预先在 DBGrid 加一列,baiTitle为 “ID”。然du后:在事件中添加“DBGridDisplayDrawColumnCell”参考我的内容自己zhi改吧!我也dao是看别人的,实现了! 图 procedure TForm1.DBGridDisplayDrawColumnCell(Sen 阅读全文

posted @ 2020-09-13 13:31 癫狂编程 阅读(1038) 评论(0) 推荐(0)

DBDateTimePicker;

摘要: unit DBDateTimePicker; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, ComCtrls,DB,DBCTRLS; type TDBDateTime 阅读全文

posted @ 2020-09-13 04:08 癫狂编程 阅读(214) 评论(0) 推荐(0)

Delphi控件开发浅入深出(八)

摘要: 八、数据敏感控件的制作。 Delphi的一大亮点就是它的数据库开发能力。而数据敏感组件则在这中间起着很重要的作用。在Delphi的Data Control页面下的控件都是用于显示和编辑数据库中的数据的。相信大家已经体会到数据敏感控件的好处了。我们这一节就给大家演示一下数据敏感控件的开发方法。 需要提 阅读全文

posted @ 2020-09-13 04:03 癫狂编程 阅读(365) 评论(0) 推荐(0)

delphi中日期类型TDateTime使用总结

摘要: 刚才真正明白了Delphi中的TDateTime类型,实际上为一个浮点数,因此TDateTime类型的两个变量可以进行浮点数的大部分操作,对于小数部分可以使用minuteof输出它的分钟数,负小数取补后转化为分钟数。并且可以通过TDateTimeToStr,StrToDateTime可以方便与str 阅读全文

posted @ 2020-09-13 04:02 癫狂编程 阅读(1525) 评论(0) 推荐(0)

导航

好的代码像粥一样,都是用时间熬出来的