加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

Delphi XE IDE代码解析器错误?

发布时间:2020-12-15 09:11:36 所属栏目:大数据 来源:网络整理
导读:在我的表单中添加IdUDPServer并尝试将一些代码放入OnUDPRead事件后,我无法在设计时向表单添加任何组件,也无法运行该应用程序. this is the error i’m getting http://i54.tinypic.com/2j5jl0p.jpg 有什么方法可以解决这个问题吗? 解决方法 这个事件处理程
在我的表单中添加IdUDPServer并尝试将一些代码放入OnUDPRead事件后,我无法在设计时向表单添加任何组件,也无法运行该应用程序.

this is the error i’m getting http://i54.tinypic.com/2j5jl0p.jpg

有什么方法可以解决这个问题吗?

解决方法

这个事件处理程序有两个错误.要修复它们,你可以

>删除系统.来自TArray< System.Byte> (在界面和实现中)
>将IdSocketHandle添加到界面中的使用列表中

我没有进一步调查,但在这些更改后,代码可以编译.

所以完整的代码就好了

unit Unit12;

interface

uses
  Windows,Messages,SysUtils,Variants,Classes,Graphics,Controls,Forms,Dialogs,IdSocketHandle,// <-- added
  IdBaseComponent,IdComponent,IdUDPBase,IdUDPClient,IdUDPServer;

type
  TForm12 = class(TForm)
    IdUDPClient1: TIdUDPClient;
    IdUDPServer1: TIdUDPServer;
    procedure IdUDPServer1UDPRead(AThread: TIdUDPListenerThread;
      AData: TArray<Byte>; ABinding: TIdSocketHandle);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form12: TForm12;

implementation

{$R *.dfm}

procedure TForm12.IdUDPServer1UDPRead(AThread: TIdUDPListenerThread;
  AData: TArray<Byte>; ABinding: TIdSocketHandle);
begin
  //
end;

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读