注册 登录
编程论坛 VB6论坛

紧急求助:高手进

cqcq11qcqc 发布于 2012-11-01 09:05, 283 次点击
Private Sub FP_FingerPrintState(ByRef imgDataBuf As Byte)
我想获得 imgDataBuf的值带入另外一个Public Function PictureFromByteStream(b() As Byte) As IPicture 中,请问如何做?
1 回复
#2
Artless2012-11-01 11:25
以下是引用cqcq11qcqc在2012-11-1 09:05:00的发言:

Private Sub FP_FingerPrintState(ByRef imgDataBuf As Byte)
我想获得 imgDataBuf的值带入另外一个Public Function PictureFromByteStream(b() As Byte) As IPicture 中,请问如何做?

Private Sub FP_FingerPrintState(ByRef imgDataBuf As Byte)
dim b(0) As Byte
dim xx as IPicture
b(0)=imgDataBuf
xx=PictureFromByteStream(b())
1