Ugh... why are things never as easy as they should be.. especially when there is a deadline to meet :(
So far no love with this code:
Using newFileWriter As New IO.FileStream(fileName, IO.FileMode.OpenOrCreate)
newFileWriter.Write(bytes, 0, bytes.Length)
newFileWriter.Flush()
newFileWriter.Close()
End Using
I have tried it with and without the calls to flush and close...
I am truly baffled... I have never had this problem unless I did not close the file properly and it was obvious that was the problem... I am pretty darn sure that the IO code I have written is correct. I will bust out the MS training kit and double check the syntax I guess...
Edit: Do we all agree that what I wrote is shorthand for this example here: http://www.123aspx.com/redir.aspx?res=32473 ?
I may try coping this in just to see what happens... also, I seen a few older articles about SOAP\DIME to upload files, does anyone know if this is still relevant?
Thanks again!!!