kcwallace Posted January 25, 2006 Posted January 25, 2006 How would I go about converting the following code to .Net. Sub ReadToBinary(ByVal F As Long, fld As ADODB.Field, _ ByVal FileSize As Long) Dim Data() As Byte, BytesRead As Long Do While FileSize <> BytesRead If FileSize - BytesRead < BLOCK_SIZE Then Data = InputB(FileSize - BytesRead, F) BytesRead = FileSize Else Data = InputB(BLOCK_SIZE, F) BytesRead = BytesRead + BLOCK_SIZE End If fld.AppendChunk Data Loop End Sub Quote Go Beavs!!!
Administrators PlausiblyDamp Posted January 25, 2006 Administrators Posted January 25, 2006 System.IO.FileStream.Read as a method will allow you to read a file straight into a byte array - that is probably the 1st thing to look at. Are you still wanting to read into a ADODB field or will that be converted to ADO.Net? Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
kcwallace Posted January 25, 2006 Author Posted January 25, 2006 Thank you for your reply. Definitely ADO.Net Quote Go Beavs!!!
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.