User Slapout - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T22:52:52Z http://stackoverflow.com/feeds/user/19072 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1591372/jeffrey-richters-book-clr-via-c/1771180#1771180 0 Answer by Slapout for Jeffrey Richter's book CLR Via C# Slapout 2009-11-20T15:23:54Z 2009-11-20T15:23:54Z <p>According to <a href="http://www.wintellect.com/CS/blogs/jeffreyr/archive/2009/11/01/what-s-new-in-clr-via-c-3rd-edition-as-compared-to-the-2nd-edition.aspx" rel="nofollow">his blog</a> he's about to release a new edition. Maybe that's why. </p> http://stackoverflow.com/questions/322033/recommendations-for-a-programmable-drivers-license-scanner 0 Recommendations for a programmable drivers license scanner? Slapout 2008-11-26T20:27:07Z 2009-10-14T03:44:39Z <p>Our motor pool wants to scan drivers’ licenses and have the data imported into our custom system. We're looking for something that will allow us to programmatically get the data from the scanner (including the picture) and let us insert it into our application. I was wondering if anyone has had experience with this type of system and could recommend one or tell us which ones to avoid. Our application is written in PowerBuilder and uses a DB2 database. </p> http://stackoverflow.com/questions/408511/what-development-tools-do-you-carry-on-your-usb-drive 36 What development tools do you carry on your USB drive? Slapout 2009-01-03T02:38:30Z 2009-10-04T13:08:08Z <p>I've just bought a new 4GB USB thumb drive and I'm trying to decide what to put on it. I'm thinking about one of the webserver on a stick packages, a C/C++ IDE (leaning toward Code::Blocks; had Dev-C++ on my old USB drive) and Python. </p> <p>What development related tools do you carry around with you on yours?</p> <p><strong>Update</strong></p> <p>I've added categories. </p> <p></p> <h2>IDEs</h2> <p></p> <p><a href="http://www.codeblocks.org/" rel="nofollow">Code::Blocks</a> Open source, cross platform C/C++ IDE </p> <ul> <li>Supports several compilers (that you must supply) but you can also download a version that includes MingW.</li> <li>(There's <a href="http://wiki.codeblocks.org/index.php?title=FAQ#Q:_How_do_I_make_Code::Blocks_portable.3F" rel="nofollow">a FAQ question</a> on their website explaining how to make it portable) </li> </ul> <p><a href="http://codelite.org/Main/ReadMore" rel="nofollow">Codelite</a> -- Open-source, cross platform C/C++ IDE<br /> <a href="http://eclipse.org/" rel="nofollow">Eclipse</a> -- Open-source, cross platform Java IDE<br /> <a href="http://www.netbeans.org" rel="nofollow">NetBeans</a> -- Open-source, cross platform Java IDE<br /> <a href="http://www.jcreator.com/" rel="nofollow">JCreator</a> -- Java IDE<br /> <a href="http://stackoverflow.com/questions/352600/how-to-run-msvc-6-0-off-a-usb-drive-as-a-portable-app">MSVC6</a> -- Microsoft's pre-.NET C/C++ environment </p> <p></p> <h2>Languages &amp; Compilers</h2> <p></p> <p><a href="http://www.portablepython.com/" rel="nofollow">Portable Python</a> -- Interpreter for the Python programming language </p> <ul> <li>Includes SciTE (editor) and <a href="http://www.djangoproject.com/" rel="nofollow">Django</a> (web framework) </li> </ul> <p><a href="http://strawberryperl.com/" rel="nofollow">Strawberry Perl</a> -- "A 100% Open Source CPAN-capable Perl for Windows® computer that works exactly the same as Perl everywhere else."<br /> <a href="http://python.org/" rel="nofollow">Py3k</a> -- Newest version of the Python programming language<br /> <a href="http://www.stackless.com/" rel="nofollow">Stackless Python</a><br /> <a href="http://www.lua.org/" rel="nofollow">Lua</a> -- Scripting language<br /> <a href="http://www.mingw.org/" rel="nofollow">MinGW</a> -- Sort of a Windows port of GCC </p> <ul> <li>"MinGW provides a complete Open Source programming tool set which is suitable for the development of native Windows programs that do not depend on any 3rd-party C runtime DLLs." </li> </ul> <p></p> <h2>Editors</h2> <p> <a href="http://notepad-plus.sourceforge.net/uk/site.htm" rel="nofollow">Notepad++</a> (after so many recommendations, I had to try it)<br /> <a href="http://www.ultraedit.com/" rel="nofollow">UltraEdit</a> -- "text, hex, HTML, PHP, Java, Javascript, Perl, and programmer's editor."<br /> <a href="http://www.vim.org/" rel="nofollow">VIM</a> -- "highly configurable text editor built to enable efficient text editing"</p> <ul> <li>Major rival to emacs </li> </ul> <p><a href="http://www.yurisw.com/HEdit.htm" rel="nofollow">HEdit</a> -- Hex editor<br /> <a href="http://www.chmaas.handshake.de/delphi/freeware/xvi32/xvi32.htm" rel="nofollow">XVI32</a> (Hex Editor)<br /> <a href="http://www.e-texteditor.com/" rel="nofollow">e text editor</a> -- "The Power of Textmate on Windows"<br /> <a href="http://intype.info/home/index.php" rel="nofollow">Intype text editor</a> -- Code editor for Windows<br /> <a href="http://www.contexteditor.org/" rel="nofollow">ConTEXT</a> -- Code and text editor<br /> <a href="http://www.editpadpro.com/" rel="nofollow">Editpad Pro</a> -- "powerful and versatile text editor or word processor." </p> <p></p> <h2>Discovery</h2> <p></p> <p><a href="http://www.dependencywalker.com/" rel="nofollow">Dependency Walker</a> -- Allows you to see what DLLs a program or DLL depends on and what functions they export.<br /> <a href="http://www.red-gate.com/products/refle http://stackoverflow.com/questions/1467144/how-do-i-stop-name-mangling-of-my-dlls-exported-function 1 How do I stop name-mangling of my DLL's exported function? Slapout 2009-09-23T16:26:04Z 2009-09-23T17:01:12Z <p>I'm trying to create a DLL that exports a function called "GetName". I'd like other code to be able to call this function without having to know the mangled function name. </p> <p>My header file looks like this: </p> <pre><code>#ifdef __cplusplus #define EXPORT extern "C" __declspec (dllexport) #else #define EXPORT __declspec (dllexport) #endif EXPORT TCHAR * CALLBACK GetName(); </code></pre> <p>My code looks like this: </p> <pre><code>#include &lt;windows.h&gt; #include "PluginOne.h" int WINAPI DllMain (HINSTANCE hInstance, DWORD fdwReason, PVOID pvReserved) { return TRUE ; } EXPORT TCHAR * CALLBACK GetName() { return TEXT("Test Name"); } </code></pre> <p>When I build, the DLL still exports the function with the name: "_GetName@0". </p> <p>What am I doing wrong? </p> http://stackoverflow.com/questions/1467131/windows-mobile-debugging/1467189#1467189 0 Answer by Slapout for Windows Mobile Debugging Slapout 2009-09-23T16:35:31Z 2009-09-23T16:35:31Z <p>Yes. If it's like mine (Verizon Motorola Q) Visual Studio will copy several files to the device and the device will prompt you to allow them. You only have to do that part once. Then when you debug on your device you may get a prompt to allow the program you're debugging to run. It seems to copy your program over to a folder in the devices "Program Files" folder and runs it from there. And it leaves it there even after you stop debugging. </p> <p>And one more thing. With Visual Studio 2005, you'll need at least the standard edition to do mobile development. With Visual Studio 2008, you'll need at least the professional edition. </p> http://stackoverflow.com/questions/1452881/what-is-the-basic-idea-behind-plugins/1456399#1456399 1 Answer by Slapout for What is the basic idea behind Plugins? Slapout 2009-09-21T19:33:46Z 2009-09-21T19:33:46Z <p>I've never written a plugin system. But this is how I imagine it in my head: </p> <ul> <li>Your program has a subdirectory for plugins (e.g. "C:\Program Files\My Program Name\plugins").</li> <li>You create plugins as DLL files and place them in the plugins folder.</li> <li>These DLLs would export functions with predefined names. </li> <li>When you run your program, it looks through all the DLLs in your plugins folder. In each one it would look for an exported function with a certain name (e.g. "Load") and call that function. The plugin could then do any setup that it needed to do.</li> <li>The program would then call an exported function on the plugin with a name like "GetPluginName". The plugin would return it's name and the program could then use that name when it displays a list of plugins to the user. </li> <li>When it comes time to invoke the plugin, the program would call another exported function (maybe "Activate") and probably pass the plugin a pointer to the data that the plugin is going to work on. The program would then do its work on the data. </li> <li>The plugin might also export another function that the program would call to show a setup dialog where you could change the plugin options. </li> </ul> http://stackoverflow.com/questions/1438386/how-to-implement-a-timer-in-c-on-windows/1440786#1440786 0 Answer by Slapout for How to implement a timer in C on windows Slapout 2009-09-17T19:10:16Z 2009-09-17T19:10:16Z <p>One way you can do it is to call SetTimer and then handle the WM_TIMER event in your WndProc. For example, this would setup a timer that gets called every 45 seconds and displays a message box when it's called:</p> <pre> LRESULT CALLBACK WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) { switch(message) { case WM_CREATE: SetTimer(hwnd, 1, 45000, NULL); break; case WM_TIMER: MessageBox(hwnd, L"Timer", L"Timer fired!", MB_OK); break; } return DefWindowProc(hwnd, message, wParam, lParam); } </pre> <p>The first parameter to SetTimer is the window that you want to receive the WM_TIMER message -- you probably want this to be your window so you can just pass in the hwnd that windows passed you. </p> <p>The second parameter is a number that you can use to uniquely identify the timer. You could have more than one timer running at a time and would need a way to tell which one fired. </p> <p>The third parameter is how long you want the timer to wait before it fires. It is in milliseconds, so you have to multiple by a thousand if you want seconds. </p> <p>The forth parameter is NULL if you want to handle timers by looking at WM_TIMER. Otherwise, you can pass a pointer to a callback function that will be called instead. </p> <p>Remember, the timer will keep firing every X milliseconds until you kill it. You can kill it by calling KillTimer and passing in the same number you passed to the second parameter when you called SetTimer. </p> <p>Also, when Windows sends you the WM_TIMER message, the wParam will contain the timer identifier that you passed in the second parameter when you called SetTimer. </p> http://stackoverflow.com/questions/482574/whats-the-advantage-of-using-c-over-c-or-is-there-one/1408593#1408593 0 Answer by Slapout for What's the advantage of using C over C++ or is there one? Slapout 2009-09-11T01:35:26Z 2009-09-11T01:35:26Z <p>Best I remember, if you want to develop device drivers on Windows you had to use C. The dev kit didn't support C++. (This may have changed.) </p> http://stackoverflow.com/questions/611614/how-do-you-test-error-handling-involving-remote-host-errors-with-asp-net-develo 0 How do you test error handling involving "remote host" errors with ASP.NET development server? Slapout 2009-03-04T17:25:40Z 2009-07-16T18:00:03Z <p>We have an ASP.NET website in production that generates a report and sends it to the user's browser as a PDF file. Our error reporting is showing that we are getting a lot of this exception: </p> <p>System.Web.HttpException: The remote host closed the connection. The error code is 0x80072746.</p> <p>These appear to be caused by the user closing their browser before the report generation is complete. I've added code to deal with this error, but I can't find a way to test it. The ASP.NET development server that runs when you test in Visual Studio doesn't allow remote connections so I can't go to another machine and try it. And closing the browser when running the website on my machine doesn't produce the exception (presumably because I'm not a "remote host"). </p> <p>So, I guess my question is, how do I test my new error handling code (without pushing it to a live server)? </p> http://stackoverflow.com/questions/1053632/what-old-school-programming-system-building-techniques-would-you-like-to-see-used/1053667#1053667 2 Answer by Slapout for What old-school programming/system building techniques would you like to see used more? Slapout 2009-06-27T21:30:28Z 2009-06-27T21:30:28Z <p>Stop and plan things out before you write any code. </p> http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/103758#103758 1 Answer by Slapout for Hidden Features of Visual Studio (2005-2008)? Slapout 2008-09-19T17:09:35Z 2009-06-19T20:26:37Z <p>Not exactly a hidden feature, but one thing I've done is add a "Start Without Debugging" button next to my "Start With Debugging" button. Just click the down arrow at the right end of the toolbar. Then select "Add or Remove buttons". Then Customize. In the commands tab select the Debug category. Find the Start Without Debugging command and drag it to where you want it on the toolbar. </p> http://stackoverflow.com/questions/677162/sql-server-2005-automatic-schedule-backup-working-not-properly/869509#869509 0 Answer by Slapout for SQL SERVER 2005 Automatic Schedule Backup Working not Properly Slapout 2009-05-15T15:56:24Z 2009-05-15T15:56:24Z <p>Are all the folders you your path already created? I think they have to already exist or you'll get an error. </p> http://stackoverflow.com/questions/130120/starteam-2005-com-api/762099#762099 1 Answer by Slapout for Starteam 2005 COM API Slapout 2009-04-17T20:33:36Z 2009-04-17T20:33:36Z <p>You don't have to use COM to access the StarTeam API. There's a .NET version of the <a href="http://www.borland.com/downloads/download%5Fstarteam.html" rel="nofollow">StarTeam SDK</a> available. </p> http://stackoverflow.com/questions/523255/what-is-a-great-free-icon-editor-for-windows/697516#697516 0 Answer by Slapout for What is a great free icon editor for windows? Slapout 2009-03-30T14:44:28Z 2009-03-30T14:44:28Z <p>If you have Visual Studio 2008 Standard or Professional edition then you can get <a href="http://www.axialis.com/download/iwlite.html" rel="nofollow">Axialis IconWorkshop Lite</a> for free. </p> http://stackoverflow.com/questions/650351/your-first-c-compiler/650419#650419 0 Answer by Slapout for Your first C compiler? Slapout 2009-03-16T13:27:30Z 2009-03-16T13:27:30Z <p>One of the first I remember using was a port of GCC to the Atari ST back in the late 80s/early 90s. </p> http://stackoverflow.com/questions/238180/what-is-the-best-ui-youve-ever-used/501977#501977 0 Answer by Slapout for What is the best UI you've ever used? Slapout 2009-02-02T01:25:13Z 2009-02-02T01:25:13Z <p>Psion Series 5 PDA</p> http://stackoverflow.com/questions/357233/what-dead-programming-languages-do-you-know/484802#484802 0 Answer by Slapout for What dead programming languages do you know? Slapout 2009-01-27T19:15:47Z 2009-01-27T19:15:47Z <p>Atari ST Basic. Great computer, horrible Basic. </p> http://stackoverflow.com/questions/469244/what-issues-carry-the-highest-risk-in-a-software-project/469344#469344 5 Answer by Slapout for What issues carry the highest risk in a software project? Slapout 2009-01-22T14:30:54Z 2009-01-22T14:30:54Z <p>People &amp; Communication</p> <p>The programmers need to be able to program. The analysts need to be able to communicate to the customer in a way that pulls out what the customer really needs. Then the analysts need to be able to clearly communicate this to the programmer. </p> http://stackoverflow.com/questions/461186/is-this-list-a-correct-understanding-of-microsofts-current-application-deploymen/462303#462303 0 Answer by Slapout for Is this list a correct understanding of Microsoft's current application deployment options? Slapout 2009-01-20T17:40:56Z 2009-01-20T17:40:56Z <p>You listed "MSI App". Windows Installer is Microsoft's technology for installing and upgrading programs on Windows. The installation packages it creates have the ".msi" extension. (It was originally going to be called "Microsoft Installer". They changed it to "Windows Installer", but keep the extension.) It defines a standard way to create install packages. Packages can be created by many different tools (InstallShield, WiX, Visual Studio, etc). It's not limited to WPF apps. You can use it to install almost any kind of application. </p> http://stackoverflow.com/questions/452134/desktop-software-development-timeline/452239#452239 0 Answer by Slapout for Desktop software development timeline Slapout 2009-01-16T22:09:02Z 2009-01-16T22:09:02Z <p>Borland's <a href="http://en.wikipedia.org/wiki/Turbo_Pascal" rel="nofollow">Turbo Pascal</a>: Famous for lightning-fast compile times I'm told.</p> http://stackoverflow.com/questions/103708/disappearing-checkbox-label-in-asp-net-3-5-detailsview-control 0 Disappearing checkbox label in ASP.Net 3.5 DetailsView control Slapout 2008-09-19T17:00:34Z 2009-01-14T16:27:54Z <p>I have a web form with a button and a DetailsView control on it. In the button's click event I change the DetailsView control to insert mode so I can add records:</p> <p>DetailsView1.ChangeMode(DetailsViewMode.Insert)</p> <p>Everything works fine, except for a checkbox in the DetailsView. When the DetailsView goes into insert mode, the text describing what the checkbox is for disappears. The checkbox itself works fine. </p> <p>Why is my text disappearing and how can I fix it? </p> http://stackoverflow.com/questions/435905/what-are-the-legal-ways-to-get-textbooks-programming-books-in-pdf-only-with-an-o/436044#436044 0 Answer by Slapout for What are the legal ways to get textbooks/programming books in PDF only, with an option to always download it again? Slapout 2009-01-12T16:42:36Z 2009-01-12T16:42:36Z <p>If you're looking for ebooks about .NET, Paul Sheriff has written <a href="http://www.pdsa.com/Products/ProductList.aspx?nav=ebooks" rel="nofollow">several books</a> that he self publishes as ebooks. </p> http://stackoverflow.com/questions/435918/i-need-a-university-it-curriculum-to-follow/435950#435950 1 Answer by Slapout for I need a university IT curriculum to follow. Slapout 2009-01-12T16:21:54Z 2009-01-12T16:21:54Z <p>I like the <a href="http://see.stanford.edu/SEE/Courses.aspx" rel="nofollow">comp sci videos</a> that Stanford University has put up. It's only a few classes and not a whole curriculum, but it's a start. </p> http://stackoverflow.com/questions/434085/c-library-vs-winapi/434275#434275 2 Answer by Slapout for C library vs WinApi Slapout 2009-01-12T02:40:24Z 2009-01-12T02:40:24Z <p>It's probably more information than you're looking for (and maybe not exactly what you asked) but Catch22.net has an article entitled "<a href="http://catch22.net/tuts/minexe" rel="nofollow">Techniques for reducing Executable size</a>" that may help point out the differences in Win32 api calls and c runtime calls. </p> http://stackoverflow.com/questions/431999/looking-for-a-nice-add-on-to-vs-2008/432392#432392 1 Answer by Slapout for Looking for a nice add on to VS 2008 Slapout 2009-01-11T04:51:53Z 2009-01-11T04:51:53Z <p>You didn't mention if you wanted this because you've got existing code you want to change or if you need to do it as you develop new code. If it is the latter, then in VS 2008, you can type <strong>prop</strong> and hit tab twice and it will insert a template with a public property and a backing private field. (At least VB does. C# inserts an "automatic" property where you don't see the private field, but it still exists.) </p> http://stackoverflow.com/questions/428849/where-do-all-the-old-programmers-go/429128#429128 6 Answer by Slapout for Where do all the old programmers go? Slapout 2009-01-09T18:23:45Z 2009-01-09T18:23:45Z <p>Old programmers never die, they just branch off to a new address.<br /> Old programmers never die. They just decompile.<br /> Old programmers never die. They just lose their memory.<br /> Old programmers never die. They just get bugged with life.<br /> Old programmers never die. They just go to bits.<br /> Old programmers never die. They just can’t C as well<br /> Old programmers never die, they just recurse.<br /> Old programmers never die. They just terminate and stay resident. </p> <p>Seriously though, most of the programmers I work with are over 40. I've also heard that Microsoft is set up in such a way that programmers get promoted, but without having to go into management.</p> http://stackoverflow.com/questions/184118/what-programming-book-would-you-not-recommend-to-developers/420939#420939 3 Answer by Slapout for What Programming Book would you NOT recommend to Developers? Slapout 2009-01-07T16:16:59Z 2009-01-07T16:16:59Z <p><img src="http://ecx.images-amazon.com/images/I/51Hhw7mkdIL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA240_SH20_OU01_.jpg" alt="alt text" /></p> <p><strong>Data Structures Demystified</strong><br /> It's a good idea for a book. But too many errors make it difficult to learn the technical material they're trying to teach. </p> http://stackoverflow.com/questions/414357/problem-pushing-msi-via-sms-to-hosts-that-have-windows-xp-sp3-installed 0 Problem pushing MSI via SMS to hosts that have Windows XP SP3 installed Slapout 2009-01-05T20:17:35Z 2009-01-05T22:31:19Z <p>I've created an MSI that installs our application. It installs fine if you run it locally on a machine with Windows XP SP2 or SP3. If you run it through SMS to a machine that has Windows XP SP2 it installs fine. But, if you try to run it through SMS to a machine that has Windows XP SP3 it seems to stall and take hours. (It only takes a couple of minutes when run via the other methods.) </p> <p>Does anyone have any insight as to why it is behaving this way with SMS and XP SP3? </p> <p><strong>Update</strong></p> <p>Our SMS guys think they found the problem. We had asked them to do a reboot before the install. They said that on SP3, some services weren't being started before the installer was running. They think this was causing the problem. They're going to try adding a delay after the reboot before the install starts. </p> http://stackoverflow.com/questions/11964/pay-for-vmware-or-use-open-source/408528#408528 0 Answer by Slapout for Pay for vmware or use Open Source? Slapout 2009-01-03T03:00:56Z 2009-01-03T03:00:56Z <p>I've tried VirtualBox, VMWare Server (free) and Virtual PC. Of the three, VMWare seems to be the fastest. The other two were just too slow for me. The one thing I don't like about VMWare is that you only get one snapshot per vm. Of course, I could get more if I bought the VMWorkstation product but, at $200, it's more than I can afford right now. </p> http://stackoverflow.com/questions/398600/why-would-someone-develop-a-new-application-in-cold-fusion/407849#407849 2 Answer by Slapout for Why would someone develop a new application in Cold Fusion? Slapout 2009-01-02T19:49:41Z 2009-01-02T19:49:41Z <p>Just because you're not familiar with a technology doesn't make that technology unsuitable or outdated. Neither does it not being the latest thing. </p> <p>As for why, maybe they already have a Code Fusion license and a server setup. </p> http://stackoverflow.com/questions/1069235/powerbuilder-11-5-version-control/1069252#1069252 Comment by Slapout on PowerBuilder 11.5 & Version Control Slapout 2009-10-27T17:01:01Z 2009-10-27T17:01:01Z That's because PB stored both the source code and a compiled version within the PBL. You don't have to do a compile when you run from withing the IDE. http://stackoverflow.com/questions/1472537/c-trimming-newline-character-when-reading-input-from-file/1472597#1472597 Comment by Slapout on c trimming newline character when reading input from file Slapout 2009-09-24T15:57:05Z 2009-09-24T15:57:05Z I thought the whole point of &quot;\n&quot; was that it represented a newline no matter what OS you are using. http://stackoverflow.com/questions/457884/what-are-the-things-java-got-wrong/457905#457905 Comment by Slapout on What are the things Java got wrong? Slapout 2009-08-08T23:46:05Z 2009-08-08T23:46:05Z Java: The OOness of C++ with the verboseness of COBOL. http://stackoverflow.com/questions/1133581/is-23-148-855-308-184-500-a-magic-number-or-sheer-chance Comment by Slapout on Is 23,148,855,308,184,500 a magic number, or sheer chance? Slapout 2009-07-16T18:02:09Z 2009-07-16T18:02:09Z Maybe this is some kind of new anti-smoking campaign. (&quot;See how much smoking really costs you!&quot; :-) http://stackoverflow.com/questions/1103888/powerbuilder-equivalent-to-debug-writeline/1105136#1105136 Comment by Slapout on PowerBuilder equivalent to Debug.WriteLine? Slapout 2009-07-14T00:44:35Z 2009-07-14T00:44:35Z That's what I do, use OutputDebugString and display it with DebugView. (Love the PowerBuilder RealHowTo, btw). http://stackoverflow.com/questions/1112234/what-stickers-do-you-have-on-your-computer-laptop-or-desktop Comment by Slapout on what stickers do you have on your computer (laptop or desktop)? Slapout 2009-07-10T22:11:19Z 2009-07-10T22:11:19Z I don't think this should have been closed if we talked about programming related stickers. http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/895398#895398 Comment by Slapout on How can you tell if a person is a programmer? Slapout 2009-05-29T02:21:06Z 2009-05-29T02:21:06Z That's me except the last one. I use balabaster's answer for that one. http://stackoverflow.com/questions/808540/i-cant-understand-how-to-use-sendmessage-or-postmessage-calls/808681#808681 Comment by Slapout on I can't understand how to use SendMessage or PostMessage calls :( Slapout 2009-04-30T19:47:11Z 2009-04-30T19:47:11Z The text edit box is probably a child windows of the main notepad window. You may need to get the child's handle. In C it would be something like: GetWindow(hwndNotepad, GW_CHILD); http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/142496#142496 Comment by Slapout on Hidden .NET Base Class Library Classes? Slapout 2009-04-29T21:15:58Z 2009-04-29T21:15:58Z I was surprised to find that this didn't work inside of the .NET compact framework. http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/238508#238508 Comment by Slapout on Worst UI You've Ever Used Slapout 2009-03-30T15:30:58Z 2009-03-30T15:30:58Z Blender is hard to learn. But once you get a feel for it you start to wonder why other pgms don't work the same way. http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/238245#238245 Comment by Slapout on Worst UI You've Ever Used Slapout 2009-03-30T15:29:38Z 2009-03-30T15:29:38Z Seems to have gotten better with 2.6 http://stackoverflow.com/questions/611614/how-do-you-test-error-handling-involving-remote-host-errors-with-asp-net-develo/611637#611637 Comment by Slapout on How do you test error handling involving "remote host" errors with ASP.NET development server? Slapout 2009-03-04T17:37:59Z 2009-03-04T17:37:59Z I'm not sure how I do that if the ASP/Visual Studio built-in development server doesn't allow remote connections. http://stackoverflow.com/questions/611614/how-do-you-test-error-handling-involving-remote-host-errors-with-asp-net-develo/611636#611636 Comment by Slapout on How do you test error handling involving "remote host" errors with ASP.NET development server? Slapout 2009-03-04T17:37:01Z 2009-03-04T17:37:01Z This may be what I have to do. Unfortunately, I don't know much about IIS. Guess it's time to learn. http://stackoverflow.com/questions/469244/what-issues-carry-the-highest-risk-in-a-software-project/469254#469254 Comment by Slapout on What issues carry the highest risk in a software project? Slapout 2009-01-22T14:32:31Z 2009-01-22T14:32:31Z Not sure why this is voted done. A look at thedailywtf.com show that it's certainly a cause for failed software projects. http://stackoverflow.com/questions/391523/what-are-some-good-free-programming-books/391593#391593 Comment by Slapout on What are some good free programming books? Slapout 2009-01-21T22:24:42Z 2009-01-21T22:24:42Z rwmnau, my local library doesn't have &quot;The Mythical Man Month&quot;.Are you going to come thru on your guarantee and buy it for them?:) <a href="http://24.173.115.14/athcgi/athweb.pl?a=q&amp;ci=MP&amp;std&amp;pg=7&amp;k1=THE%20MYTHICAL%20MAN%20MONTH&amp;k2=&amp;k3=&amp;o1=1&amp;o2=1&amp;l1=1&amp;l2=1&amp;l3=1&amp;loc=All+Locations&amp;fmt=All+Formats&amp;pb=1&amp;jw=" rel="nofollow">24.173.115.14/athcgi/&hellip;</a>