Jonvy

导航

上一页 1 ··· 6 7 8 9 10 11 12 13 下一页

2022年10月16日 #

拓扑排序Topological sort

摘要: 1. https://rosettacode.org/wiki/Topological_sort/Extracted_top_item#Pascal 2. https://rosettacode.org/wiki/Topological_sort#Object_Pascal 3.网上Pascal教程 阅读全文

posted @ 2022-10-16 19:40 不亮 阅读(12) 评论(0) 推荐(0) 编辑

2022年10月3日 #

[Trace]Routing的查询与建立

摘要: 以件号"620467300A"为例 1.从t_nomen中查询出id_nomen值 select id_nomen from t_nomen where et_refakf_se='620467300A' and et_refakf_comp is null id_nomen=16945 2.从t_ 阅读全文

posted @ 2022-10-03 11:00 不亮 阅读(31) 评论(0) 推荐(0) 编辑

2022年10月2日 #

Lazarus关键字

摘要: 1.absolute//它使得你能够创建一个新变量, 并且该变量的起始地址与另一个变量相同. var Str: string[32]; StrLen: Byte absolute Str; //这个声明指定了变量StrLen起始地址与Str相同. //由于字符串的第0个位置保存了字符串的长度, 所以 阅读全文

posted @ 2022-10-02 11:48 不亮 阅读(55) 评论(0) 推荐(0) 编辑

2022年9月30日 #

TCanvas与TBrush

摘要: TBrush的style设置为bsClear,为不填充 阅读全文

posted @ 2022-09-30 16:25 不亮 阅读(17) 评论(0) 推荐(0) 编辑

Lazarus程序运行后报Error对话框:Heap dump by heaptrc unit of

摘要: 需在Debugging选项中取消勾选Use Heaptrc unit选项 阅读全文

posted @ 2022-09-30 10:13 不亮 阅读(69) 评论(0) 推荐(0) 编辑

2022年9月29日 #

Lazarus必备安装包

摘要: 1. LNet 2. Lazserial 3.FPSpreadsheet 4.TRichMemo 5.BGRABitmap 6.LazReport 阅读全文

posted @ 2022-09-29 14:46 不亮 阅读(79) 评论(0) 推荐(0) 编辑

2022年9月24日 #

Lazarus控件中的 Tag 属性

摘要: 几乎所有的Delphi组件都有Tag属性,Tag是LongINT类型。 是基类为TComponent的一个published属性 Int64,Int64 is a 64-bit, signed integer type, with range [-9223372036854775808..92233 阅读全文

posted @ 2022-09-24 21:24 不亮 阅读(41) 评论(0) 推荐(0) 编辑

2022年9月13日 #

[Trace]追溯工位cycle time查询

摘要: 以3112线,ST60为列 1.从t_modeop表中选择ST60工位和PC的步骤 select id_modeop from t_modeop where et_prod_poste='3112-60' and et_tyoper='OPE' 2.时间段选择,在t_stocpf表中选择质量状态 s 阅读全文

posted @ 2022-09-13 11:55 不亮 阅读(90) 评论(0) 推荐(0) 编辑

2022年8月30日 #

TTreeview常用函数

摘要: Node.level node.GetParentNodeOfAbsoluteLevel node.GetPrev Treeview Item总数: tree1.items.count 阅读全文

posted @ 2022-08-30 15:26 不亮 阅读(18) 评论(0) 推荐(0) 编辑

2022年8月26日 #

Lazars常用函数

摘要: var i: Integer; Row: String; Parts: TStringArray; S1, S2, S3, S4: String; begin Row := '51,40,45,44,44,40,'; Parts := Row.Split(','); S1 := Parts[0]; 阅读全文

posted @ 2022-08-26 14:42 不亮 阅读(30) 评论(0) 推荐(0) 编辑

上一页 1 ··· 6 7 8 9 10 11 12 13 下一页