Hi,
Fenris's probably got a good solution there - I haven't checked it.
I was thinking of something like:
-----------------------------------------------------------
Dim Inf As Byte, D() As Byte, s As Long, i As Long
ReDim D(400)
Inf = FreeFile
Open "c:\tmp\test.txt" For Binary Access Read As #Inf
Get #Inf, , D
Close #Inf
s = 0
For i = 0 To UBound(D)
s = s + D(i)
Next i
MsgBox s
----------------------------------------------------------- Sunaj
'The gap between theory and practice is not as wide in theory as it is in practice'