Hello everyone,
Anyway to speed this up without assembler ?
bData is a string containing the contents of a file.
Blobdata is a Variant
Thanks in advance,
Steven
Anyway to speed this up without assembler ?
bData is a string containing the contents of a file.
Code:
Dim aByte(Len(bData)) As Byte For c = 1 To Len(bData) aByte(c - 1) = Asc(Mid$(bData, c, 1)) Next let Blobdata = aByte()
Thanks in advance,
Steven
Comment