监视一下或在窗体放三个Label控件即可!当然,你还可以转换成二进制或 16 进制字符显示。procedure TForm1.Button2Click(Sender: TObject);var D1,D2,D3:array[0..10] of Byte;begin FillChar(D1,sizeof(D1),0); FillChar(D1,sizeof(D2),0); FillChar(D1,sizeof(D3),0); EasyUSB_Read(@D1[0],@D2[0],@D3[0]); Label1.caption:=IntTostr(D1[0]); Label2.caption:=IntTostr(D2[0]); Label2.caption:=IntTostr(D3[0]);end;