V
Vijay
With the option strict On set.....
Dim fs As FileStream = File.OpenRead(strFile)
With fs
Dim buffer(fs.Length) As Byte ' <--- Option Strict On disallows implicit
conversions from 'Long' to 'Integer'.
' other stuff..
End With
been a while i did VB code... can somebody help me what I am doing wrong
here...
Vijay
Dim fs As FileStream = File.OpenRead(strFile)
With fs
Dim buffer(fs.Length) As Byte ' <--- Option Strict On disallows implicit
conversions from 'Long' to 'Integer'.
' other stuff..
End With
been a while i did VB code... can somebody help me what I am doing wrong
here...
Vijay