COMM通讯的数据转化问题(100分)

  • 主题发起人 主题发起人 wxlxl
  • 开始时间 开始时间
W

wxlxl

Unregistered / Unconfirmed
GUEST, unregistred user!
我从COMM口得到的OleVariant类型的数据怎样才能转化为为Byte型数据进行处理
 
我也想知道!
 
var aOLEVariant: TOLEVariant;
aarray: array [0..1023] of byte;

move(aOLEVariant, aarray, SizeOf(aOLEVariant));
 
接受答案了.
 
请问iie:
发送的数据如果采用的是二进制模式,那应该怎么发送?我的实现如下:
BinStr:OleVariant;
SendArray:Array[1..6] of Byte;
.......
with Mscomm1 do
begin
move(SendArray,BinStr,6);
output:=BinStr;
end;
在运行程序的时候,为什么老是提示我Invalid Property Value,不知道为什么?
 
后退
顶部