I went across some sort of limitation in ASP.NET. I reduced the problem into a sample project in ASP.NET MVC Project (created with Visual Studio 2010 and .NET 4) and the problem still occurs: In a MVC Controller I have a method which provides a file download: public ActionResult DownloadBigFile() [...] read more
When we try to download a file greater than 1 GB from the TFS Web Access (TFS 2013 Update 4) we get an "ArithmeticException" error. On MSDN it says that Update 4 will fix this, but we still have this problem. Here is some Data from IIS Failed Request Tracing: [...] read more
I want to write a program interacting with joystick. I am using a standard SDK example and dinput8.lib. Here's the code. GUID Is taken from enumJoysticksCallback function. I throw away everything to minimise chance of error. LPDIRECTINPUT8 g_pDI = NULL; LPDIRECTINPUTDEVICE8 g_pJoystick = NULL; HRESULT hr = DirectInput8Create ( GetModuleHandle( [...] read more