User mhenry1384 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T03:51:10Z http://stackoverflow.com/feeds/user/24267 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/231132/wininets-internetoptionignoreoffline-doesnt-work 0 Wininet's INTERNET_OPTION_IGNORE_OFFLINE doesn't work? mhenry1384 2008-10-23T19:33:44Z 2009-11-19T21:00:05Z <p>I'm trying to get Wininet to ignore Internet Explorer's "Work Offline" mode, for both HTTP and FTP.</p> <p>So I'm trying to use InternetSetOption() with INTERNET_OPTION_IGNORE_OFFLINE. The documentation says "This is used by InternetQueryOption and InternetSetOption with a request handle." However, you can't get a request handle because if IE is in Work Offline mode then InternetConnect() will always return a null handle. Without a connection handle you can't get a request handle. So I tried using it with an InternetOpen() handle and a NULL handle. Both failed with ERROR_INTERNET_INCORRECT_HANDLE_TYPE.</p> <p>Is there a way to get this option to work? I found a reference on an MS newsgroup from 2003 that INTERNET_OPEN_TYPE_PRECONFIG is "broken". 5 years later with IE8 beta 2 and they still haven't fixed it? Or am I doing it wrong.</p> <p>[edit]<br/> I wasn't quite correct. InternetConnect() always returns null if you are on "Work Offline" mode and using FTP, but it returns a valid handle if you are using Http. However, it still doesn't work even with a request handle.</p> <p>If I am set to "Work Offline" and I call</p> <pre> BOOL a = TRUE; ::InternetSetOption(hData, INTERNET_OPTION_IGNORE_OFFLINE, &a, sizeof(BOOL)); </pre> <p>on the handle from </p> <pre> HINTERNET hData = HttpOpenRequest(hInternet, L"POST", path, NULL, NULL, NULL, flags, 0 ); </pre> <p>the InternetSetOption() call succeeds.<br /> However, the call to HttpSendRequest() still fails with error code 2 (file not found), same as it does if I don't set the option.<br /> Same thing if I call</p> <pre> ::InternetSetOption(hData, INTERNET_OPTION_IGNORE_OFFLINE, 0, 0); </pre> http://stackoverflow.com/questions/1744701/how-to-return-an-array-of-net-objects-via-a-com-method 0 How to return an array of .NET objects via a COM method mhenry1384 2009-11-16T20:37:17Z 2009-11-17T03:30:12Z <p>I have a .NET assembly. It happens to be written in C++/CLI. I am exposing a few objects via COM. Everything is working fine, but I cannot for the life of me figure out how to return an array of my own objects from a method. Every time I do, I get a type mismatch error at runtime. I can return an array of ints or strings just fine.</p> <p>Here is my main class</p> <pre><code>[Guid("7E7E69DD-blahblah")] [ClassInterface(ClassInterfaceType::None)] [ComVisible(true)] public ref class Foo sealed : IFoo { public: virtual array&lt;IBar^&gt;^ GetStuff(); } [Guid("21EC1AAA-blahblah")] [InterfaceType(ComInterfaceType::InterfaceIsIDispatch)] [ComVisible(true)] public interface class IFoo { public: virtual array&lt;IBar^&gt;^ GetStuff() { // For simplicity, return an empty array for now. return gcnew array&lt;IBar^&gt;(0); } }; </code></pre> <p>Here is the class I am returning</p> <pre><code>[Guid("43A37BD4-blahblah")] [InterfaceType(ComInterfaceType::InterfaceIsIDispatch)] [ComVisible(true)] public interface class IBar { // Completely empty class, just for testing. //In real life, I would like to return two strings and an int. }; [Guid("634708AF-blahblah")] [ClassInterface(ClassInterfaceType::None)] [ComVisible(true)] [Serializable] public ref class Bar : IBar { }; </code></pre> <p>This is my (native) C++ code that calls it:</p> <pre><code>MyNamespace::IFooPtr session(__uuidof(MyNamespace::Foo)); // For simplicity, don't even check the return. session-&gt;GetStuff(); </code></pre> <p>Calling GetStuff() gets me a _com_error 0x80020005 (DISP_E_TYPEMISMATCH). I can tell my method is being called correctly, it's just that when .NET/COM goes to marshall the return, it chokes. As I said, it works fine with arrays of ints or strings. What do I have to do to my class to allow it to be returned in an array? </p> <p>As it happens, my class will only contain a couple of strings and an int (no methods), if that makes it any easier. Obviously I've tried returning a non-empty array and classes that actually contain some data, this is just the simplest case that illustrates the problem.</p> http://stackoverflow.com/questions/1724694/how-to-dispose-of-a-net-com-interop-object-on-release 0 How to dispose of a NET COM interop object on Release() mhenry1384 2009-11-12T19:22:24Z 2009-11-12T20:51:27Z <p>I have a COM object written in managed code (C++/CLI). I am using that object in standard C++.<br> How do I force my COM object's destructor to be called immediately when the COM object is released? If that's not possible, call I have Release() call a MyDispose() method on my COM object?</p> <p>My code to declare the object (C++/CLI):</p> <pre> [Guid("57ED5388-blahblah")] [InterfaceType(ComInterfaceType::InterfaceIsIDispatch)] [ComVisible(true)] public interface class IFoo { void Doit(); }; [Guid("417E5293-blahblah")] [ClassInterface(ClassInterfaceType::None)] [ComVisible(true)] public ref class Foo : IFoo { public: void MyDispose(); ~Foo() {MyDispose();} // This is never called !Foo() {MyDispose();} // This is called by the garbage collector. virtual ULONG Release() {MyDispose();} // This is never called virtual void Doit(); }; </pre> <p>My code to use the object (native C++):</p> <pre> #import "..\\Debug\\Foo.tlb" ... Bar::IFoo setup(__uuidof(Bar::Foo)); // This object comes from the .tlb. setup.Doit(); setup->Release(); // explicit release, not really necessary since Bar::IFoo's destructor will call Release(). </pre> <p>If I put a destructor method on my COM object, it is never called. If I put a finalizer method, it is called when the garbage collector gets around to it. If I explicitly call my Release() override it is never called.</p> <p>I would really like it so that when my native Bar::IFoo object goes out of scope it automatically calls my .NET object's dispose code. I would think I could do it by overriding the Release(), and if the object count = 0 then call MyDispose(). But apparently I'm not overriding Release() correctly because my Release() method is never called.</p> <p>Obviously, I can make this happen by putting my MyDispose() method in the interface and requiring the people using my object to call MyDispose() before Release(), but it would be slicker if Release() just cleaned up the object.</p> <p>Is it possible to force the .NET COM object's destructor, or some other method, to be called immediately when a COM object is released?</p> <p>Googling on this issue gets me a lot of hits telling me to call System.Runtime.InteropServices.Marshal.ReleaseComObject(), but of course, that's how you tell .NET to release a COM object. I want COM Release() to Dispose of a .NET object.</p> http://stackoverflow.com/questions/1718641/how-does-net-com-work-with-multiple-versions-registered-via-regasm 1 How does .NET/COM work with multiple versions registered via Regasm? mhenry1384 2009-11-11T22:48:59Z 2009-11-11T23:07:10Z <p>I have a .NET DLL (that happens to be written in C++/CLI). Parts of it I want to expose via COM. I do this and register it using "regasm my.dll /codebase". So far so good. But then I change some things and the version number of the assembly changes plus I move the dll to a different folder. I register it again and look at my COM object in OLE/COM Viewer. I see something like this</p> <pre> InprocServer32 [Codebase] = file://c://foo/bar/my.dll 7.0.0.0 [Class] = My.Blah.Class 7.0.0.0 [Assembly] = Sync, Version=7.0.0.0, Culture=neutral, PublicKeyToken=1dd19234234 7.0.0.0 [RuntimeVersion] = v2.0.50727 7.0.0.0 [CodeBase] = file://c:/dooby/do/my.dll 7.0.0.27397 [Class] = My.Blah.Class 7.0.0.27397 [Assembly] = Sync, Version=7.0.0.27397, Culture=neutral, PublicKeyToken=1dd19234234 7.0.0.27397 [RuntimeVersion] = v2.0.50727 7.0.0.27397 [CodeBase] = file://c://foo/bar/my.dll </pre> <p>Questions about multiple versions:</p> <ol> <li><p>So I think that the last COM object that was registered wins. It doesn't matter if I have my old 7.0.0.0 COM object registered, the 7.0.0.27397 is the one that will be created when I instantiate my COM object because I registered it last. Is that correct?</p></li> <li><p>Oops I didn't keep around the 7.0.0.0 object. Is there any way to get rid of it? Is there any way to remove all versions of a COM object other than going into the registry and whacking it by hand?</p></li> <li><p>Just out of curiosity, if I specifically wanted to instantiate a particular version of my COM object is there any way to do that? (I'm using C++ if you wanted to give a code example).</p></li> <li><p>Is there any way I can just tell regasm to not store the version number because it just seems to be cluttering things up and I can't see what the benefit is. If my COM object went through significant API change I'd just change the GUID and progid, right? What if I don't want to register multiple versions (I don't).</p></li> </ol> http://stackoverflow.com/questions/1302494/what-does-addressfamily-firefox-refer-to-in-net-sockets 6 What does AddressFamily.FireFox refer to in .NET sockets? mhenry1384 2009-08-19T20:35:55Z 2009-08-20T17:33:01Z <p>In System.Net.Sockets.AddressFamily there are a number of obvious entries like InterNetwork, AppleTalk and Ipx. There's also one for "FireFox". I assume this has nothing to do with the "Firefox" browser since a. it's cased differently and b. why would the Firefox browser have its own network address type. So what the heck is this for? Was there a FireFox network protocol? I've googled around and searched wikipedia but any search for FireFox and network protocol gets, not surprisingly, thousands of hits for the Firefox browser. I'm guessing this is a long-obsolete network protocol like Banyan Vines. </p> <p>Can anyone enlighten me on what AddressFamily.FireFox is for?</p> http://stackoverflow.com/questions/1296423/how-can-a-bookmarklet-access-a-firefox-extension-or-vice-versa 0 How can a bookmarklet access a Firefox extension (or vice versa) mhenry1384 2009-08-18T20:48:55Z 2009-08-19T01:26:45Z <p>I have written a Firefox extension that catches when a particular URL is entered and does some stuff. My main app launches Firefox with this URL. The URL contains sensitive information so I don't want it being stored in the history. </p> <p>I'm concerned about the case where the extension is not installed. If its not installed and Firefox gets launched with the sensitive URL, it will get stored in history and there's nothing I can do about it. So my idea is to use a bookmarklet. </p> <p>I will launch Firefox with "javascript:window.location.href='pleaseinstallthisplugin.html'; sensitiveinfo='blahblah'".</p> <p>If the extension is not installed they will get redirected to a page that tells them to install it and the sensitive info won't get stored in the history. If the extension <em>IS</em> installed it will grab the information in the sensitiveinfo variable and do its thing.</p> <p>My question is, can the bookmarklet call a method in the extension to pass the sensitive info (and if so, how) or can the extension catch when javascript is being called in the bookmarklet? </p> <p>How can a bookmarklet and Firefox extension communicate?</p> <p>p.s. The alternative means of getting around this situation would be for my main app to launch Firefox and communicate with the extension using sockets but I am loath to do that because I've run into too many issues over the years with users with crazy firewalls blocking socket communication. I'd like to do everything without sockets if possible.</p> http://stackoverflow.com/questions/639813/expectedexception-not-catching-exception-but-i-can-catch-it-with-try-catch/639863#639863 1 Answer by mhenry1384 for ExpectedException not catching exception, but I can catch it with try catch mhenry1384 2009-03-12T18:20:05Z 2009-03-12T19:55:41Z <p>I'll add to what Jared said by pointing out that the "ExpectedException" attribute sucks. There's no way to assert that the exception's message is correct (the "message" parameter doesn't do what you might think it does) and you can't check for multiple exceptions in one test.</p> <p>A better solution is to do something like this: <a href="http://geekswithblogs.net/sdorman/archive/2009/01/17/unit-testing-and-expected-exceptions.aspx" rel="nofollow">http://geekswithblogs.net/sdorman/archive/2009/01/17/unit-testing-and-expected-exceptions.aspx</a></p> <p>That class lets you do neat stuff like this:</p> <pre> [TestMethod] public void TestAFewObviousExceptions() { // some setup here ExceptionAssert.Throws("Category 47 does not exist", () => wallet.Categories.GetChildCategoryIds(47)); ExceptionAssert.Throws("Id Flim is not valid", () => wallet.Categories.IdFromName("Flim")); } </pre> http://stackoverflow.com/questions/489117/why-does-microsoft-visualstudio-testtools-unittesting-assert-equals-exist 5 Why does Microsoft.VisualStudio.TestTools.UnitTesting.Assert.Equals() exist? mhenry1384 2009-01-28T20:12:44Z 2009-02-14T06:45:58Z <p>Description for Assert.Equals() from the MSDN Documentation: Do not use this method.</p> <p>That's it, the full explanation. Uh.. ok, but then ... why is it there? Is it a deprecated method from an earlier version of the framework? Something that's supposed to be used only by other Microsoft Assemblies?</p> <p>It just makes me want to use it all the more knowing I'm not supposed to. ;-)</p> <p>Does anyone know?</p> http://stackoverflow.com/questions/370325/best-product-to-obfuscate-a-mixed-net-dll 1 Best Product to Obfuscate a Mixed .NET DLL mhenry1384 2008-12-16T02:33:32Z 2009-02-06T20:44:03Z <p>I have a .NET DLL and application. The DLL is written in C++/CLI and it's "mixed", i.e., partially managed code and partially native. </p> <p>I have two goals:<br/> 1. Obfuscate all the managed code so it can't be disassembled<br/> 2. Obfuscate the public methods/classes of the mixed DLL so no one can use the DLL in their own applications, i.e., scramble the public names.</p> <p>Yes, I understand obfuscation isn't perfect and people can still figure it out and blah blah. The two goals are a management requirement. The only app I've found that can handle this appears to be the Dotfuscator Professional Edition. Unfortunately it is one of those incredibly annoying apps where you have to beg a salesman to tell you the price. Does anyone know of a another solution, or know of a good place to buy a cheap, legal copy? </p> <p>Don't tell me to rewrite the DLL in managed code, that would take a month of work and I'd never get approval. :-)</p> <p>Note that I'm not particularly paranoid about how <em>good</em> the obfuscation is. Anything that scrambles the names of all the methods and classes in the app is probably good enough.</p> <p>Here are the other obfuscators I have tried:<br/> Dotfuscator Community Edition comes with Visual Studio 2008 but doesn't support mixed assemblies.<br/> Eazfuscator .NET is simple and free but doesn't support mixed assemblies.<br/> {smartassembly} is $500 for a single license. It has some interesting features, but it doesn't support mixed assemblies. <br/> Salamander is $800. Claims to fully support mixed assemblies, but whenever I tried to use the obfuscated dll, the application crashed.<br/> .NET Reactor is $180 for a single developer license. It supports "partial" obfuscation of mixed DLLs. Unfortunately if you obfuscate the <em>public</em> types on the DLL it doesn't work, the .exe can't find the classes. It has the ability to merge/pack DLLs into an .exe but when you do it with a mixed DLL it doesn't work (the exe can't find the DLL's assembly, even though it's part of the .exe)<br/> Skater is $300 for a single license. I don't see anything on their website claiming it supports mixed assemblies and I'm tired of trying apps only to be disappointed so I'm going to assume it doesn't.<br/></p> <p>I have also tried Microsoft's ILMerge to see if I could merge the DLL with the .exe and then obfuscate, but it appears that also chokes on mixed DLLs.</p> <p>Any suggestions for an alternative to Dotfuscator or a good place to buy a legitimate copy? I found a couple of no-name sites claiming to sell it cheap but I assume those are Russian pirated versions.</p> http://stackoverflow.com/questions/512709/visual-studio-2008-linker-error-alink-operation-failed-80070005-access-is-de 0 Visual Studio 2008 linker error: ALINK operation failed (80070005) : Access is denied mhenry1384 2009-02-04T18:43:06Z 2009-02-04T18:47:59Z <p>I have Visual Studio 2008 (9.0.30729.1 SP) installed on my computer and a build machine. On my computer, a project builds fine. On the build machine, I have started getting this error. ALINK operation failed (80070005) : Access is denied</p> <p>This is incredibly irritating because it doesn't say Access TO WHAT??? is denied.</p> <p>I've tried rebooting the machine, and changing the output directory of the project. It's a C++/CLI DLL. The project links with a large number of libraries so it's not really practical to extensively check everything it links with, but a quick scan of the project and nothing seems to be missing or locked.</p> <p>Anyway I can figure out what the heck linker is complaining about? Sounds like a bug in the linker(1), but as I said I have the same Visual Studio installed in my PC and the project builds fine.</p> <p>(1) You could argue that an error message that unhelpful <em>IS</em> a bug.</p> http://stackoverflow.com/questions/492700/how-to-split-a-string-while-preserving-line-endings/492736#492736 0 Answer by mhenry1384 for How to split a string while preserving line endings? mhenry1384 2009-01-29T18:11:01Z 2009-01-29T18:11:01Z <p>Something along the lines of using this regular expression: [^\n\r]*\r\n</p> <p>Then use Regex.Matches(). The problem is you need Group(1) out of each match and create your string list from that. In Python you'd just use the map() function. Not sure the best way to do it in .NET, you take it from there ;-)</p> http://stackoverflow.com/questions/492262/is-there-an-equivalent-to-sscanf-in-net/492292#492292 0 Answer by mhenry1384 for Is there an equivalent to 'sscanf()' in .NET? mhenry1384 2009-01-29T16:14:02Z 2009-01-29T16:14:02Z <p>Using regular expressions is your best bet. Investigate the Regex class.</p> http://stackoverflow.com/questions/489159/how-can-i-minimize-the-weight-of-my-asp-net-pages/489225#489225 0 Answer by mhenry1384 for How can I minimize the weight of my ASP.NET pages? mhenry1384 2009-01-28T20:38:05Z 2009-01-28T20:38:05Z <p>Turning off the viewstate, as you mention, is good. Also I have noticed that the ASP.NET tree control generates a very large amount of HTML (if you have a fair number of nodes). I ended up writing my own tree control that generates 1/4 the HTML of the standard tree control. So you could look for controls like that, that are especially bad, and write your own control.</p> http://stackoverflow.com/questions/425977/best-way-to-write-a-polled-ftp-download-in-c/426357#426357 0 Answer by mhenry1384 for best way to write a polled FTP download in C# mhenry1384 2009-01-08T22:48:31Z 2009-01-08T22:48:31Z <p>Just have a thread (or your main thread) sleep for x milliseconds and attempt to do the download when it's not sleeping. No need to buy a 3rd party FTP library, FTP is built into .NET (FtpWebRequest and FtpWebResponse). They aren't very good (very bare bones) but will probably do for what you want.</p> http://stackoverflow.com/questions/425752/managed-c-wrappers-for-legacy-c-libraries/426332#426332 0 Answer by mhenry1384 for Managed C++ wrappers for legacy C++ libraries mhenry1384 2009-01-08T22:41:52Z 2009-01-08T22:41:52Z <p>I'll just add to what everyone has already said, </p> <p>pin_ptr wch = PtrToStringChars(string); (where string is a System::String)</p> <p>will become your friend.</p> <p>You can't directly include a non-managed class into a managed class but you can put a pointer to the unmanaged class and new it in your constructor and delete it in your destructor.</p> <p>I haven't had the problems Timo Geusch mentioned with mixing C++ and C++/CLI code in one DLL. My DLL uses both extensively without problems.</p> <p>C++/CLI is not difficult (if you know C++ and .NET) and works great. </p> http://stackoverflow.com/questions/425405/is-it-smart-to-always-redirect-to-https/425493#425493 0 Answer by mhenry1384 for Is it smart to always redirect to https? mhenry1384 2009-01-08T19:14:40Z 2009-01-08T19:14:40Z <p>I am doing this in a website that is meant to be viewed on mobile devices as well as on the desktop. Although we are still only in (closed) beta, nobody has reported any problems regarding this.</p> http://stackoverflow.com/questions/424680/trying-to-find-a-simple-way-to-do-upload-only-modified-files-through-ftp/424848#424848 3 Answer by mhenry1384 for Trying to find a simple way to do upload only modified files through FTP. mhenry1384 2009-01-08T16:10:25Z 2009-01-08T16:19:38Z <p>The most reliable way would be to make md5 hashes of all the local files you care about and store it in a file. So the file will contain a list of filenames and their md5 hashes. Store that file on your ftp server. When you want to update the files on your ftp server, download the file containing the list, compare that against all your local files, and upload the files that have changed (or are new). That way you don't have to worry about archive bits, modified date, or looking at file sizes, the use of which can never be 100% reliable.</p> <p>Using file sizes isn't reliable for the obvious reason - a file could change but have the same size. I'm not a fan of using the archive bit or modified date because either of those could be confused if you backup or restore your local directory with another backup program.</p> http://stackoverflow.com/questions/417634/are-there-any-good-workarounds-for-fxcop-warning-ca1006/417704#417704 5 Answer by mhenry1384 for Are there any good workarounds for FxCop warning CA1006? mhenry1384 2009-01-06T18:55:48Z 2009-01-07T02:19:51Z <p>I would take FxCop's warnings as if they were suggestions from an extremely anal-retentive coworker. It's perfectly ok to ignore (suppress) some of the things it suggests.</p> http://stackoverflow.com/questions/417816/how-popular-is-c-for-making-websites-web-applications/417904#417904 13 Answer by mhenry1384 for How popular is C++ for making websites/web applications? mhenry1384 2009-01-06T20:07:15Z 2009-01-06T20:07:15Z <p>I am primarily a C++ programmer, so I don't intend it as a slam on C++ when I say C# and Java are much more modern languages, better suited for 99% of application development you want to do. The downside of C#/Java/etc. is that the users need big bulky runtimes installed on their PCs, and if your users don't have them then they will have to install them. So it is usually better to write consumer apps in C++, where there will be few dependencies and Grandma won't have to figure out how to install .NET framework 3.0.</p> <p>For web applications, your user will just be using a web browser so you can write in whatever language platform you want. So why not write in a modern, better language?</p> <p>(again, before C++ programmers jump all over me, let me say that I have been a primarily C++ programmer for 15+ years. It'd be silly to ignore that modern languages are far easier and better for most application development.)</p> http://stackoverflow.com/questions/417428/why-create-custom-exceptions/417449#417449 1 Answer by mhenry1384 for Why Create Custom Exceptions? mhenry1384 2009-01-06T17:31:29Z 2009-01-06T17:31:29Z <p>The standard .NET exceptions don't cover everything bad that can go wrong in any application nor are they intended to. Unless your program is very simple, it's likely you will have to create at least a few custom exceptions.</p> http://stackoverflow.com/questions/415115/whats-the-most-appropriate-background-color-for-a-web-page/415132#415132 0 Answer by mhenry1384 for What's the most appropriate background color for a web page? mhenry1384 2009-01-06T01:31:55Z 2009-01-06T01:31:55Z <p>White is the only color. Really. Look at any major website including this one. It's white. Anything else looks amateurish. Gizmodo is the only major website I can think of that is not white.</p> http://stackoverflow.com/questions/413643/how-to-get-the-actual-path-of-a-file-in-vista-with-uac 1 How to get the actual path of a file in Vista with UAC ? mhenry1384 2009-01-05T16:18:13Z 2009-01-05T18:08:17Z <p>I am calling CreateFile() to create a file in the Program Data directory. I'm using SHGetSpecialFolderPath() to get the dir name.</p> <p>I have a user with Vista for whom CreateFile() is returning error 5 (Access Denied). It would help if I knew where CreateFile() was actually attempting to create the file so we can check his folder permissions. The problem with Vista (UAC) is, it's not attempting to create the file in the directory I passed in. It could also be in a VirtualStore directory. An added source of confusion is this user is German and although SHGetSpecialFolderPath() is returning "C:\Program Data\blah blah" as the path, I don't think that's actually where the path is. I think German Vista uses the German word for "Program Data". I would like to be able to tell the user "This is the exact path where we are trying to create the file. Check your permissions on this folder."</p> <p>I know you can get the a path from an open file handle, but in this case the CreateFile() is failing so I don't have an open handle. How can I get Vista to tell me the actual path where it's attempting to create the file?</p> http://stackoverflow.com/questions/413653/why-does-150-150-not-equal-300-in-browsers/413696#413696 6 Answer by mhenry1384 for Why does 150 + 150 not equal 300 in browsers? mhenry1384 2009-01-05T16:36:06Z 2009-01-05T16:36:06Z <p>jhunter is correct, and I would add that you need Firebug for FireFox (it's free). You could have figured this out yourself quickly with that installed. Inspect the element you are interested in and look at the "layout" tab.</p> http://stackoverflow.com/questions/413311/c-do-method-names-get-compiled-into-the-exe/413357#413357 1 Answer by mhenry1384 for C# - Do method names get compiled into the EXE? mhenry1384 2009-01-05T14:59:28Z 2009-01-05T14:59:28Z <p>If you are concerned about obfuscation check out .NET Reactor. I tested 8 different obfuscators and Reactor was not only the cheapest commercial one, it was the second best of the bunch (the best was the most expensive one, Dotfuscator Gold).</p> <p>[EDIT]</p> <p>Actually now that I think of it, if all you care about is obfuscating method names then the one that comes with VS.NET, Dotfuscator Community Edition, should work fine.</p> http://stackoverflow.com/questions/407793/programmatically-choose-high-contrast-colors/407819#407819 1 Answer by mhenry1384 for Programmatically choose high-contrast colors mhenry1384 2009-01-02T19:36:34Z 2009-01-02T19:36:34Z <p>I did something like this in a Palm OS application. This is what I came up with. It doesn't give you "high contrast" colors but it gives you a background color that's different enough from the text color to be quite readable:</p> <pre><code> // Black background is a special case. It's fairly likely to occur and // the default color shift we do isn't very noticeable with very dark colors. if (backColor.r &lt; 0x20 &amp;&amp; backColor.g &lt; 0x20 &amp;&amp; backColor.b &lt; 0x20) { textColor.r = backColor.r + 0x20; textColor.g = backColor.g + 0x20; textColor.b = backColor.b + 0x20; } else { textColor.r = backColor.r + ((backColor.r &lt; 128) ? 0x10 : -0x10); textColor.g = backColor.g + ((backColor.g &lt; 128) ? 0x10 : -0x10); textColor.b = backColor.b + ((backColor.b &lt; 128) ? 0x10 : -0x10); } </code></pre> <p>You might not need to do black as a special case for your purposes - Palm's color handling is a bit funky (16-bit color).</p> http://stackoverflow.com/questions/371762/what-exactly-is-guid-why-and-where-i-should-use-it/371795#371795 2 Answer by mhenry1384 for What exactly is GUID? Why and where I should use it? mhenry1384 2008-12-16T16:16:44Z 2008-12-16T16:16:44Z <p>128-bit Globally Unique ID. You can generate GUIDs from now until sunset and you never generate the same GUID twice, and neither will anyone else. They are used a lot with COM.</p> <p>As for example of something you would use them for, we use them in one of our products. Our users can generate categories and cards on various devices. We want to make sure that we don't confuse a category made on one device with a category created on a different one, so it's important that IDs are unique no matter who generates them, where they generate them, and when they generate them. So we use GUIDs (actually we use our own scheme using 64-bit numbers but they are similar to GUIDs).</p> http://stackoverflow.com/questions/259166/good-free-ftp-client-library-for-windows-c-commercial-apps 4 Good free FTP Client Library (for Windows C++ commercial apps)? mhenry1384 2008-11-03T16:27:54Z 2008-11-03T20:35:01Z <p>I'm looking for a good open source Windows FTP client library with a public domain or BSD-type license. Something that I have access to the source code and I can use it from C++ for Windows applications in a commercial app.</p> <p>We have used Wininet for years and it's buggy and horrible. The last straw is the IE8 beta 2 contains a new bug in InternetGetLastResponseInfo(). I can no longer justify using Wininet when our users can install the latest version of IE and break our app.</p> <p>I have looked at libcurl but it is way too heavy for our needs. The only thing I need is FTP support. I could spend a day stripping out all the code in libcurl I don't need, but I'd rather just start with a nice simple FTP client library, if possible.</p> <p>I looked at ftplib (<a href="http://nbpfaus.net/~pfau/ftplib/" rel="nofollow">http://nbpfaus.net/~pfau/ftplib/</a>) but it's GPL and I need this for a closed-source commercial app.</p> <p>I've written FTP client code before, it's not that hard (unfortunately it was 15 years ago and I don't have the source code anymore). There must be a nice simple free client library that does nothing but FTP and has a license that can be used in closed-source commercial apps. </p> <p>(If you are curious, the bug is that if you attempt to FtpFindFirstFile() with an FTP site where you can't make a passive-mode connection, InternetGetLastResponseInfo() doesn't return the full response. This is just one of many bugs I've found over the years. Another is that Wininet's FTP support ignores all timeout values. That particular bug has existed for years.)</p> http://stackoverflow.com/questions/116132/best-ide-for-palm-os-devices/231202#231202 1 Answer by mhenry1384 for Best IDE for Palm OS devices mhenry1384 2008-10-23T19:50:47Z 2008-10-24T15:36:19Z <p>We use CodeWarrior. No disrespect to Ben, but Codewarrior really shows its age these days compared to a modern IDE. I haven't used the Eclipse stuff for any serious projects so I can't say how good it is. Seemed better than CW but I only poked around with it a bit.</p> <p>Anyway, my point is I wouldn't wail and gnash your teeth if you can't find a copy of CodeWarrior. </p> <p>[edit]</p> <p>To elaborate, the two main problems with Codewarrior.</p> <ul> <li><p>No real command-line compiler. The command line just launches the GUI. This causes two big problems with build scripts. 1. If you are building multiple Palm projects forget about trying to get any work done while the build happens because the IDE keeps popping up, stealing input focus. 2. Errors go to the GUI, not to STDOUT.</p></li> <li><p>The UI is awkward and terrible, especially if you are working with multiple projects, say a couple of static libraries and a main project that uses them. Since a slick UI is pretty much the point of an IDE, well...</p></li> </ul> http://stackoverflow.com/questions/90288/how-can-i-segment-my-palm-os-68k-application/231231#231231 2 Answer by mhenry1384 for How can I segment my Palm OS 68K application? mhenry1384 2008-10-23T19:56:42Z 2008-10-23T19:56:42Z <p>I use #pragma segment. Much easier than CodeWarrior's segment tab.</p> <p>#pragma segment Foo</p> <p>some code</p> <p>#pragma segment Bar</p> <p>some code</p> <p>Now your code gets put in two different segments automagically. </p> http://stackoverflow.com/questions/159214/timeout-error-when-on-an-ad-hoc-network 1 timeout error when on an ad hoc network mhenry1384 2008-10-01T19:09:40Z 2008-10-01T19:22:37Z <p>I am doing an InternetConnect (Wininet) to an FTP server that happens to be running on an iPhone. When the user is on a normal WiFi network it works fine for him. When he has an ad hoc network with his iPhone he gets an ERROR_INTERNET_TIMEOUT. I presume this is some kind of routing problem. I am curious as to why this gets ERROR_INTERNET_TIMEOUT and not ERROR_INTERNET_CANNOT_CONNECT. Most users, if they are blocked by, for example, a firewall, will get ERROR_INTERNET_CANNOT_CONNECT.</p> <p>I don't understand enough about low-level TCP/IP to understand what kind of situation would cause a timeout error instead of a connect error. I'm really more intellectually curious in understanding this than I am in actually solving the user's problem. ;-) Can anyone explain what is happening with the network packets (the more detailed the better)?</p> <p>edit: note that, as far as I know, the user doesn't have an outgoing firewall enabled, it's not a firewall issue. I think it's some kind of routing issue. I have seen similar issues when a user is connected a VPN and their routing is set up incorrectly and all packets go to their work instead of the iPhone. I want to know what's going on with the packets in this situation: the socket connects but at the next step (whatever that is) they can't communicate.</p> http://stackoverflow.com/questions/1744701/how-to-return-an-array-of-net-objects-via-a-com-method/1746407#1746407 Comment by mhenry1384 on How to return an array of .NET objects via a COM method mhenry1384 2009-11-18T18:21:43Z 2009-11-18T18:21:43Z So I can't just return an array, I have to write my own collection class and expose that? Disappointing, but I suppose not too difficult. http://stackoverflow.com/questions/359290/how-to-get-the-fxcop-custom-dictionary-to-work/726358#726358 Comment by mhenry1384 on How to get the FxCop custom dictionary to work? mhenry1384 2009-11-15T20:55:15Z 2009-11-15T20:55:15Z I think you mean to say &quot;put it in your project folder&quot; not &quot;put it in your solution folder&quot;. http://stackoverflow.com/questions/742598/open-a-url-in-a-new-browser-process/742611#742611 Comment by mhenry1384 on Open a URL in a new browser process mhenry1384 2009-09-08T21:42:59Z 2009-09-08T21:42:59Z matthews is correct, at least on Vista this always returns the path to Firefox. Looks like maybe HKCU\Software\Microsoft\Windows\Shell\Associations\UrlAssociations\http\UserChoice is what you want. http://stackoverflow.com/questions/813058/windows-regkey-default-browser-application-path/813100#813100 Comment by mhenry1384 on Windows RegKey - Default Browser Application Path mhenry1384 2009-08-19T17:49:51Z 2009-08-19T17:49:51Z You almost certainly want the &quot;HKEY_CLASSES_ROOT&quot; one, NOT the HKEY_LOCAL_MACHINE one. HKEY_CLASSES_ROOT will always return the browser the user will be expecting. http://stackoverflow.com/questions/1296423/how-can-a-bookmarklet-access-a-firefox-extension-or-vice-versa/1297402#1297402 Comment by mhenry1384 on How can a bookmarklet access a Firefox extension (or vice versa) mhenry1384 2009-08-19T15:31:05Z 2009-08-19T15:31:05Z Although you can access the Components object it looks like trying to access any useful method/property on that object such as classes or QueryInterface() gets your permission denied. So I guess it's just not possible. http://stackoverflow.com/questions/700043/mstest-executing-all-my-tests-simultaneously-breaks-tests-what-to-do/700107#700107 Comment by mhenry1384 on MSTest executing all my tests simultaneously breaks tests - what to do mhenry1384 2009-07-28T16:34:30Z 2009-07-28T16:34:30Z What do you mean by &quot;an unexpected exception&quot;? I tried throwing .NET and native (C++) exceptions and TestCleanup() appears to always be called. http://stackoverflow.com/questions/223283/net-exe-memory-footprint/223300#223300 Comment by mhenry1384 on .Net exe memory footprint mhenry1384 2009-05-01T18:06:23Z 2009-05-01T18:06:23Z Good idea, just educate the entire world, especially software reviewers. That's a practical solution. Or perhaps not. Seems like it'd be better to take a (probably imperceptible) performance hit. http://stackoverflow.com/questions/667286/ie8s-rendering-of-transparent-pngs-is-fubared-on-my-site Comment by mhenry1384 on IE8's rendering of transparent pngs is FUBARed on my site mhenry1384 2009-03-20T18:12:24Z 2009-03-20T18:12:24Z I'm not seeing the issue. It looks exactly the same on IE 8.0.6001.18702 as it does on FireFox 3.0.7 http://stackoverflow.com/questions/639813/expectedexception-not-catching-exception-but-i-can-catch-it-with-try-catch/639863#639863 Comment by mhenry1384 on ExpectedException not catching exception, but I can catch it with try catch mhenry1384 2009-03-12T19:56:11Z 2009-03-12T19:56:11Z I originally wrote in my answer &quot;I wrote my own exception class based off that code&quot;, but now that I compare the function that I use with what's on that website, it looks like all I did was take it verbatim and stick it in my own namespace. :-) http://stackoverflow.com/questions/512709/visual-studio-2008-linker-error-alink-operation-failed-80070005-access-is-de/512726#512726 Comment by mhenry1384 on Visual Studio 2008 linker error: ALINK operation failed (80070005) : Access is denied mhenry1384 2009-02-04T20:34:55Z 2009-02-04T20:34:55Z I fixed the problem by adding administrator access to the &quot;C:\Documents and Settings\All Users\Application Data\Microsoft\Crypto\RSA\MachineKeys&quot; folder. Not sure how that got screwed up, but whatever. It works now. http://stackoverflow.com/questions/512709/visual-studio-2008-linker-error-alink-operation-failed-80070005-access-is-de/512726#512726 Comment by mhenry1384 on Visual Studio 2008 linker error: ALINK operation failed (80070005) : Access is denied mhenry1384 2009-02-04T19:31:34Z 2009-02-04T19:31:34Z That worked. I used Process Monitor and filtered on link.exe and found a problem in the MS cryptography API which made me realize it is some problem it's having signing my DLL. If I take out the keyfile I don't get the linker error. Now I just have to figure out what the problem is... http://stackoverflow.com/questions/134796/how-to-automatically-stop-visual-c-build-at-first-compile-error/194748#194748 Comment by mhenry1384 on How to automatically stop Visual C++ build at first compile error? mhenry1384 2009-01-13T20:05:38Z 2009-01-13T20:05:38Z This isn't what the original poster was looking for, but it's just what I was looking for. In case it's not obvious, you add this by going to Tools-&gt;Macros-&gt;Macros IDE, open EnvironmentEvents and paste it in there. http://stackoverflow.com/questions/413643/how-to-get-the-actual-path-of-a-file-in-vista-with-uac/413814#413814 Comment by mhenry1384 on How to get the actual path of a file in Vista with UAC ? mhenry1384 2009-01-12T18:55:21Z 2009-01-12T18:55:21Z Microsoft's documentation is incorrect. I just tested it using Vista SP1 and even non-admin users can create and write folders and directories to the c:\ProgramData (CSIDL_COMMON_APPDATA) folder. I don't know why the documentation claims otherwise. http://stackoverflow.com/questions/426190/selenium-alternatives/426254#426254 Comment by mhenry1384 on Selenium alternatives? mhenry1384 2009-01-09T21:19:34Z 2009-01-09T21:19:34Z What is a &quot;DSL&quot;? http://stackoverflow.com/questions/424680/trying-to-find-a-simple-way-to-do-upload-only-modified-files-through-ftp/426109#426109 Comment by mhenry1384 on Trying to find a simple way to do upload only modified files through FTP. mhenry1384 2009-01-09T15:21:02Z 2009-01-09T15:21:02Z stackoverflow isn't quite like a discussion group. You are supposed to mark which answer you think is most correct (and then you'll probably want to delete your answer here).