This one has me stuck in the dark....
A bit of background: I am working on an app that opens deflated (compressed) logs. Everything works, except, the logs can be a few mb.
The problem i am running into is that to convert the byte data (1024 chunks) into readable strings i do this:
Like i said, this works, but is increadably slow, any suggestions?
Thanks,
James
![[afro] [afro] [afro]](/data/assets/smilies/afro.gif)
![[mad] [mad] [mad]](/data/assets/smilies/mad.gif)
"Make it idiot-proof and someone will make a better idiot." ~bumper sticker
A bit of background: I am working on an app that opens deflated (compressed) logs. Everything works, except, the logs can be a few mb.
The problem i am running into is that to convert the byte data (1024 chunks) into readable strings i do this:
Code:
For i = 0 To bytesOut - 1
StrOut(LngTotalOut + i) = Chr(outBuffer(i))
LngTotalOut = LngTotalOut + bytesOut
Next i
Thanks,
James
![[afro] [afro] [afro]](/data/assets/smilies/afro.gif)
![[mad] [mad] [mad]](/data/assets/smilies/mad.gif)
"Make it idiot-proof and someone will make a better idiot." ~bumper sticker