User Rob Walker - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T22:42:43Z http://stackoverflow.com/feeds/user/3631 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1773897/why-is-argc-an-int-rather-than-an-unsigned-int/1774084#1774084 3 Answer by Rob Walker for Why is argc an 'int' (rather than an 'unsigned int')? Rob Walker 2009-11-21T00:37:51Z 2009-11-21T00:37:51Z <p>It was a prescient design decision to make it easier to port C programs to Java in the future since there are no unsigned types in Java.</p> http://stackoverflow.com/questions/1768314/will-antlr-help-different-suggestion/1774031#1774031 0 Answer by Rob Walker for Will ANTLR Help? Different Suggestion? Rob Walker 2009-11-21T00:20:50Z 2009-11-21T00:20:50Z <p>If the format of the file is up to the user can you even define a grammar for it? </p> <p>Seems like you just want a lexer at best. Using ANTLR just for the lexer part is possible, but would seem like overkill.</p> http://stackoverflow.com/questions/1726825/is-there-any-possible-way-to-exchange-data-in-binary-format-between-windows-and-s/1726829#1726829 3 Answer by Rob Walker for Is there any possible way to exchange data in binary format between windows and solaris Rob Walker 2009-11-13T02:52:26Z 2009-11-13T02:52:26Z <p>Check out Google's <a href="http://code.google.com/apis/protocolbuffers/" rel="nofollow">protocol buffers</a> as a fast way of serializing data.</p> http://stackoverflow.com/questions/1717916/find-out-if-computer-rebooted-since-the-last-time-my-program-ran/1718092#1718092 0 Answer by Rob Walker for Find out if computer rebooted since the last time my program ran? Rob Walker 2009-11-11T21:11:32Z 2009-11-11T21:11:32Z <p>In the vein of ugly hacks ... stick something in one of the <a href="http://support.microsoft.com/kb/137367" rel="nofollow">RunOnce</a> registry keys</p> http://stackoverflow.com/questions/1715989/is-there-any-way-to-catch-compile-errors-in-all-build-configurations/1716008#1716008 1 Answer by Rob Walker for Is there any way to catch compile errors in all build configurations? Rob Walker 2009-11-11T15:38:14Z 2009-11-11T15:38:14Z <p>You need to build each configuration to see if something conditional breaks one of them. You can avoid the manual step using the 'batch build' option from the build menu though.</p> http://stackoverflow.com/questions/1713082/what-is-the-base-of-the-logarithm-for-the-purposes-of-algorithms/1713098#1713098 6 Answer by Rob Walker for What is the base of the logarithm for the purposes of Algorithms? Rob Walker 2009-11-11T04:52:29Z 2009-11-11T04:52:29Z <p>It doesn't matter, the relative complexity is the same regardless of the base used.</p> http://stackoverflow.com/questions/1712830/32bit-application-access-to-64bit-registry/1712844#1712844 3 Answer by Rob Walker for 32bit application access to 64bit registry Rob Walker 2009-11-11T03:34:20Z 2009-11-11T03:34:20Z <p>Check out <a href="http://msdn.microsoft.com/en-us/library/ms724072%28VS.85%29.aspx" rel="nofollow">MSDN</a> for details on how to access the exact hive you want</p> <blockquote> <p>The <code>KEY_WOW64_64KEY</code> and <code>KEY_WOW64_32KEY</code> flags enable explicit access to the 64-bit registry view and the 32-bit view, respectively.</p> </blockquote> http://stackoverflow.com/questions/253981/identifying-files-for-a-hot-fix-patch 1 Identifying files for a hot fix/patch Rob Walker 2008-10-31T15:49:22Z 2009-11-09T23:00:02Z <p>We (occasionally!) have to issue hot fixes for our product and do this by reissuing the affected files directly rather than with a new installer. The product has a large number of pieces, some managed code, some unmanaged.</p> <p>Currently development flags which build artifacts (exes, dlls) need to be shipped in a hot fix. We'd like to be able to identify these automatically by comparing them to the previous build. A simple binary diff doesn't work since the version numbers on all the files have changed as stamping the files with a new number if part of the build.</p> <p>Are there any tools that will do a more intelligent comparison and decide which files should be included? We'd still have a developer check the list, this is more to catch files the developer didn't think of than the other way around.</p> <p>(Note: changing the hot fix/build process is not an immediate option, whether or not we should be shipping individual files is a different discussion!)</p> http://stackoverflow.com/questions/1704268/getting-a-methods-return-value-in-the-vs-debugger/1704328#1704328 4 Answer by Rob Walker for Getting a Method's Return Value in the VS Debugger Rob Walker 2009-11-09T22:22:14Z 2009-11-09T22:22:14Z <p>You can always switch to disassembler view and step through the individual instructions. The return value will be in @eax (or @rax) just before you execute the 'ret' instruction.</p> http://stackoverflow.com/questions/1704165/is-there-a-way-to-improve-the-speed-or-efficiency-of-this-lookup-c-c/1704237#1704237 6 Answer by Rob Walker for Is there a way to improve the speed or efficiency of this lookup? (C/C++) Rob Walker 2009-11-09T22:07:59Z 2009-11-09T22:07:59Z <p>Using some kind of string builder rather than repeated concatenation into 'key' would provide a significant speed boost.</p> http://stackoverflow.com/questions/1703382/c-protected-field-to-private-add-property-why/1703424#1703424 1 Answer by Rob Walker for C# protected field to private, add property--why? Rob Walker 2009-11-09T20:08:10Z 2009-11-09T20:08:10Z <p>Your translation is correct. The same argument for can be made for using 'protected' properties as can be made for using 'public' properties instead of exposing member variables directly.</p> <p>If this just leads to a proliferation of simple getters and setters then I think the damage to code readablity outweighs the benefit of being able to change the code in the future. With the development of compiler-generated properties in C# this isn't quite so bad, just use:</p> <pre><code>protected string Domain { get; set; } </code></pre> http://stackoverflow.com/questions/1698428/modify-dll-exports-symbol-table-i-want-to-obfuscate-the-function-names/1698441#1698441 0 Answer by Rob Walker for Modify dll exports (symbol table). I want to obfuscate the function names. Rob Walker 2009-11-09T00:09:21Z 2009-11-09T00:09:21Z <p>Not without modifying the binary, and if the DLL is signed then this would invalidate the signature. </p> <p>Even if it isn't signed it would probably violate the license agreement that governs the use of the DLL.</p> http://stackoverflow.com/questions/1698195/microsoft-assembly-configuration-for-32-bit-mixed-c-c-application/1698414#1698414 0 Answer by Rob Walker for Microsoft Assembly configuration for 32-bit mixed C/C++ application Rob Walker 2009-11-08T23:56:02Z 2009-11-08T23:56:02Z <p>I've never understood how the manifest stuff all hangs together ... but instead of placing the C runtime DLLs in the same directory as your exe try copying the whole 'Microsoft.VC90.CRT' folder from the redist folder in the Visual Studio install (C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\redist\x86\Microsoft.VC90.CRT on my machine).</p> <p>I believe Microsoft encourages the use of shared libraries and running the official redist since it installs the libraries 'properly' and means they can patch security issues that may be found in them.</p> http://stackoverflow.com/questions/1693011/how-to-determine-return-address-on-stack/1693051#1693051 2 Answer by Rob Walker for How to determine return address on stack ? Rob Walker 2009-11-07T13:39:09Z 2009-11-07T13:39:09Z <p>To know where the return address is you need to know what the <a href="http://en.wikipedia.org/wiki/Calling%5Fconvention" rel="nofollow">calling convention</a> is. This will typically be set by the compiler and depends on the platform, but you can force it in platform specific ways, for example using <code>__declspec(stdcall)</code> on windows. An optimizing compiler may also invent its own calling convention for functions that don't have external scope.</p> <p>Barring the use of compiler built-ins to get the return address you would have to resort to inline assembler to get the value. Other techniques that appear to work in debug would be very vunerable to compiler optimizations messing them up.</p> http://stackoverflow.com/questions/1691164/how-do-i-trace-into-an-externally-compiled-lib-in-visual-c/1691332#1691332 0 Answer by Rob Walker for How do I trace into an externally-compiled lib in Visual C++ Rob Walker 2009-11-06T23:59:34Z 2009-11-06T23:59:34Z <p>Symbol files (pdb's) only exist for modules (exe's and dll's) not for object files. A library is just a collection of .obj files. </p> <p>If the source was compiled with debugging information then that is embedded in the .obj files which the linker will pull out into the final pdb. All you need is the pdb for your exe to be able to see symbols for the OpenSSL code. </p> <p>You will need to set the source path in the debugger to include the OpenSSL directory in order to be able to line these symbols up with source.</p> <p>If you are using Visual Studio make sure the 'Debug only my code' option (or something like that) is <strong>disabled</strong> in the debugger settings ... though I don't think this affects code compiled into your exe. More likely the debugger just doesn't know where the source is to step into.</p> http://stackoverflow.com/questions/1690743/finding-the-number-of-user-objects-used-by-a-process/1690794#1690794 1 Answer by Rob Walker for Finding the number of USER Objects used by a process. Rob Walker 2009-11-06T22:03:46Z 2009-11-06T22:03:46Z <p>Try <a href="http://msdn.microsoft.com/en-us/library/ms683192%28VS.85%29.aspx" rel="nofollow">GetGuiResources</a> which you can call using <a href="http://www.pinvoke.net/default.aspx/user32/GetGuiResources.html?DelayRedirect=1" rel="nofollow">P/Invoke</a></p> http://stackoverflow.com/questions/1690562/net-solution-many-projects-vs-one-project/1690664#1690664 3 Answer by Rob Walker for .NET solution - many projects vs one project Rob Walker 2009-11-06T21:42:04Z 2009-11-06T21:42:04Z <p>We've noticed that Visual Studio's performance degrades significantly as the number of projects grows. Something as simple as switching from 'Debug' to 'Release' configurations can takes upwards of 15 seconds for solutions with around a dozen C# projects in them.</p> <p>Also, as a counter point to Reed's comment about build times, I've seen build times grow because Visual Studio seems to be spending a lot of time on the project overhead. The actual compile times seem fast, but the total time from hitting build to being able to run is significant.</p> <p>My advice would be keep the number of projects to the minimum you can get away with. If you need multiple projects for good reasons then use them as necessary, but prefer to keep things together. You can also refactor to split a project into two if necessary.</p> http://stackoverflow.com/questions/1690247/must-i-abort-this-thread-waiting-for-namedpipes-how-do-i-do-this-properly/1690412#1690412 0 Answer by Rob Walker for Must i abort this thread? Waiting for namedpipes. How do i do this properly? Rob Walker 2009-11-06T21:00:30Z 2009-11-06T21:00:30Z <p>As you suggest ... don't use Thread.Abort. Unless you have a very compelling reason why no other option will work it is a bad idea.</p> <p>The problem is the blocking call to ReadLine ... so instead use StreamReader.Peek/Read to pull data from the named pipe. This will allow you to check a flag in the loop so that you can exit.</p> <p>For a more complex solution you could use asynchronous I/O ... see this <a href="http://stackoverflow.com/questions/1247237/namedpipeserverstream-async-reliable-disconnect-issues">question</a> for some pointers.</p> http://stackoverflow.com/questions/1689957/using-c-api-in-c/1689985#1689985 4 Answer by Rob Walker for Using C++ API in C# Rob Walker 2009-11-06T19:58:27Z 2009-11-06T19:58:27Z <p>The easiest way is to write a 'shim' assembly in <a href="http://en.wikipedia.org/wiki/C%2B%2B/CLI" rel="nofollow">C++/CLI</a>. This lets you mix the unmanaged interface and managed code together so you can 'translate' the unmanaged API into some that is consumable in managed code.</p> <p>There are lots of resources out there, for an in depth overview see <a href="http://www.gotw.ca/publications/C++CLIRationale.pdf" rel="nofollow">C++/CLI Rationale</a> and for a discussion of the interop issues try this post on a <a href="http://blogs.microsoft.co.il/blogs/sasha/archive/2008/02/16/net-to-c-bridge.aspx" rel="nofollow">.NET to C++ Bridge</a>.</p> http://stackoverflow.com/questions/1689019/c-watch-a-memory-location-install-data-breakpoint-from-code/1689069#1689069 8 Answer by Rob Walker for C++: watch a memory location/install 'data breakpoint' from code? Rob Walker 2009-11-06T17:23:37Z 2009-11-06T17:23:37Z <p>If you can control the location of the variable then you can allocate it on a dedicated page and set the permissions of the page to allow reads only using <a href="http://msdn.microsoft.com/en-us/library/aa366898%28VS.85%29.aspx" rel="nofollow">VirtualProtect</a> (on Windows ... not sure for Linux).</p> <p>This way you will get an access violation when someone tries to write to it. With an exception translator function you could treat this as a callback.</p> <p>Even if you can't move the variable directly (eg. it is a class member), maybe you could add sufficient padding around the variable to ensure it is on a dedicated page and use the same approach.</p> http://stackoverflow.com/questions/1683091/how-to-find-recursion-in-your-app/1683145#1683145 3 Answer by Rob Walker for How to find recursion in your app? Rob Walker 2009-11-05T19:58:30Z 2009-11-05T19:58:30Z <p>I agree a regexp isn't going to cut it here. </p> <p>A more direct way would be to get a dump file and look at it to see where the exception was thrown.</p> <p>Or you could look at a static analysis tool like <a href="http://www.ndepend.com/" rel="nofollow">NDepend</a> to examine the programs flow.</p> http://stackoverflow.com/questions/1683013/writing-a-binary-file-in-c-to-be-read-by-c-program-with-pointers/1683101#1683101 0 Answer by Rob Walker for Writing a binary file in C# to be read by C program, with pointers? Rob Walker 2009-11-05T19:52:54Z 2009-11-05T19:52:54Z <p>The only way you can be (correctly) writing pointers to disk is if you are using something like <a href="http://msdn.microsoft.com/en-us/library/57a97k4e%28VS.80%29.aspx" rel="nofollow">based addressing</a>:</p> <blockquote> <p>A linked list that consists of pointers based on a pointer can be saved to disk, then reloaded to another place in memory, with the pointers remaining valid. </p> </blockquote> <p>Handling this in C# would be extremely difficult and require some kind of mapping layer during serialization.</p> http://stackoverflow.com/questions/262232/concurrent-data-structure-design 6 Concurrent data structure design Rob Walker 2008-11-04T16:02:26Z 2009-11-05T05:14:19Z <p>I am trying to come up with the best data structure for use in a high throughput C++ server. The data structure will be used to store anything from a few to several million objects, and no sorting is required (though a unique sort key can be provided very cheaply).</p> <p>The requirements are that it can support efficient insert, ideally O(1), moderately efficient removal, and efficient traversal. It doesn't need to support a find operation (other than might be needed for removal).</p> <p>The twist is that it must be thread safe with respect to modifications while other threads are enumerating the data structure. This means that a simple red-black tree doesn't work, since one thread can't insert an element (and perform the necessary tree rotations) without messing up any cursors held by other threads.</p> <p>It is <strong>not</strong> acceptable to use a read/write lock and defer the write operations until all readers have finished, since read operations may be long lived. It doesn't matter if inserts that happen while there is a reader are visible to that reader or not.</p> <p>Memory footprint is also very important, and small is obviously better!</p> <p>What suggestions are there?</p> <p><strong>Response to comments:</strong></p> <p>Thanks for the answers.</p> <p>No, inserts cannot invalidate existing iterators. Iterators may or may not see the new insert, but they must see everything that they would have seen if the insert hadn't occurred.</p> <p>Deletion is required, however due to higher level rules I can guarantee that a iterator will never be stopped on an item that is available for deletion.</p> <p>Locking per node for a cursor would have too great an impact on performance. There may be a number of threads reading at once, and any kind of memory hot spot that multiple threads are using in a lock kills memory bandwidth (as we discovered the hard way!). Even a simple count of readers with multiple threads calling InterlockedIncrement fails to scale cleanly. </p> <p>I agree a linked list is likely the best approach. Deletes are rare, so paying the memory penalty for the back pointers to support O(1) delete is costly and we may compute those separately on demand and since deletes tend to be batch operations.</p> <p>Fortunately insertion into a linked list doesn't require any locking for readers, as long as the pointers are updated in the inserted node before the head pointer is changed.</p> <p>The lock-copy-unlock idea is interesting. The amount of data involved is too large for this to work as the default for readers, but it could be used for writers when they collide with readers. A read/write lock would protect the whole structure, and the write would clone the data structure if it collides with a reader. Writes are much rarer than reads.</p> http://stackoverflow.com/questions/49906/best-tools-for-code-reviews 19 Best tools for code reviews Rob Walker 2008-09-08T15:11:56Z 2009-10-08T16:29:49Z <p>It has been well established that code reviews are good, so this question is purely about the mechanics. For a dev environment centered around Visual Studio and Subversion what are the best tools for handling code reviews? </p> <p>We currently use TortoiseSVN as the Subversion client. so accessing diffs, logs, etc. is fairly straight forward, but I think the process could be streamlined more by a tool that was designed for code reviews. Are there any out there?</p> <p><strong>Update:</strong> Thanks for the input. ReviewBoard looks interesting, but would be difficult to fit into our infrastructure due to the lack of Windows hosting. rietveld appears to be at a very early stage at the moment. The commercial offerings certainly look more polished and the pricing isn't bad for a tool that would be a non-trivial part of a developers time.</p> <p><hr /></p> <p>For those interested, see <a href="http://beta.stackoverflow.com/questions/1542/online-peer-code-review" rel="nofollow">related</a> <a href="http://stackoverflow.com/questions/403/tool-to-aid-code-review">questions</a></p> http://stackoverflow.com/questions/37133/programming-for-a-9-year-old 19 "Programming" for a 9 year old Rob Walker 2008-08-31T21:34:19Z 2009-09-11T04:03:51Z <p>I am looking for recommendations on a web site/software for providing an introduction to programming concepts for my 9 year old. </p> <p>I remember using Logo/turtle graphics at a similar age and would love a simple self-contained web site that gave a number of step-by-step tutorials. There is some neat current generation Logo software out there, but the packages I looked at seemed more complex that I wanted for an absolute beginner.</p> <p>Any experiences that have worked well?</p> <p><strong>Update:</strong> Thanks for all the great suggestions. The 'in-game' environments look like the best bet to start with, though I might just have to get some of the Lego NXT to see if it is suitable!</p> http://stackoverflow.com/questions/321241/dead-code-identification-c 24 Dead code identification (C++) Rob Walker 2008-11-26T16:07:29Z 2009-07-03T09:44:32Z <p>I have a large legacy C++ project compiled under Visual Studio 2008. I know there is a reasonably amount of 'dead' code that is not accessed anywhere -- methods that are not called, whole classes that are not used.</p> <p>I'm looking for a tool that will identify this by <strong>static analysis</strong>.</p> <p>This question: <a href="http://stackoverflow.com/questions/229069/dead-code-detection-in-legacy-cc-project">Dead code detection in legacy C/C++ project</a> suggests using code coverage tools. This isn't an option as the test coverage just isn't high enough. </p> <p>It also mentions a -Wunreachable-code. option to gcc. I'd like something similar for Visual Studio. We already use the linker's /OPT:REF option to remove redundant code, but this doesn't report the dead code at a useful level (when used with /VERBOSE there are over 100,000 lines, including a lot from libraries).</p> <p>Are there any better options that work well with a Visual Studio project?</p> http://stackoverflow.com/questions/650578/replacement-for-import-in-visual-c 5 Replacement for #import in Visual C++ Rob Walker 2009-03-16T14:08:40Z 2009-06-05T12:27:45Z <p>We have large C++ project that we used to compile with the /MP switch to take advantage of multiple cores.</p> <p>However, we recently brought in some code that uses #import on a couple of tlb's, and #import is incompatibile with /MP, which means we are back to single threaded builds and a lot more time to get coffee.</p> <p>Any suggestions on how to get #import and /MP to play nice? Is there a tool that will statically generate the C++ headers from a #import as a pre-build step?</p> <p><strong>Update:</strong></p> <p>Following Matt's advice worked great. For anyone else stumbling over this in google:</p> <ol> <li>create a separate static lib project</li> <li>set up enough includes so you can put the <code>#import</code> statement in the lib project</li> <li>make your main project dependent on the lib project (to ensure correct build order)</li> <li>add the lib project's temporary build folder to the include path for the main project</li> <li><code>#include</code> the generated <code>.tlh</code> files where you were doing the <code>#import</code></li> <li>enable the <code>/MP</code> switch and lose the coffee break time... </li> </ol> http://stackoverflow.com/questions/831452/automatically-truncating-strings-in-nhibernate-sql-server 0 Automatically truncating strings in NHibernate / SQL Server Rob Walker 2009-05-06T19:57:42Z 2009-05-06T20:03:39Z <p>I have a nvarchar(2000) column in a SQL Server 2005 database, and have mapped this into NHibernate as:</p> <pre><code>&lt;property name="Query" column="`Query`" type="String" length="2000" not-null="false"/&gt; </code></pre> <p>The DTO class just presents a string property:</p> <pre><code> public virtual string Query { get; set; } </code></pre> <p>If I set the query to a string of > 2000 characters I get an exception from SQL server to the effect of:</p> <blockquote> <p>"String or binary data would be truncated. The statement has been terminated."</p> </blockquote> <p>What I want is for this truncation to just happen automatically and silently. I could override the virtual property and force the truncation on the property set, but feel there should be a way to get this behaviour by default, either via the NHibernate mapping or even as a SQL server setting.</p> <p>Am I missing anything ... I don't want to change the db schema to allow longer strings.</p> http://stackoverflow.com/questions/766196/display-a-percentage-in-a-label/766221#766221 2 Answer by Rob Walker for Display a percentage in a label Rob Walker 2009-04-19T22:11:43Z 2009-04-19T22:11:43Z <p>Or: <code>String.Format("{0:0.00}", totalPercent);</code></p> <p>See <a href="http://www.csharp-examples.net/string-format-double/" rel="nofollow">here</a> for some examples of how to format numbers differently.</p> http://stackoverflow.com/questions/765383/static-exception-instance/765389#765389 9 Answer by Rob Walker for Static exception instance Rob Walker 2009-04-19T13:09:25Z 2009-04-19T13:09:25Z <p>An exception's stacktrace is set when it is thrown (<a href="http://msdn.microsoft.com/en-us/library/system.exception.stacktrace.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.exception.stacktrace.aspx</a>), so this code is not thread safe.</p> <p>Multiple threads will be using the same exception object and anyone relying on the content of the exception will get confusing results.</p> http://stackoverflow.com/questions/1717916/find-out-if-computer-rebooted-since-the-last-time-my-program-ran/1718092#1718092 Comment by Rob Walker on Find out if computer rebooted since the last time my program ran? Rob Walker 2009-11-12T01:08:01Z 2009-11-12T01:08:01Z It probably wouldn't work for non-admin accounts ... it was an ugly hack! The vague idea was to see if Windows had deleted the entry, implying a restart had happened. http://stackoverflow.com/questions/1705324/vfprintf-causes-run-time-error Comment by Rob Walker on vfprintf causes run-time error Rob Walker 2009-11-10T02:48:12Z 2009-11-10T02:48:12Z How do you get a runtime error, if you got a compile time error? What did you change to get it to compile? http://stackoverflow.com/questions/1698195/microsoft-assembly-configuration-for-32-bit-mixed-c-c-application/1698414#1698414 Comment by Rob Walker on Microsoft Assembly configuration for 32-bit mixed C/C++ application Rob Walker 2009-11-09T15:13:37Z 2009-11-09T15:13:37Z The best approach is to run VCRedist and not do anything else with copying DLLs. If you want to avoid that then copy the folder &quot;Microsoft.VC80.CRT&quot; (not just its contents) from &quot;C:\Program Files (x86)\Microsoft Visual Studio 8\VC\redist\x86&quot; to the same folder as your exe. There are 3 dlls within this folder. http://stackoverflow.com/questions/1698195/microsoft-assembly-configuration-for-32-bit-mixed-c-c-application/1698414#1698414 Comment by Rob Walker on Microsoft Assembly configuration for 32-bit mixed C/C++ application Rob Walker 2009-11-09T01:41:29Z 2009-11-09T01:41:29Z Copy the folder to the same directory as your exe. Typically the installer will run the VCRedist piece itself (I believe it is also available as a msi module). http://stackoverflow.com/questions/1698428/modify-dll-exports-symbol-table-i-want-to-obfuscate-the-function-names/1698441#1698441 Comment by Rob Walker on Modify dll exports (symbol table). I want to obfuscate the function names. Rob Walker 2009-11-09T00:41:58Z 2009-11-09T00:41:58Z I doubt there are any programs available to do this. The 'easiest' way would likely be to edit the export table of the dll with a hex editor and replace the names with strings of the same length. You'll have to also adjust the export lib you are linking against as well. All tool like <a href="http://texe.codeplex.com/" rel="nofollow">texe.codeplex.com</a> might help out. http://stackoverflow.com/questions/1690247/must-i-abort-this-thread-waiting-for-namedpipes-how-do-i-do-this-properly/1690412#1690412 Comment by Rob Walker on Must i abort this thread? Waiting for namedpipes. How do i do this properly? Rob Walker 2009-11-06T21:26:14Z 2009-11-06T21:26:14Z Your right of course ... wasn't reading carefully enough. Why not look at using BeginWaitForConnection in order to not use a blocking call there. http://stackoverflow.com/questions/1683013/writing-a-binary-file-in-c-to-be-read-by-c-program-with-pointers/1683101#1683101 Comment by Rob Walker on Writing a binary file in C# to be read by C program, with pointers? Rob Walker 2009-11-05T21:07:57Z 2009-11-05T21:07:57Z The point is that using this format the file doesn't contain real pointers, just offsets. You could handle this in C# by mapping objects to offsets you assign ... difficult but not impossible. http://stackoverflow.com/questions/716493/rename-xml-namespace-prefixes/749305#749305 Comment by Rob Walker on Rename XML namespace prefixes Rob Walker 2009-04-14T23:38:30Z 2009-04-14T23:38:30Z Thanks for the link -- unfortunately Silverlight doesn't honour the assembly:XmlnsDefinition attribute (though it still compiles) http://stackoverflow.com/questions/742844/how-to-determine-if-binary-tree-is-balanced/742877#742877 Comment by Rob Walker on How to determine if binary tree is balanced? Rob Walker 2009-04-13T03:12:18Z 2009-04-13T03:12:18Z Your method returns tree if tree.left != null and tree.right = 'a huge subtree'. Also calling height(..) and heightBalanced(...) on the same subtree is rather inefficient. I would look at returning enough information from heightBalanced to avoid computing the height of each subtree twice http://stackoverflow.com/questions/697541/how-do-i-use-the-ms-dia-sdk-from-c/697624#697624 Comment by Rob Walker on How do I use the MS DIA SDK from C#? Rob Walker 2009-03-30T16:21:44Z 2009-03-30T16:21:44Z Once you've run tlbimp on the generated tlb you should get an assembly you can reference from your managed code. The assembly will do the COM interop from you and there is no need to dllimport or PInvoke anything. I've only used it from unmanaged C++ http://stackoverflow.com/questions/681700/interface-naming-convention/681718#681718 Comment by Rob Walker on Interface naming convention Rob Walker 2009-03-25T14:13:44Z 2009-03-25T14:13:44Z An possible exception to this is where the interface class is exposed to the outside and the implementation is internal. For example in WCF. In that case I prefer exposing a service 'MyService' and having a 'MyServiceImpl' class than exposing something call 'IMyService' to the outside http://stackoverflow.com/questions/675846/starting-over-and-the-catch-22-of-experience/675972#675972 Comment by Rob Walker on Starting over and the Catch-22 of experience Rob Walker 2009-03-24T22:04:09Z 2009-03-24T22:04:09Z I hear you -- I <i>hate</i> bureaucracy, but I'd suggest you keep at it, within the rules set by the organization. The motivation isn't necessarily the direct effect as much as what you can put on your resume for the next (hopefully more functional!) employer. http://stackoverflow.com/questions/675904/what-are-accepted-practices-regarding-deploying-apps-to-unattended-servers/675945#675945 Comment by Rob Walker on What are accepted practices regarding deploying apps to unattended servers? Rob Walker 2009-03-24T03:41:30Z 2009-03-24T03:41:30Z IE has more attacks on it (due in part to its marketshare) than other browsers, that would be a risk if you are browsing from the box for any reason. I don't know how easy it is to patch without running windows update and possibly incurring other unplanned/tested updates and a reboot. http://stackoverflow.com/questions/650578/replacement-for-import-in-visual-c/650616#650616 Comment by Rob Walker on Replacement for #import in Visual C++ Rob Walker 2009-03-16T15:04:16Z 2009-03-16T15:04:16Z That would work, but separating the imports into a separate DLL and wrapping them would be a lot of effort. http://stackoverflow.com/questions/650578/replacement-for-import-in-visual-c/650621#650621 Comment by Rob Walker on Replacement for #import in Visual C++ Rob Walker 2009-03-16T14:29:34Z 2009-03-16T14:29:34Z Perfect ... I hadn't been paying attention to the 'tlh' files in the output directory, but that looks like it is exactly what I need