⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 opcremovedgroupunit.pas

📁 delphi做的opc server 很好的学习代码
💻 PAS
字号:
unit OPCRemovedGroupUnit;

interface

uses Windows,SysUtils,Dialogs,Classes,Axctrls;

type
  TOPCGroupRemoved = class
  public
   oldGroupName:string;
   oldGroupList:TList;
   removedCount:integer;
   oldServerHandle:longword;
   constructor Create(const aName:string;oldHandle:longword;aList:TList);
  end;

implementation

constructor TOPCGroupRemoved.Create(const aName:string;oldHandle:longword;aList:TList);
begin
 oldGroupName:=aName;
 oldServerHandle:=oldHandle;
 oldGroupList:=aList;
 removedCount:=0;
end;

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -