-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I found implementation of async BinaryWriter here: http://social.msdn.microsoft.com/Forums/en-US/netfxbcl/thread/11f6aa76-1383-4cab-8693-29dcb25bbf2e
But I can't really use it. I change all my types to AsyncBinaryWriter and I use .Write, but no data is written to the stream. Is that the proper way…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have got a code snippet as follows:
Dim fstream = new filestream(some file here)
dim bwriter = new binarywriter(fstream)
while not end of file
read from source file
bwriter.write()
bwriter.flush()
end while
The question I have is the following. When I call bwriter.flush() does it…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I am using a BinaryReader to read an Excel 2007 file from an Exchange mailbox using a OWA, the file is then written to disk using a BinaryWriter. My problem is that the two files don't match when the writer finishes. Worse still Excel 2007 won't open the writen file.
Previously Excel 2003…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
hi,
i'm displaying an image like this:
<img src='counter.asp'>
counter.asp is doing a hitcounter do determine how often the image was displayed (i'll replace it with a modrewrite url).
the problem: in the counter.asp script i need to send the actual .jpg image to the browser, how could…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm working on a client/server library for a legacy RPC implementation and was running into issues where the client would sometimes hang when waiting to a receive a response message to an RPC request message. It turns out the real problem was in my message framing code (I wasn't handling message boundaries…
>>> More