摘要: <# .NOTES Created on: Created by: Organization: Filename: OledbHelper .DESCRIPTION A toolkit for OleDb. #> function New-OleDbConnection { <# .SYNOPSIS 阅读全文
posted @ 2020-12-03 15:02 XKIND 阅读(96) 评论(0) 推荐(0) 编辑
摘要: unit Utils.Generics.ADODB; interface uses System.Classes, System.TypInfo, System.Win.ComObj, System.Generics.Collections, Winapi.ActiveX, Data.DB, Dat 阅读全文
posted @ 2020-12-03 14:54 XKIND 阅读(175) 评论(0) 推荐(1) 编辑
摘要: unit Utils.EventBus; interface uses System.Classes; type IEventBus = interface(IUnknown) procedure Notify(information: TObject); end; //////////////// 阅读全文
posted @ 2020-12-03 14:51 XKIND 阅读(165) 评论(0) 推荐(1) 编辑
摘要: unit Utils.ADODB; interface uses System.Classes, System.TypInfo, System.Win.ComObj, Winapi.ActiveX, Data.DB, Data.Win.ADODB; type { TMPropList class t 阅读全文
posted @ 2020-12-03 14:45 XKIND 阅读(173) 评论(2) 推荐(1) 编辑
摘要: unit Utils.StdCtrls; interface uses Classes, Controls, StdCtrls, Windows; type TUiUtil = class(TObject) public { 控件查找 TWinControl } class function Get 阅读全文
posted @ 2020-12-03 14:41 XKIND 阅读(183) 评论(0) 推荐(1) 编辑
摘要: OMRON FINS DEMO unit PLC.OMRON; interface uses System.StrUtils, System.SysUtils; const HEAD_CODE = '@'; DEFAULT_UNIT = 0; PC_CODE = 'FA'; HEAD_BODY = 阅读全文
posted @ 2020-12-03 14:33 XKIND 阅读(363) 评论(0) 推荐(1) 编辑
摘要: MessageBox 简单模板封装 unit Dialogs.OptionPane; interface uses Winapi.Windows, Vcl.Dialogs; const TITLE_T = ' 提示消息 '; TITLE_W = ' 警告消息 '; TITLE_E = ' 错误消息 阅读全文
posted @ 2020-12-03 14:20 XKIND 阅读(151) 评论(0) 推荐(1) 编辑
摘要: https://docs.microsoft.com/zh-cn/previous-versions/dd576362(v=vs.140)?redirectedfrom=MSDN 阅读全文
posted @ 2020-12-02 12:58 XKIND 阅读(126) 评论(0) 推荐(0) 编辑
摘要: https://code.visualstudio.com/shortcuts/keyboard-shortcuts-windows.pdf 阅读全文
posted @ 2020-12-02 12:46 XKIND 阅读(60) 评论(0) 推荐(0) 编辑
摘要: C# 时间格式化工具类 using System; using System.Globalization; using System.Reflection; namespace System { public sealed class DateTimeUtils { /// <summary> 日期 阅读全文
posted @ 2020-12-02 11:17 XKIND 阅读(341) 评论(0) 推荐(0) 编辑