W wxlxl Unregistered / Unconfirmed GUEST, unregistred user! 2000-08-07 #1 我从COMM口得到的OleVariant类型的数据怎样才能转化为为Byte型数据进行处理
I iie Unregistered / Unconfirmed GUEST, unregistred user! 2000-08-14 #5 var aOLEVariant: TOLEVariant; aarray: array [0..1023] of byte; move(aOLEVariant, aarray, SizeOf(aOLEVariant));
var aOLEVariant: TOLEVariant; aarray: array [0..1023] of byte; move(aOLEVariant, aarray, SizeOf(aOLEVariant));
G gamblegod Unregistered / Unconfirmed GUEST, unregistred user! 2000-10-28 #7 请问iie: 发送的数据如果采用的是二进制模式,那应该怎么发送?我的实现如下: BinStr:OleVariant; SendArray:Array[1..6] of Byte; ....... with Mscomm1 do begin move(SendArray,BinStr,6); output:=BinStr; end; 在运行程序的时候,为什么老是提示我Invalid Property Value,不知道为什么?
请问iie: 发送的数据如果采用的是二进制模式,那应该怎么发送?我的实现如下: BinStr:OleVariant; SendArray:Array[1..6] of Byte; ....... with Mscomm1 do begin move(SendArray,BinStr,6); output:=BinStr; end; 在运行程序的时候,为什么老是提示我Invalid Property Value,不知道为什么?