Jonvy

导航

2022年8月30日 #

TTreeview常用函数

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

posted @ 2022-08-30 15:26 不亮 阅读(75) 评论(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 不亮 阅读(55) 评论(0) 推荐(0)

2022年8月14日 #

[Trace]Trace line setup 中的action 列表

摘要: 1.从t_modeop中查询出t_modeop值 select * from t_modeop where et_prod_poste like '8889-20%' and modeop_fin_validite is null and et_tyoper='OPE' and modeop_ord 阅读全文

posted @ 2022-08-14 22:15 不亮 阅读(35) 评论(0) 推荐(0)

2022年8月9日 #

Run as user

摘要: 1.example RunAsUser - Run a Program Under Specific User Account - www.dennisbabkin.com 2. LogonUserW function https://docs.microsoft.com/en-us/windows 阅读全文

posted @ 2022-08-09 11:55 不亮 阅读(93) 评论(0) 推荐(0)

2022年7月26日 #

android app download

摘要: https://apkpure.com/apkpure-app.html?icn=aegon&ici=text_detail-apk 阅读全文

posted @ 2022-07-26 14:05 不亮 阅读(1340) 评论(0) 推荐(0)

2022年7月18日 #

[Trace]Production与PLC,Serial socket通讯

摘要: Serial.exe[Production] Initializing communication with Production (127.0.0.1:2500)[Diagnostic] Initialize diagnostic server socket...[Diagnostic] Serv 阅读全文

posted @ 2022-07-18 15:02 不亮 阅读(44) 评论(0) 推荐(0)

2022年7月14日 #

Postgres增加用户仅能查询视图

摘要: 1.Local database增加视图cli_no create view cli_no as select id_stocpf,et_refcmp,stocpf_no_cli,datemodif,heuremodif from t_stocpf; 2.创建新用户 create user nha_ 阅读全文

posted @ 2022-07-14 15:52 不亮 阅读(84) 评论(0) 推荐(0)

2022年7月12日 #

如何在SqlServer中获取前端连接的IP地址,计算机名等信息

摘要: 在一些需求中,可能我们需要知道连接到SqlServer的前端程序的一些系统信息,比如前端连接的计算机名称,IP地址,什么时候开始请求连接,什么时候结束连接等信息。 如果你对SqlServer的系统函数或视图不太了解,这个功能看起来好像比较复杂,而实际上, SqlServer的动态管理视图已经给我们提 阅读全文

posted @ 2022-07-12 17:08 不亮 阅读(1005) 评论(0) 推荐(0)

2022年7月7日 #

Run as invoker

摘要: 文件存于:C:\Data\RunAsInvoker AladdinNHA:内容 @SET __compat_layer=runasinvokercd..cd Program Files (x86)cd Datalogiccd Aladdinstart aladdin.exe &exit NPort: 阅读全文

posted @ 2022-07-07 16:11 不亮 阅读(412) 评论(0) 推荐(0)

2022年7月6日 #

Lazarus Data module

摘要: 在运行使用了Data module的程序中,启动程序时报内存错误,应该在项目文件(.lpr)中,在调用Main form前调用data module模块。 如: 主程序:frmMain Data module:dm 使用: Application.Initialize;Application.Cre 阅读全文

posted @ 2022-07-06 16:58 不亮 阅读(72) 评论(0) 推荐(0)