User dviljoen - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T02:33:50Zhttp://stackoverflow.com/feeds/user/29021http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/668078/can-i-insert-nodes-into-a-treeview-during-afterlabeledit-without-beginning-to-edi/1591025#15910250Answer by dviljoen for Can I insert nodes into a TreeView during AfterLabelEdit without beginning to edit them?dviljoen2009-10-19T20:41:37Z2009-10-19T20:41:37Z<p>You could try to unhook your OnEdit handler before adding the new node and re-hooking it after. I've seen that behavior before and that's how I handled it.</p>
http://stackoverflow.com/questions/1590094/why-doesnt-read-work-as-expected/1590144#15901442Answer by dviljoen for Why Doesn't Read() work as Expected?dviljoen2009-10-19T17:55:57Z2009-10-19T17:55:57Z<p>You need to use Console.ReadKey() instead of Console.Read().</p>
http://stackoverflow.com/questions/567954/c-raw-sockets-port-forwarding/1165179#11651790Answer by dviljoen for C# Raw Sockets Port Forwardingdviljoen2009-07-22T13:16:14Z2009-07-22T13:16:14Z<pre><code>sock = new Socket( AddressFamily.InterNetwork, SocketType.Raw, ProtocolType.IP );
sock.Bind( new IPEndPoint( IPAddress.Parse( "10.25.2.148" ), 0 ) );
sock.SetSocketOption( SocketOptionLevel.IP, SocketOptionName.HeaderIncluded, 1 );
byte[] trueBytes = new byte[] { 1, 0, 0, 0 };
byte[] outBytes = new byte[] { 0, 0, 0, 0 };
sock.IOControl( IOControlCode.ReceiveAll, trueBytes, outBytes );
sock.BeginReceive( data, 0, data.Length, SocketFlags.None, new AsyncCallback( OnReceive ), null );
</code></pre>
<p>The only problem is that I've been able to successfully receive data from a raw socket like this, (including the IP header) but not send it.</p>
http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/386457#3864572Answer by dviljoen for What is the worst interviewee answer?dviljoen2008-12-22T15:05:51Z2009-06-14T04:48:38Z<p>After going through all of the .NET technologies we were using heavily (threading, remoting, reflection, etc) and the guy didn't answer a single one correctly it was painfully obvious to both of us that there was no way he was going to get the job. So .... he started talking about how he didn't really know anything about what we were doing, but don't let that make me think he wouldn't be good for the position, and he's a really hard worker, and a really fast learner, and if you just give me a chance I can prove that I'm really a good fit, and ......... AHHHHHH! STOP TALKING! (or as another said before "Too many words!").</p>
<p>I wanted to say "Dude, you're NOT a good fit. Get over it."</p>
http://stackoverflow.com/questions/904999/how-can-i-avoid-this-infinite-loop/905271#9052711Answer by dviljoen for How can I avoid this infinite loop?dviljoen2009-05-25T04:02:41Z2009-05-25T04:02:41Z<p>This reminds me of the way serialization prevents infinite loops when objects contain other objects. It maps the hash code of each object to its byte array so when an object contains a reference to another object it: a) doesn't serialize the same object twice, and b) doesn't serialize itself into an infinite loop.</p>
<p>You have essentially the same issue. The solution could be just as simple as using some kind of map instead of list collection. If what you're getting at is a many-to-many then you just create a map of lists.</p>
http://stackoverflow.com/questions/220382/how-can-a-windows-service-programmatically-restart-itself/607315#6073150Answer by dviljoen for How can a windows service programmatically restart itself?dviljoen2009-03-03T17:23:41Z2009-03-03T17:23:41Z<p>I would use the Windows Scheduler to schedule a restart of your service. The problem is that you can't restart yourself, but you can stop yourself. (You've essentially sawed off the branch that you're sitting on... if you get my analogy) You need a separate process to do it for you. The Windows Scheduler is an appropriate one. Schedule a one-time task to restart your service (even from within the service itself) to execute immediately.</p>
<p>Otherwise, you'll have to create a "shepherding" process that does it for you.</p>
http://stackoverflow.com/questions/219187/missing-visual-studio-features-when-running-in-64-bit-mode2Missing Visual Studio features when running in 64-bit modedviljoen2008-10-20T17:07:35Z2009-02-23T02:44:12Z
<p>Can someone tell me why I don't have all of the dev studio windows available to me when I develop on a 64-bit platform? I upgraded my dev desktop box to server 2003 x64 to match our deployment platform. Since then (I'm using VS2005) I've noticed that several windows aren't available. I can't view Processes (which is the most annoying) so I don't know which processes I'm attached to. I can attach to a process fine, but it won't show me what is already running under the debugger. There are others, but that's the one that sticks out in my mind at the moment.</p>
<p>My question is where are these limitations of developing under 64 bit documented (assuming they are)? (Of course, I also get the "Edit/Continue" warning dialog all the time telling me that doesn't work in 64-bit)</p>
<p>Also, is VS2008 any better under 64 bit?</p>
<p>Follow-up: Apparently my question is a little bit vague. I'm developing a 64-bit app on a 64-bit development environment. "Recompile it in x86" doesn't solve my problems. </p>
<p>Follow-up #2: I'm giving it one more shot. I WANT TO DEBUG A 64 BIT PROGRAM ON A 64 BIT ENVIRONMENT AND I DON'T HAVE ALL OF THE VISUAL STUDIO FEATURES SHOWING UP. HOW DO I GET THEM?</p>
<p>Follow-up #3: I just installed XP 64 (previously I was using Server 2003 64-bit) and those features all showed up again (Process window, etc). Apparently the server version of windows doesn't provide all of the dev features.</p>
<p>Can anyone tell me why?</p>
http://stackoverflow.com/questions/486393/is-it-possible-to-put-an-event-handler-on-a-different-thread-to-the-caller/505533#505533-1Answer by dviljoen for Is it possible to put an event handler on a different thread to the caller?dviljoen2009-02-03T00:04:29Z2009-02-03T00:04:29Z<p>My comment on Scott W's answer seems a little cryptic after I re-read it. So let me be more explicit:</p>
<pre><code>while( !done )
{
taskDone.WaitOne( 200 );
Application.DoEvents();
}
</code></pre>
<p>The WaitOne( 200 ) will cause it to return control to your UI thread 5 times per second (you can adjust this as you wish). The DoEvents() call will flush the windows event queue (the one that handles all windows event handling like painting, etc.). Add two members to your class (one bool flag "done" in this example, and one return data "street" in your example).</p>
<p>That is the simplest way to get what you want done. (I have very similar code in an app of my own, so I know it works)</p>
http://stackoverflow.com/questions/387815/how-do-you-familiarize-with-a-codebase-that-has-no-documentation/388040#3880401Answer by dviljoen for How do you familiarize with a codebase that has no documentation?dviljoen2008-12-23T02:49:49Z2008-12-23T02:49:49Z<p>THe first thing I always do (in VisualStudio) is create a class diagram of each project in a solution. That lets me see a graphical representation of what I'm working with.</p>
<p>And for some reason I just go through the major classes with a yellow legal pad and just jot down notes on what talks to what. This seems to work for me. Don't really know why, or why its any better than just reading the code.</p>
<p>Also, if there are confusing bits of code that you don't know how its supposed to work, then run it through the debugger and step through it. I always try to keep the call stack visible so I get a feel for the different code paths.</p>
<p>One last thing (and this might not occur to everyone) is run it through a profiler. You are not necessarily looking for performance numbers, but you are interested in the captured code paths. Its actually very useful for seeing what actually is happening when it runs.</p>
http://stackoverflow.com/questions/386609/read-text-file-with-dos-null-byte/386740#3867400Answer by dviljoen for Read Text file with dos null bytedviljoen2008-12-22T17:02:39Z2008-12-22T17:02:39Z<p>I don't know Delphi, but my guess is you probably need to open the file as a binary file and not a text file. Then you can read the bytes directly and convert them to whatever you want.</p>
http://stackoverflow.com/questions/386374/how-to-encrypt-a-value-in-ini-file/386397#3863971Answer by dviljoen for How to encrypt a value in ini filedviljoen2008-12-22T14:43:22Z2008-12-22T14:43:22Z<p>For what purpose? Security? </p>
<p>If you are trying to (e.g.) encrypt a plaintext password you should probably use some implementation of PKI. Remember though, that then key management becomes your problem. Just encrypting the value is not a panacea because the ini file is most likely on the local host's file system, presumably the same place you'll have to store your key pair. You've simply abstracted the problem down a layer. They won't be able to read your encrypted password directly, but if they can find the place you store your key pair they can decrypt it themselves.</p>
http://stackoverflow.com/questions/386309/what-optimization-problems-do-you-want-to-have-solved/386382#3863820Answer by dviljoen for What optimization problems do you want to have solved?dviljoen2008-12-22T14:37:52Z2008-12-22T14:37:52Z<p>Most efficient solution to a given set of Sudoku puzzles. (excluding brute-force methods)</p>
http://stackoverflow.com/questions/384142/how-to-get-latest-record-for-each-day-when-there-are-multiple-entries-per-day/385466#385466-2Answer by dviljoen for How to get latest record for each day when there are multiple entries per day?dviljoen2008-12-22T03:15:13Z2008-12-22T03:15:13Z<p>Just use 'top' and 'order by' clauses.</p>
<p>select top 1 * from [table] where ... order by mydatecolumn</p>
http://stackoverflow.com/questions/324831/breaking-out-of-a-nested-loop/383529#3835290Answer by dviljoen for Breaking out of a nested loopdviljoen2008-12-20T17:48:03Z2008-12-20T17:48:03Z<p>I've seen a lot of examples that use "break" but none that use "continue".</p>
<p>It still would require a flag of some sort in the inner loop:</p>
<pre><code>while( some_condition )
{
// outer loop stuff
...
bool get_out = false;
for(...)
{
// inner loop stuff
...
get_out = true;
break;
}
if( get_out )
{
some_condition=false;
continue;
}
// more out loop stuff
...
}
</code></pre>
http://stackoverflow.com/questions/185802/what-is-the-single-most-important-project-vital-sign-to-track-that-will-help-eval/383516#3835161Answer by dviljoen for What is the single most important project vital sign to track that will help evaluate project health?dviljoen2008-12-20T17:32:08Z2008-12-20T17:32:08Z<p>My suggestion probably sounds strange, but if you think about it, its a pretty good indication of a healthy project. How good are your unit tests?</p>
<p>Think about it. It means:
1) you HAVE unit tests
2) you probably have requirements
3) you probably have a design
4) your code is broken up into "units" that can be tested
5) your units are defined well enough to be tested</p>
<p>AND</p>
<p>6) you will have an immediate feedback on future changes</p>
http://stackoverflow.com/questions/383471/have-you-ever-worked-on-code-older-than-you-are/383512#3835121Answer by dviljoen for Have You Ever Worked On Code Older Than You Are?dviljoen2008-12-20T17:24:50Z2008-12-20T17:24:50Z<p>Wow. I've been programming longer than most of you (so far) have been alive. And probably because of that ... no. I've done some Unix kernel work that is probably the closest I've gotten (I was born in 1966).</p>
http://stackoverflow.com/questions/374386/helper-functions-for-marshalling-arrays-of-structures-with-pointers/380093#3800930Answer by dviljoen for Helper functions for marshalling arrays of structures (with pointers)dviljoen2008-12-19T04:20:43Z2008-12-19T04:20:43Z<p>Here's a couple of methods I used to marshal C++ network structs on a C# client application:</p>
<pre><code> public static T Get<T>(byte[] msg, int offset)
{
T[] t = new T[] { default(T) };
int len = Marshal.SizeOf(typeof(T));
GCHandle th = GCHandle.Alloc(t, GCHandleType.Pinned);
GCHandle mh = GCHandle.Alloc(msg, GCHandleType.Pinned);
try
{
unsafe
{
byte* pb = (byte*)mh.AddrOfPinnedObject();
byte* srcptr = pb + offset;
byte* dest = ((byte*)th.AddrOfPinnedObject());
for (int i = 0; i < len; i++)
{
dest[i] = srcptr[i];
}
}
}
finally
{
mh.Free();
th.Free();
}
return t[0];
}
public static string GetString(byte[] msg, int offset, int length)
{
StringBuilder retVal = new StringBuilder(length);
unsafe
{
fixed (byte* pb = msg)
{
byte* pc = (byte*)(pb + offset);
for (int x = 0; x < length; x++)
{
if (pc[x] == 0) break;
retVal.Append((char)pc[x]);
}
}
}
return retVal.ToString(0, retVal.Length);
}
</code></pre>
http://stackoverflow.com/questions/353596/xsd-utility-question-in-vs20082XSD utility question in VS2008dviljoen2008-12-09T17:33:51Z2008-12-15T15:57:13Z
<p>I've copied a Dataset from one csproj to another, and the new project gets the following compile warning:
"The custom tool 'MSDataSetGenerator' failed while processing the file 'Client.xsd'."</p>
<p>In researching this warning I discovered that if I opened a VS cmd prompt and run XSD.exe on the xsd file directly I get more info. It says:
"Error: Can only generate one of classes or datasets."</p>
<p>The command line flag that fixes this is to run:
XSD /d {xsdfilename}</p>
<p>If I run that on the cmd line it generates the dataset code just fine. But I can't figure out how to make Visual Studio do that. Anyone know?</p>
http://stackoverflow.com/questions/310680/batch-updates-using-dataadapter0Batch Updates using DataAdapterdviljoen2008-11-22T01:17:25Z2008-12-11T07:25:03Z
<p>I have a situation where I have a bunch of SQL Update commands that all need to be executed. I know that DataSets can do batch updates, but the only way I've been able to accomplish it is to load the whole table into a dataset first. What if I want to only update a subset of the records in a table?</p>
http://stackoverflow.com/questions/315692/open-dialog-preserving-settings/346282#3462820Answer by dviljoen for Open Dialog preserving settingsdviljoen2008-12-06T13:49:15Z2008-12-06T13:49:15Z<p>You could inherit from the dialog's class and then see what can be overriden to do the persistence of its state.</p>
http://stackoverflow.com/questions/333927/why-didnt-header-files-catch-on-in-other-programming-languages/334101#3341011Answer by dviljoen for Why didn't header files catch on in other programming languages?dviljoen2008-12-02T14:28:05Z2008-12-02T14:28:05Z<p>I would say that most OO languages get all of the mileage they need along these lines from having Interfaces. It provides all the flexibility (i.e. - separating interface from implementation) of header files, while having stricter contracts with the clients using the interfaces (because they are enforced by the language/compiler).</p>
http://stackoverflow.com/questions/316894/how-do-i-find-the-lockholder-reader-of-my-readerwriterlock-in-windbg/322821#3228210Answer by dviljoen for How do I find the lockholder (reader) of my ReaderWriterLock in windbgdviljoen2008-11-27T02:48:55Z2008-11-27T02:48:55Z<p>An approach that would provide traceability is to wrap your locks into an IDisposable interface and replace:</p>
<p>lock( mylock) { ... }</p>
<p>with </p>
<p>using( new DisposeableLock() ) { ... }</p>
<p>You can log the constructor and Dispose() methods either to the console, or log4net, or some other mechanism. This will allow you to see what is being lock and what is blocking on what.</p>
http://stackoverflow.com/questions/215451/scheduling-a-worker-with-overlapping-periodic-tasks/322806#3228060Answer by dviljoen for Scheduling a worker with overlapping periodic tasks dviljoen2008-11-27T02:34:20Z2008-11-27T02:34:20Z<p>Hmmmm. How about ... you do your own homework!</p>
http://stackoverflow.com/questions/321246/how-to-capture-image-from-client-webcam-in-asp-net/322800#3228000Answer by dviljoen for How to capture image from client webcam in asp.netdviljoen2008-11-27T02:29:03Z2008-11-27T02:29:03Z<p>This sounds very suspicious to me. You realize the nefarious applications this could be applied to, right? A web page that when a user browses to it, unknownst to them, their webcam snaps a pic of them. ... I don't like it.</p>
http://stackoverflow.com/questions/313691/how-to-calculate-save-memory-useage-of-net-app-on-terminal-servers/316111#3161111Answer by dviljoen for How to calculate/save memory useage of .NET app on terminal servers?dviljoen2008-11-25T01:37:32Z2008-11-25T01:37:32Z<p>Its very difficult to get metrics on actual memory usage in .NET. About the closest approximation you can get is on a per-object basis by calling Marshal.SizeOf(). My understanding of that method is that it is essentially measuring the size of a serialized version of the object, and the in-memory footprint may be close to that, its not exact. But its a good estimate.</p>
<p>You may also want to investigate the SMS API's under .NET. They provide ways to query various memory statistics from the Operating System about your process (or other processes). Its the same library that is used by "perfmon". You may be able to use that to inspect your process programatically.</p>
<p>Also, you'll want to invest in a good profiling tool for .NET. I've evaluated ANTS and dotTrace. They are both very good. I preferred dotTrace for its simplicity. Most profilers have very non-intuitive interfaces. That's something I've just come to expect. dotTrace is actually quite good, by those standards. ANTS I think is probably more advanced (not sure, just my opinion from the brief eval I did on both of them).</p>
http://stackoverflow.com/questions/309160/what-programming-language-should-be-taught-in-computer-science-101/310702#3107020Answer by dviljoen for What programming language should be taught in Computer Science 101?dviljoen2008-11-22T01:37:13Z2008-11-22T01:37:13Z<p>When I was in college we had to chisel our programs out onto stone cards that fed into...</p>
<p>Oh, no, not quite that bad. I was doing a dual-major in Math/Comp Sci at University of Pittsburgh in the late 80's and we used Pascal. It was everywhere back then. (Ever tried to find a Delphi programmer today? Ha!)</p>
<p>The reason it was chosen is probably the same criteria that are used today, which is why Java and C# are going to be so popular now. It was the clearest representation of the state of the art of programming techniques and methodologies of the time.</p>
<p>I think that is the standard by which any language should be chosen. Everyone has their own favorite, but that is a different question than which one should be used to teach programming. My favorite language is the one I prefer to use to solve problems. In learning/teaching programming you aren't trying to solve problems; you are trying to communicate concepts. The language that allows you the most flexibility in teaching common concepts is the one that is best.</p>
<p>But this also presupposes that you only need one language. I would think that with the plethora of development methodologies and approaches available today that only using one language would be pretty limiting.</p>
<p>That being said, I would probably pick Python. I say that because its really easy to get past the syntax and it interfaces with everything else there is out there. It would be really easy to move to almost any other language from Python.</p>
http://stackoverflow.com/questions/310282/explaining-race-conditions-to-a-non-technical-audience/310690#3106900Answer by dviljoen for Explaining race conditions to a non-technical audiencedviljoen2008-11-22T01:27:06Z2008-11-22T01:27:06Z<p>A picture is worth a 1000 words. Its true. If you draw a timeline and put some entity on it, and show its state changes as time progresses you can demonstrate a race-condition pretty easily in one diagram. It may take a few redos to get the picture just right, but I've always found that drawing it out gets my point across must faster than describing it.</p>
http://stackoverflow.com/questions/309895/vdproj-auto-upgrading-vs-uninstall-reinstall4VDPROJ auto upgrading vs. uninstall/reinstalldviljoen2008-11-21T19:28:46Z2008-11-21T19:40:20Z
<p>I've seen a confusing behavior regarding the MSI files generated by a VDPROJ file. If I build my MSI in Visual Studio and then right-click and pick "Install" from within Visual Studio, it will automagically uninstall any version that is already installed and then install the new MSI.</p>
<p>However, if take the generated MSI and run it directly it will complain if a previous version is already installed. I have to uninstall it explicitly (in Add/Remove Programs) first.</p>
<p>What's the deal? Is there a command-line argument that Visual Studio executes the MSI with?</p>
http://stackoverflow.com/questions/307292/how-to-use-an-appdomain-to-limit-a-static-class-scope-for-thread-safe-use/309520#3095200Answer by dviljoen for How to use an AppDomain to limit a static class' scope for thread-safe use?dviljoen2008-11-21T17:16:18Z2008-11-21T17:28:02Z<p>If you have shared statics that are conflicting with each other, then you might want to try adding [ThreadStatic] attribute to them. This will make them local to each thread. That may solve your problem in the short term. A correct solution would be to simply rearchitect your stuff to be thread-safe.</p>
http://stackoverflow.com/questions/305345/moq-multi-interface-question/308894#3088943Answer by dviljoen for Moq multi-interface questiondviljoen2008-11-21T14:12:27Z2008-11-21T14:12:27Z<p>I found this link:
<a href="http://forum.castleproject.org/viewtopic.php?p=14322&sid=6327e0e0b3a61cff948bf2d35a9e923d" rel="nofollow">Castle Project Topic</a></p>
<p>which seems to indicate that its a problem in Castle's DynamicProxy, which is used by Moq (and RhinoMocks).</p>
http://stackoverflow.com/questions/50332/treeview-drag-drop-help-invalid-formatetc-structure-exception/52030#52030Comment by dviljoen on TreeView Drag & Drop help - _Invalid FORMATETC structure_ exceptiondviljoen2009-06-24T18:54:59Z2009-06-24T18:54:59ZYou're giving a c/c++ answer to a c# question.http://stackoverflow.com/questions/559719/windows-impersonation-from-c/559740#559740Comment by dviljoen on Windows Impersonation from C#dviljoen2009-02-18T03:42:34Z2009-02-18T03:42:34ZI've used these examples in real code, and they work. Good call.http://stackoverflow.com/questions/486393/is-it-possible-to-put-an-event-handler-on-a-different-thread-to-the-caller/505533#505533Comment by dviljoen on Is it possible to put an event handler on a different thread to the caller?dviljoen2009-02-10T23:50:10Z2009-02-10T23:50:10ZIf there's no Application instance then you are not running.http://stackoverflow.com/questions/486393/is-it-possible-to-put-an-event-handler-on-a-different-thread-to-the-caller/505533#505533Comment by dviljoen on Is it possible to put an event handler on a different thread to the caller?dviljoen2009-02-03T15:16:10Z2009-02-03T15:16:10ZOh! Also, the return value of WaitOne can tell you whether it returned because it timed out or it was signalled. You can use this for "done".http://stackoverflow.com/questions/486393/is-it-possible-to-put-an-event-handler-on-a-different-thread-to-the-caller/486552#486552Comment by dviljoen on Is it possible to put an event handler on a different thread to the caller?dviljoen2009-02-02T23:56:24Z2009-02-02T23:56:24ZI believe you can call WaitOne() with a timeout value (either in msec's or using a TimeSpan). You can put it in a while loop and make sure to call Application.DoEvents() everything you leave the WaitOne on a timeout so the UI thread can update itself.http://stackoverflow.com/questions/383471/have-you-ever-worked-on-code-older-than-you-are/383512#383512Comment by dviljoen on Have You Ever Worked On Code Older Than You Are?dviljoen2009-01-05T02:49:04Z2009-01-05T02:49:04ZHa! I checked your profile. You've only got 5 years on me!http://stackoverflow.com/questions/303876/what-is-your-best-programming-experience/303992#303992Comment by dviljoen on What is your best programming experience?dviljoen2009-01-01T04:53:16Z2009-01-01T04:53:16ZHAHA! Check this:
<a href="http://stackoverflow.com/questions/63241/what-is-the-strangest-programming-language-you-have-used#212951" rel="nofollow" title="what is the strangest programming language you have used%23212951">stackoverflow.com/questions/63241/…</a>http://stackoverflow.com/questions/387815/how-do-you-familiarize-with-a-codebase-that-has-no-documentationComment by dviljoen on How do you familiarize with a codebase that has no documentation?dviljoen2008-12-23T02:51:08Z2008-12-23T02:51:08ZAwesome question that rarely gets asked.http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/246153#246153Comment by dviljoen on What is the worst interviewee answer?dviljoen2008-12-22T14:55:15Z2008-12-22T14:55:15ZFreaking awesome!http://stackoverflow.com/questions/384738/state-licensing-for-programmers/384740#384740Comment by dviljoen on State Licensing for Programmersdviljoen2008-12-22T03:13:19Z2008-12-22T03:13:19ZHa! I worked for a company that provided moving object detection software to those traffic light cameras you see now (instead of having the sensors in the road). Talk about causing bodily harm if your screw up. Try turning both lights green!http://stackoverflow.com/questions/324831/breaking-out-of-a-nested-loop/324849#324849Comment by dviljoen on Breaking out of a nested loopdviljoen2008-12-20T17:41:53Z2008-12-20T17:41:53ZSimple, concise. I like it.http://stackoverflow.com/questions/310680/batch-updates-using-dataadapter/310867#310867Comment by dviljoen on Batch Updates using DataAdapterdviljoen2008-12-13T16:52:22Z2008-12-13T16:52:22ZThat's a great suggestion. Sorry for the delay in replying. I'm going to try that. Any suggestions on the sql for autoupdating the records from the temp table to the real one? A stored proc?http://stackoverflow.com/questions/269090/net-runtime-2-0-error-in-a-service/269463#269463Comment by dviljoen on .NET Runtime 2.0 Error in a servicedviljoen2008-12-13T16:48:14Z2008-12-13T16:48:14ZIn reviewing my old questions, I realized this problem went away with an .NET update at some point. Anyway, since your suggestion was something new I learned, I'm just going to say you got the correct (and only) answer.http://stackoverflow.com/questions/333954/remoting-performance-degrades-over-the-timeComment by dviljoen on Remoting performance degrades over the timedviljoen2008-12-06T13:45:50Z2008-12-06T13:45:50ZWhat is the payload? In other words, can you share the interface of the server with us? What is the data you are passing back and forth? Is it growing? Is there heavy serialization involved? What else is your app doing? Is it becoming I/O-bound? Thread-bound? Memory-bound?http://stackoverflow.com/questions/342946/managing-database-connectivity-with-ado-net/342985#342985Comment by dviljoen on Managing database connectivity with ADO.NETdviljoen2008-12-05T17:59:15Z2008-12-05T17:59:15ZYou can also just come back and edit this answer to be a real answer when you get your feedback. So this non-answer answer can become a real-answer answer. ;-)