I am using the MSJet 4.0 provider on the server program and on the client I
am trying to set a memo field with the data from a Byte array.
I am attempting the assignment this way:
Dim mtmpl1() As Byte
ReDim mtmpl1(Fpr1.TemplateSize - 1)
nBytesCopied = Fpr1.CopyTemplate(VarPtr(mtmpl1(0)))
' nBytesCopied does = Fpr1.TemplateSize
mRowset("Template1") = mtmpl1
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Pardon my code, I am not a VB programmer but on examining the field, there
is no data in the database. Integers and strings are present.
How should I assign data to the memo field to get it across?
Many thanks.
J