| Thread | Last Post | Replies |
|
| Assertion Error | 30 Apr 2005 12:39 GMT | 1 |
I keep trying to play Alexander The Game, but a text bar pops up saying Cossacks2 has caused an Assertion Error Message: Display mode 1280x1024 is not supported What Should I do?
|
| Sockets, Performance, Messaging, NetworkStream | 29 Apr 2005 21:26 GMT | 1 |
If anyone can help that will be much appreciated. I have implemented async socket server & client, functionally both work well, when connected through loopback, performance is reasonably good. The issue comes when i run the software over the network while functionally it
|
| Inlining. | 29 Apr 2005 16:52 GMT | 2 |
Reading msdn.com and several blogs (also on msdn :)) it appears that simple properties that just get/set a private member are good candidates for inlining by the JITter. Does anyone know if inlining occurs across modules? Say I have module A with
|
| Is Regex quicker than IF? | 28 Apr 2005 15:47 GMT | 9 |
What is quicker? If (Regex.IsMatch(tmpStr, "(s(ain|c)?t)", RegexOptions.IgnoreCase) Then or If ((tmpStr.CompareTo("saint") = 0) _
|
| Add new memory and now Out of Memory | 26 Apr 2005 17:09 GMT | 4 |
Can anyone shed some light on why a web server running ASP.NET with 1GB of memory works fine, but when I increase the memory to 2GB I constantly get "Out-of-Memory" errors? I'm stumped.
|
| Fasted way to compile code | 26 Apr 2005 15:37 GMT | 2 |
I have a tool that generates VB.NET code, compiles it into a DLL in memory and then executes a method on the class. I can execute the method on the class thousands of times per second. The generated code is slightly different each time the tool is run, so I
|
| large memory footprint of dotnet application (200MB) | 26 Apr 2005 15:35 GMT | 2 |
We are developing a large dotnet application, which includes ~ 120 assemblies. (total size of all binaries is ~ 20MB). Our application also references the following dotnet assemblies: System,System.XML, System.Windows.Forms, System.Drawing, System.Data,
|
| How to fix Big Red Cross on the screen | 25 Apr 2005 12:22 GMT | 10 |
I have a .NET application written by C#. It works fine in the most time, but sometimes, once or twice a day, there are red cross on the screen. The position of red cross is the position of visible object, like button,
|
| System.Threading.Timers on multiprocessor Windows Server 2003 | 22 Apr 2005 05:50 GMT | 2 |
Wasn't totally sure if this was the right newsgroup to post to, so if there's a better place, please let me know. Windows Server 2003 (multiprocessor) seems to have a curious implementation of System.Threading.Timers.
|
| reciving 1000 packets simultaneously using UDPClient | 19 Apr 2005 09:58 GMT | 2 |
I am developing an application that gets a brust of about 1000 or more packets at same time from different IP addresses. I have to process each packet and performance is essential. I am using UDPClient to recieve packets and then using a Delegate function to pass the
|
| Fastest time counter | 16 Apr 2005 06:05 GMT | 5 |
DateTime.Ticks is very slow I use it but it is updated 64 times in a second. I think performance counter is the fastest counter but I could not use it for elapsed time. It is complicated.
|
| Execption Handling disection | 14 Apr 2005 08:20 GMT | 4 |
I have read that Exception Handling is expensive performance wise ( other than Throw ) , but exactly how ? Please consider the following example ... ////////////////// Code Block 1 //////////////////////////////////
|
| high RESOLUTION timer | 14 Apr 2005 01:06 GMT | 2 |
I need to use high resolution timer. I' ve found that QueryPerformanceCounter from Kernel32.dll coudl be used for this purpose. My question is what is this counter for? I know only that it is zero when starting windows... What does it mean one step for this counter?
|
| Enumerator vs ForNext vs ForEach | 13 Apr 2005 21:47 GMT | 6 |
Which is better in terms of performance. Iterating over Enumerator ForNext loop (using indexer) ForEach loop
|
| Why is: Scrolling with background image very slow? | 08 Apr 2005 23:33 GMT | 5 |
i have simple form. i add a background image of my desktop. i set the AutoScrollSize to {1024, 768}. i run the app.
|