User Shane MacLaughlin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T21:32:33Z http://stackoverflow.com/feeds/user/22564 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/216259/is-there-a-max-array-length-limit-in-c/216321#216321 4 Answer by Shane MacLaughlin for Is there a max array length limit in C++? Shane MacLaughlin 2008-10-19T11:54:22Z 2009-12-19T03:05:06Z <p>Looking at it from a practical rather than theoretical standpoint, on a 32 bit Windows system, the maximum total amount of memory available for a single process is 2 GB. You can break the limit by going to a 64 bit operating system with much more physical memory, but whether to do this or look for alternatives depends very much on your intended users and their budgets. You can also extend it somewhat using <a href="http://en.wikipedia.org/wiki/Physical%5FAddress%5FExtension" rel="nofollow">PAE</a>.</p> <p>The type of the array is very important, as default structure alignment on many compilers is 8 bytes, which is very wasteful if memory usage is an issue. If you are using Visual C++ to target Windows, check out the <a href="http://msdn.microsoft.com/en-us/library/2e70t5y1%28VS.80%29.aspx" rel="nofollow">#pragma pack</a> directive as a way of overcoming this.</p> <p>Another thing to do is look at what in memory compression techniques might help you, such as sparse matrices, on the fly compression, etc... Again this is highly application dependent. If you edit your post to give some more information as to what is actually in your arrays, you might get more useful answers.</p> <p>Edit: Given a bit more information on your exact requirements, your storage needs appear to be between 7.6 GB and 76 GB uncompressed, which would require a rather expensive 64 bit box to store as an array in memory in C++. It raises the question why do you want to store the data in memory, where one presumes for speed of access, and to allow random access. The best way to store this data outside of an array is pretty much based on how you want to access it. If you need to access array members randomly, for most applications there tend to be ways of grouping clumps of data that tend to get accessed at the same time. For example, in large GIS and spatial databases, data often gets tiled by geographic area. In C++ programming terms you can override the [] array operator to fetch portions of your data from external storage as required.</p> http://stackoverflow.com/questions/1928570/any-good-c-or-c-libraries-out-there-for-dealing-with-large-point-clouds 1 Any good C or C++ libraries out there for dealing with large point clouds? Shane MacLaughlin 2009-12-18T14:38:01Z 2009-12-19T02:11:51Z <p>Basically, I'm looking for a library or SDK for handling large point clouds coming from LIDAR or scanners, typically running into many millions of points of X,Y,Z,Colour. What I'm after are as follows;</p> <p>Fast display, zooming, panning Point cloud registration Fast low level access to the data Regression of surfaces and solids (not as important as the others)</p> <p>While I don't mind paying for a reasonable commercial library, I'm not interested in a very expensive library (e.g. in excess of about $5k) or one with a per user run-time license cost. Open source would also be good. I found a few possibilities via google, but they all tend to be too expensive for my budget.</p> http://stackoverflow.com/questions/1920969/is-there-an-easy-way-to-push-variables-onto-the-stack-for-later-retrieval 1 Is there an easy way to push variables onto the stack for later retrieval Shane MacLaughlin 2009-12-17T10:58:37Z 2009-12-17T13:08:11Z <p>I have a member function of an object that is typically used in an iterative manner but occasionally in a recursive manner. The function is basically following the path of a stream of water downhill, and under certain conditions the stream could split. In order to support the occasional recursion I have to push the state of the object onto the stack and pop it off afterwords. I'm currently doing this using local variables, but the code looks awful. I'd like to write PushState and PopState members but most of the implementations I've looked at aren't great. e.g. using a stack member in my object which ends up using the heap which is slow and leads to other issues. _alloca won't work as the stack frame is lost when the push function returns.</p> <p>Are there any other reasonable generic ways of pushing and popping from the stack that i'm missing?</p> <pre><code>class CMyObject { enum Direction { left,right,branch,finished; } // state variables double m_XPos,m_YPos; void Navigate(double x,double y); Direction GoLeft(); Direction GoLeft(); }; void CMyObject::Navigate(double x,double y) { m_XPos = x; m_YPos = y; Direction d = GoLeft(x,y); while(d != finished) { switch(d) { case left: d = GoLeft(); break; case right: d = GoRight(); break; case branch: { // push object state onto the stack double temp_x = m_XPos; double temp_y = m_YPos; Navigate(m_XPos,m_YPos); // pop object state from the stack m_XPos = temp_x; m_YPos = temp_x; GoRight(); } break; } } } </code></pre> http://stackoverflow.com/questions/1211802/any-ostn02-libraries-for-windows-ce 0 Any OSTN02 libraries for Windows CE Shane MacLaughlin 2009-07-31T10:24:02Z 2009-12-09T12:10:48Z <p>I'm looking for either some C or C++ source library, or DLL or static libraries that will include Windows CE/Mobile verions, to convert between WGS84 geodetic coordinates and the OSTN02 grid and OSGM02 datum. For the Win32 platforms I already use the <a href="http://www.qgsl.com/?product=gridinquest" rel="nofollow">Quest</a> libraries, but they have nothing for CE based platforms. I have looked at the <a href="http://www.bluemarblegeo.com/" rel="nofollow">Blue marble libraries</a>, but they appear to costly to deploy. I don't mind paying a reasonable price for an SDK, but not one that requires a per license run-time royalty.</p> http://stackoverflow.com/questions/1852268/when-you-decide-to-stop-writing-code-what-will-be-your-next-move/1852417#1852417 32 Answer by Shane MacLaughlin for When you decide to stop writing code, what will be your next move? Shane MacLaughlin 2009-12-05T15:02:41Z 2009-12-05T15:02:41Z <p>Well, when I stop coding, i usually start debugging :)</p> http://stackoverflow.com/questions/1798780/using-a-take-home-coding-component-in-interview-process/1798816#1798816 3 Answer by Shane MacLaughlin for Using a "take-home" coding component in interview process Shane MacLaughlin 2009-11-25T18:00:34Z 2009-11-25T18:00:34Z <p>Only problem I'd see with this is that the candidates could easily cheat and get someone else to do the work. Who knows, your interview question might even end up on StackOverflow :)</p> http://stackoverflow.com/questions/897614/how-do-i-know-if-a-thread-is-suspended-under-windows-ce 5 How do i know if a thread is suspended under Windows CE Shane MacLaughlin 2009-05-22T12:31:59Z 2009-10-23T16:47:15Z <p>Can I get a threads suspend count under Windows CE, using C or Visual C++, without calling resume or suspend functions? The only way I can see of doing it is something like</p> <pre><code>int Count = SuspendThread(ThreadHandle); ResumeThread(ThreadHandle); </code></pre> <p>This has a couple of problems, firstly, I'd rather not suspend the thread, and secondly the suspend might fail if the thread is running kernel code. I can work around this, but I feel there should be a more elegant solution. I could also reverse it using</p> <pre><code>int Count = ResumeThread(ThreadHandle); SuspendThread(ThreadHandle); </code></pre> <p>But this has similar problems. Any good alternative method of getting the suspend count from the handle?</p> http://stackoverflow.com/questions/1558547/how-to-read-nmea-sentences-in-windows-vista-using-c/1558583#1558583 0 Answer by Shane MacLaughlin for how to read NMEA sentences in windows Vista using c++ Shane MacLaughlin 2009-10-13T07:03:10Z 2009-10-13T07:03:10Z <p>I'd tend to prompt the user for the port. NMEA typically comes in as an ASCII string through a COM port. Before bluetooth, this used to typically be COM1 to COM4 with 90% of cases being either COM1 or COM2. It is more common now to connect via bluetooth, where you regularly see COM ports up to COM20 and above, so brute force is a slow option. The time taken to check all ports depends on how often your GPS sends sentances (assuming it does not require prompting) and your time-outs. You could expect a search to take up to 30 seconds. If you <a href="http://www.codeproject.com/KB/system/serial%5Fportsenum%5Ffifo.aspx" rel="nofollow">enumerate the COM ports</a> this will be much quicker, as there will rarely be more that half a dozen active ports at any one time.</p> http://stackoverflow.com/questions/1547211/how-to-create-minidump-for-my-process-when-it-crashes/1547332#1547332 0 Answer by Shane MacLaughlin for how to create minidump for my process when it crashes Shane MacLaughlin 2009-10-10T07:52:11Z 2009-10-10T07:52:11Z <p>If you have a few bucks to spare <a href="http://www.automatedqa.com/products/aqtrace/" rel="nofollow">AQtrace</a> may be worth a look at. This has many of the advantages of the crash occurring inside the debugger, while running on a remote end user machine.</p> http://stackoverflow.com/questions/1547317/what-does-128-bit-os-mean-to-a-software-developer/1547322#1547322 2 Answer by Shane MacLaughlin for What does 128-bit OS mean to a software developer?? Shane MacLaughlin 2009-10-10T07:48:20Z 2009-10-10T07:48:20Z <p>It means a whole lot of wasted ram if you're trying to get every piece of data to line up on a 128bit boundary, and some really big integers ;)</p> http://stackoverflow.com/questions/1378164/how-do-i-find-a-source-code-position-from-an-address-given-by-a-crash-in-window-c 0 How do I find a source code position from an address given by a crash in Window CE Shane MacLaughlin 2009-09-04T09:29:02Z 2009-09-04T16:48:24Z <p>I have a Windows mobile 4.0 application, written using EVC++ 4.0 SP4 with MFC, that is exhibiting a random occasional crash in the field. e.g. Exception ox800000002 at 00112584. It does not happen under various emulators and simulators, hence is very difficult to trace using a debugger. The crash throws up and address and exception type. Given that I have the PDB is there any way to track this address to the source. I can't recompile using VC++ 8 as it doesn't support the mobile 4 SDK.</p> <p>My guess is that without a stack trace I'm not going to have much joy, as the chances are that the exception may not be in my source. Worth a try all the same.</p> <p><strong>Edit</strong> As suggested, I have looked at the address in the context of the .MAP file for the program. This reveals the following</p> <pre><code> Address Publics by Value Rva+Base Lib:Object 0001:00000000 ?GetUnduValue@@YANMM@Z 00011000 f 7Par.obj ' ' ' 0001:001124b8 ?OnLButtonUp@CGXGridUserDragSelectRangeImp@@UAAHPAVCGXGridCore@@AAVCPoint@@AAI@Z 001234b8 f gxseldrg.obj 0001:001126d8 ?OnSelDragStart@CGXGridUserDragSelectRangeImp@@UAAHPAVCGXGridCore@@KK@Z 001236d8 f gxseldrg.obj </code></pre> <p>Which suggests the error occured during CGXGridUserDragSelectRangeImp::OnLButtonUp(), which seems a bit odd as I don't think there was a mouse / keyboard / screen button pressed at the time. Could be the stack got fragged before the crash got reported, and I'm wasting my time. I'll recompile with assembler output to try to isolate it to a given line, but don't hold out much hope :(</p> <p>Does the fact that the map file reports segmented addresses e.g. 0001:xxxxxxxxx and the crash report unsegmented addresses mean I have to carry out some computation to get the map address from the crash address?</p> http://stackoverflow.com/questions/1057425/is-excessive-use-of-this-in-c-a-code-smell 3 Is excessive use of this in C++ a code smell Shane MacLaughlin 2009-06-29T09:35:45Z 2009-09-02T00:38:09Z <p>I'm dealing with a large code base that uses the following construct throughout</p> <pre><code>class MyClass { public: void f(int x); private: int x; }; void MyClass::f(int x) { ' ' this-&gt;x = x; ' ' } </code></pre> <p>Personally, I'd always used and hence prefer the form</p> <pre><code>class MyClass { public: void f(int x); private: int _x; }; void MyClass::f(int x) { ' ' _x = x; ' ' } </code></pre> <p>The reasons I prefer the latter are that it is more succinct (less code = fewer potential bugs), and that I don't like having multiple variables of the same name in scope at the same time where I can avoid it. That said, I am seeing the former usage more and more often these days. Is there any upside to second approach that I am unaware of? (e.g. effect on compile time, use with templated code, etc...) Are the advantages of either approach significant enough merit a refactor to the other? Reason I ask, that while I don't like the second approach present in the code, the amount of effort and associated risk of introducing further bugs don't quite merit a refactor.</p> http://stackoverflow.com/questions/661346/moving-an-engineering-application-from-standalone-to-internal-to-cad 3 Moving an engineering application from standalone to internal to CAD Shane MacLaughlin 2009-03-19T07:35:31Z 2009-08-19T15:04:12Z <p>I have a large MFC C++ application that I would be very keen to port into AutoCAD and IntelliCAD. AutoDesk offer Object ARX for this purpose, which replaces the older and slower ADS technology. IntelliCAD, afaik only supports ADS. Has anyone out there done this, and if so which tools did you use and what pitfalls did you encounter?</p> <p>I'm specifically interested in resources that will simplify the transition, and allow me to maintain seperate CAD based and standalone versions going forward.</p> http://stackoverflow.com/questions/1264852/how-to-partition-a-plane/1264908#1264908 0 Answer by Shane MacLaughlin for How to partition a plane Shane MacLaughlin 2009-08-12T08:21:54Z 2009-08-12T08:34:12Z <p>You probably need to better define what criteria you wish to use to create your polygonal partitions. For example, if it is proximity, you could do the following;</p> <ul> <li>Construct a voronoi diagram.</li> <li>Where any two adjacent polygons have a close neighbour, merge them into a single polygon</li> <li>Repeat until you have the desired number of polygons</li> </ul> <p>If it was equal number of points per polygon, you could do something similar based on merging adjacent polygons with until a desired point count is met.</p> <p><strong>Edit:</strong> If convexity was the most important issue, you could simply take a point in the middle of you cloud and project radials to the edge to divide the cloud into a radial array of triangles.</p> http://stackoverflow.com/questions/1253856/using-createcompatibledc-with-mapping-modes-other-than-mmtext 0 Using CreateCompatibleDC with mapping modes other than MM_TEXT Shane MacLaughlin 2009-08-10T09:10:58Z 2009-08-10T10:39:06Z <p>I have a visual C++ application that uses a CView derived class to render its display, which is primarily 3d vector data and true type text. The mapping mode used is either MM_ANISOTROPIC or MM_LOMETRIC. I can't use MM_TEXT as I use the same code for printing and plotting of the data and also have to overcome non-square screen pixel issues.</p> <p>The drawing code currently draws directly onto the screen using the CViews OnDraw method and the CDC object provided. I am trying to replace this with drawing to a bitmap and blitting the bitmap to screen, using a CreateCompatibleDC / CreateCompatibleBitmap combination, as described in the <a href="http://msdn.microsoft.com/en-us/library/aa922174.aspx" rel="nofollow">MS documentation</a> and elsewhere.</p> <p>The problem is that the DCs are not compatible for mapping modes other than MM_TEXT, such that my view is rendered upside down and at the wrong scale. Investigation shows the following;</p> <pre><code>void CMyView::OnDraw(CDC *pDC) { CDC MyDC = CreateCompatibleDC(pDC); // Create a new memory DC; int a = pDC-&gt;GetMapMode(),b = MyDC.GetMapMode(); ' ' ' } a = 2 b = 1 </code></pre> <p>Calling a SetMapMode on MyDC causes the display to be drawn entirely in black. Do I have to rewrite my code to suit MM_TEXT for drawing to a bitmap, or is there another way to overcome this problem. </p> http://stackoverflow.com/questions/71065/migrating-from-stingray-objective-toolkit/143258#143258 0 Answer by Shane MacLaughlin for Migrating from Stingray Objective Toolkit Shane MacLaughlin 2008-09-27T08:49:47Z 2009-08-07T06:53:01Z <p>I have been using Stingray for last eight years or so, and have looked at moving off it a couple of times. So far, I've decided against, principally because I have ported a version to Windows CE &amp; Mobile and don't see much else giving the same solution on this platform. While Stingray isn't perfect, they have now got a 64bit version, and it's a pretty stable product.</p> <p>What I am doing, is replacing the very weak areas of Stingray, such as the XML support, with alternatives. In this case I went with <a href="http://expat.sourceforge.net/" rel="nofollow">Expat</a> for performance reasons. </p> <p>The perils of moving? You could go from something stable but old fashioned to pretty but flakey ;) In my case, I would also kill a fair number of my automated test scripts that work at GUI level.</p> <p><strong>Edit:</strong> Just to add a bit to the above, I moved from VS2003 to VS2008 this week and at the same time Objective Studio 2006 v2 to Objective Studio 10.1. The transition was pretty seamless, with one minor glitch that was promptly handled by RogueWave tech support. Even this would have gone unnoticed if we didn't have a very extensive GUI regression test suite. IMO, Stingray is a very mature, well supported, feature rich and most importantly stable product. I for won't be moving of it any time soon without very good reason.</p> http://stackoverflow.com/questions/1238835/how-to-show-available-windows-in-the-window-menu 1 How to show available windows in the Window menu Shane MacLaughlin 2009-08-06T13:19:16Z 2009-08-07T01:29:05Z <p>I have a MFC MDI application that I've recently ported from VS2003 to VS2008, and at the same time moved from Stingray Objective Studio 2006 v2 to v10.1. On the previous versions of my application, if I had more than one view open, the Window menu would be populated by an enumerated list of available views, e.g. <strong>1 MyViewA</strong>, <strong>2 MyViewB</strong> etc... If I had a large number of views, I would also get a <strong>Windows...</strong> menu option to allow me to select a view. This no longer happens, which is breaking some of my GUI level regression tests. My guess is that this functionality was implemented by either CMDIFrameWnd or SECMDIFrameWnd but I couldn't find a reference to it in the documentation. Does anyone know how I can get this functionality back.</p> http://stackoverflow.com/questions/1233086/what-does-refactoring-mean-to-you/1233316#1233316 2 Answer by Shane MacLaughlin for What does refactoring mean to you? Shane MacLaughlin 2009-08-05T13:38:19Z 2009-08-05T13:38:19Z <p>To answer this question I have to look at some specific cases I encountered recently and the reasons why I spent time (and hence money) refactoring. The most common one was reusability, which in turn led to portability. Basically I had a bunch of code that was Win32 specific and I wanted it to run on Windows mobile as well as Win32. The refactoring in this instance seperated and isolated all the OS specific stuff into a single file. Another one I find myself doing quite a bit is modifying similar objects such that common functionality is placed into a shared base class, where I know I will have a requirement to provide similar functionality at some stage in the future. Basically investing a small amount of time now to save a lot of time later.</p> <p>So what does refactoring mean to me as a concept? Probably investing some extra time in existing code to enhance its value and/or prolong its life. IMO, for the cost/benefit of this to work, you typically need decent automated regression testing.</p> http://stackoverflow.com/questions/385506/when-is-optimisation-premature/385825#385825 8 Answer by Shane MacLaughlin for When is optimisation premature? Shane MacLaughlin 2008-12-22T09:06:01Z 2009-07-30T23:07:50Z <p>IMHO, 90% of your optimization should occur at design stage, based on percieved current, and more importantly, future requirements. If you have to take out a profiler because your application doesn't scale to the required load you have left it too late, and IMO will waste a lot of time and effort while failing to correct the problem.</p> <p>Typically the only optimizations that are worthwhile are those that gain you an order of magnitude performance improvement in terms of speed, or a multiplier in terms of storage or bandwidth. These types of optimizations typically relate to algorithm selection and storage strategy, and are extremely difficult to reverse into existing code. They may go as deep as influencing the decision on the language in which you implement your system.</p> <p>So my advice, optimize early, based on your requirements, not your code, and look to the possible extended life of your app.</p> http://stackoverflow.com/questions/1142237/can-standardsdk-4-0-under-evc-be-used-to-debug-on-a-remote-device 1 Can StandardSDK 4.0 under EVC++ be used to debug on a remote device? Shane MacLaughlin 2009-07-17T09:23:01Z 2009-07-25T18:17:19Z <p>I'm running <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=1DACDB3D-50D1-41B2-A107-FA75AE960856&amp;displaylang=en" rel="nofollow">Embedded Visual C++ 4</a> with <a href="http://www.microsoft.com/downloads/details.aspx?familyid=4A4ED1F4-91D3-4DBE-986E-A812984318E5&amp;displaylang=en" rel="nofollow">service pack 4</a>, to develop an application for a device running CE 5.0. I'm using the <a href="http://www.microsoft.com/downloads/details.aspx?familyid=FA1A3D66-3F61-4DDC-9510-AE450E2318C3&amp;displaylang=en" rel="nofollow">CE 5.0 SDK</a> for this purpose, which works fine except for the fact that while it will target my device (i.e. an SH4 based PDA), it will not let me select anything other than the StandardSDK emulator for debugging. If I go to <strong>Tools / Configure Platform manager</strong>, I can connect to my device under Windows CE default Platform, but I cannot select it from the Build Toolbar for output and debugging purposes. Is there any work around for this. I've considered moving to VS2008 for this app, but it breaks a large amount of 3rd party code.</p> http://stackoverflow.com/questions/1153094/can-i-target-ce-4-2-or-ce-5-0-using-c-on-vs2008 1 Can I target CE 4.2 or CE 5.0 using C++ on VS2008 Shane MacLaughlin 2009-07-20T11:46:30Z 2009-07-24T03:15:59Z <p>I am developing for a SH4 based device that can run either CE 4.2 or CE 5.0. As per my <a href="http://stackoverflow.com/questions/1142237/can-standardsdk-4-0-under-evc-be-used-to-debug-on-a-remote-device">previous question</a>, I can target these devices using the Standard SDKs under embedded visual C++ 4.0, but I cannot debug over ActiveSync.</p> <p>I have also loaded Visual Studio 2008 (SP1), but cannot load these SDKs up, and hence cannot target my device. Is there any way of doing so, or is anyone aware of any other third party debugger I could use.</p> <p>The application is C++ / MFC.</p> http://stackoverflow.com/questions/316626/how-do-i-read-from-a-version-resource-in-visual-c 4 How do I read from a version resource in Visual C++ Shane MacLaughlin 2008-11-25T07:54:00Z 2009-07-23T21:48:01Z <p>I have a version resource in my resources in a C++ project which contains version number, copyright and build details. Is there an easy way to access this at run-time to populate my <em>help/about</em> dialog as I am currently maintaining seperate const values of this information. Ideally, the solution should work for Windows/CE mobile and earlier versions of Visual C++ (6.0 upwards).</p> http://stackoverflow.com/questions/1132023/are-there-any-generic-c-apis-or-sdks-for-cameras-that-work-on-ce-and-win32 0 Are there any generic C++ APIs or SDKS for cameras that work on CE and Win32 Shane MacLaughlin 2009-07-15T15:11:23Z 2009-07-15T15:14:40Z <p>I have a mobile application with versions run on TabletPCs (Win32) and Rugged PDAs (Windows CE, Windows Mobile 4 &amp; 5). Are there any SDKs out there that I can use that will work with a range of cameras across these operating systems?</p> <p>On Windows CE I can use <a href="http://msdn.microsoft.com/en-us/library/aa454996.aspx" rel="nofollow">SHCameraCapture</a> which will work with built in cameras, but typically not with externally connected cameras. On Win32 there are vendor specific SDKs, such as <a href="http://www.usa.canon.com/consumer/controller?act=SDKHomePageAct&amp;keycode=Sdk%5FLic&amp;fcategoryid=314&amp;modelid=7474&amp;id=3464" rel="nofollow">those offered by Canon</a>, but not much generic other than FireWire based.</p> <p>Has anyone come across any SDKs that abstract all of this into a simpler interface, or do I have to do this myself with various bits of hardware on an adhoc basis? My requirement is to get a JPEG from the camera to the application on demand.</p> http://stackoverflow.com/questions/178045/when-should-you-start-optimising-code/178096#178096 1 Answer by Shane MacLaughlin for When should you start optimising code? Shane MacLaughlin 2008-10-07T11:49:34Z 2009-06-29T13:58:46Z <p>It depends very much on your performance requirements, both present and going forward into the future. If you design your application well, by selecting efficient algorithms and data structures before you start coding, you are much less likely to require optimization later on.</p> <p>My experience has been that the cost of doing almost anything at requirements and design stages is much less than at coding and testing stages. If it does not perform at testing stage, fixing through optimization may be necessary and may provide a solution. Personally, I think of this as a design shortcoming should should have been predicted prior to testing.</p> <p>So my answer; <strong>If you need the performance, start optimizing before you start coding</strong>.</p> http://stackoverflow.com/questions/1058188/what-next-to-reinvigorate-a-love-of-programming/1058340#1058340 2 Answer by Shane MacLaughlin for What next to reinvigorate a love of programming? Shane MacLaughlin 2009-06-29T13:34:11Z 2009-06-29T13:34:11Z <p>Most of the above answers suggest in one form or another do more harder or different programming. I'd say do the opposite. Take a break from programming do something very different with your spare time for a few months; paint, write a book, take up judo. Anything that has nothing to do with programming whatsoever. After awhile, my guess is you'll miss programming, and when you get back to it really enjoy it. The old cliche is true, 'a change is as good as a rest'.</p> <p>FWIW, you've got a few years on me, I didn't start programming seriously until '78 :)</p> http://stackoverflow.com/questions/955388/how-to-get-apply-button-to-show-in-property-sheets-in-windows-mobile-5-pocketpc 0 How to get Apply button to show in property sheets in Windows Mobile 5 / PocketPC Shane MacLaughlin 2009-06-05T11:20:13Z 2009-06-05T11:20:13Z <p>I have an C++ MFC applications that runs on most flavours of Windows CE / Mobile / PocketPC and Win32. When using CPropertySheet based tabbed dialogs the application under Win32, I get Ok,Cancel, Apply &amp; Help buttons on the bottom of the dialog. On Windows CE, I get ?, OK and X buttons on the top of the dialog which do pretty much the same thing. On Mobile 5, and PocketPC devices I don't get anything, which breaks the programs functionality. Is there any way around this, or do I have to put equivalent buttons on each CPropertyPage that gets included in the propery sheet? I've already looked at the PROPSHEETHEADER, but have not found much useful information.</p> http://stackoverflow.com/questions/954521/preventing-resource-dlls-from-being-hacked/954530#954530 -1 Answer by Shane MacLaughlin for Preventing Resource DLLs from being hacked Shane MacLaughlin 2009-06-05T06:39:57Z 2009-06-05T06:45:28Z <p>You could zip it with an encrypted password and unzip it into a temporary location before reloading it. Something like</p> <pre><code>BOOL CMyApp::InitInstance() { CString TempName = TempFileName(); Unzip("MyZippedResources.Zip",TempName,Password); HINSTANCE hInst = LoadLibrary(TempName); } </code></pre> <p>There are a number of <a href="http://www.google.com/search?q=zip%2BC%2B%2B&amp;rls=p,com.microsoft:en-gb" rel="nofollow">free zip libraries</a> that can cover the unzipping and password protection abovw</p> http://stackoverflow.com/questions/949422/how-much-memory-was-actually-allocated-from-heap-for-an-object/949593#949593 0 Answer by Shane MacLaughlin for How much memory was actually allocated from heap for an object? Shane MacLaughlin 2009-06-04T09:56:00Z 2009-06-04T09:56:00Z <p>Under Windows you can use the <a href="http://msdn.microsoft.com/en-us/library/ms683245%28VS.85%29.aspx" rel="nofollow">Heap32First</a> and <a href="http://msdn.microsoft.com/en-us/library/ms683443%28VS.85%29.aspx" rel="nofollow">HEAPENTRY32</a> structures to determine the size of any given heap entry, assuming you are not using a customised heap manager. It is also worth pointing out that the size of an allocated block is liable to be larger in debug than release builds due to guard bytes. I don't see mention of Heap64 functions in MSDN so I guess they simply use the Heap32 name.</p> http://stackoverflow.com/questions/949467/what-have-i-missed-by-not-studying-computing/949548#949548 0 Answer by Shane MacLaughlin for What have I missed by not studying computing? Shane MacLaughlin 2009-06-04T09:45:28Z 2009-06-04T09:45:28Z <p>I started programming professionally on a full time basis after leaving school in 1984, and did not do any third level computer related course until the early 90s. The main subjects I focussed on were management in IT, and discrete mathematics, both of which I have found very useful. The actual programming part was pretty weak, Pascal from text-book find of stuff. Some of the database classes were quite good however, normalisation, relational algerbra, etc... as were the system analysis and structured design.</p> <p>My feeling is that without a rigid cirriculum, you are liable to skip much of what you might think of as boring that is actually very useful.</p> http://stackoverflow.com/questions/920255/assert-vs-return-false/920268#920268 0 Answer by Shane MacLaughlin for Assert vs. return false? Shane MacLaughlin 2009-05-28T10:56:40Z 2009-05-28T11:06:57Z <p>Simple answer is both, but the second is more important. The assert checks a design assumption, thus before calling fn() I would have pre-conditions, e.g. that a given resource might be available. The assert will typically do nothing in release code, though not necessarily. If it is important that your function, gn, require something be true to work correctly, it eithers uses the if statement and returns and error code, or throws an exception. Assert typically does nothing in release code and thus your function might crash in this situation.</p> <p>See also the more detailed answers given to <a href="http://stackoverflow.com/questions/419406/are-assertions-always-bad/419553#419553">this question</a></p> http://stackoverflow.com/questions/1920969/is-there-an-easy-way-to-push-variables-onto-the-stack-for-later-retrieval/1921010#1921010 Comment by Shane MacLaughlin on Is there an easy way to push variables onto the stack for later retrieval Shane MacLaughlin 2009-12-17T11:47:30Z 2009-12-17T11:47:30Z Knew there had to be something blindingly obvious that I'd missed. Extra object for recursive branch it is. Thanks for that. http://stackoverflow.com/questions/897614/how-do-i-know-if-a-thread-is-suspended-under-windows-ce/1614653#1614653 Comment by Shane MacLaughlin on How do i know if a thread is suspended under Windows CE Shane MacLaughlin 2009-10-25T08:35:00Z 2009-10-25T08:35:00Z +1, after much tedious debugging, I ended up removing all Suspend/Resume calls, and reducing all the sync objects to a single mutex associated with a communications stack use between the two threads in question. http://stackoverflow.com/questions/151919/when-should-i-use-forceinline-instead-of-inline/238605#238605 Comment by Shane MacLaughlin on When should I use __forceinline instead of inline? Shane MacLaughlin 2009-10-13T06:55:36Z 2009-10-13T06:55:36Z +1, clever thinking and an idea I'll borrow. http://stackoverflow.com/questions/1378164/how-do-i-find-a-source-code-position-from-an-address-given-by-a-crash-in-window-c/1378202#1378202 Comment by Shane MacLaughlin on How do I find a source code position from an address given by a crash in Window CE Shane MacLaughlin 2009-09-04T10:50:54Z 2009-09-04T10:50:54Z Ok, got the map file and will edit my question to provide extra detail. http://stackoverflow.com/questions/1264852/how-to-partition-a-plane Comment by Shane MacLaughlin on How to partition a plane Shane MacLaughlin 2009-08-12T08:56:31Z 2009-08-12T08:56:31Z With a grid, you might get empty cells, or all points in one cell. With a radial array you can overcome this with a solution that is quick and easy to implement. http://stackoverflow.com/questions/71065/migrating-from-stingray-objective-toolkit/71350#71350 Comment by Shane MacLaughlin on Migrating from Stingray Objective Toolkit Shane MacLaughlin 2009-08-07T07:01:09Z 2009-08-07T07:01:09Z Out of interest, what were the reasons for moving from Stingray to bcgsoft. I had a scan of the bcgsoft website, and it looks like a nice enough set of tools, but I can't see what huge extra value they add to Stingray that would warrant the expense of migration. n.b. I use Crystal for reporting, so the report tools are no significant in my case. http://stackoverflow.com/questions/536459/do-programmers-peak/536923#536923 Comment by Shane MacLaughlin on Do programmers peak? Shane MacLaughlin 2009-08-07T06:33:41Z 2009-08-07T06:33:41Z This is a marvellous observation which i suspect is true for many, and not just in programming. http://stackoverflow.com/questions/1238835/how-to-show-available-windows-in-the-window-menu/1242439#1242439 Comment by Shane MacLaughlin on How to show available windows in the Window menu Shane MacLaughlin 2009-08-07T06:21:34Z 2009-08-07T06:21:34Z This is pretty much what I did, which isolated the problem as happening only in Stingray based projects. I have since been on to their tech support and got a fix. Thanks for the feedback. http://stackoverflow.com/questions/1233086/what-does-refactoring-mean-to-you/1233124#1233124 Comment by Shane MacLaughlin on What does refactoring mean to you? Shane MacLaughlin 2009-08-05T13:42:24Z 2009-08-05T13:42:24Z It's a good point, but I like to try to find a way that the refactoring will return real value other than just improving the code quality, particularly if the app has already been tested. Too easy to fix something that isn't broken, and maybe even break it in the process, while spending money at the same time. http://stackoverflow.com/questions/1142237/can-standardsdk-4-0-under-evc-be-used-to-debug-on-a-remote-device/1182661#1182661 Comment by Shane MacLaughlin on Can StandardSDK 4.0 under EVC++ be used to debug on a remote device? Shane MacLaughlin 2009-07-27T06:51:59Z 2009-07-27T06:51:59Z My experience is that the SDK required is dependant on the OS deployed on the device. On the device I am targetting, if I go into System Properties, it Windows CE version 5.0 Using CE SDK 5 or 4.2 works ok on the device. Using the SDKs for PocketPC derived CE versions do not work, the MFC UI objects such as CCeCommandBar don't work properly. http://stackoverflow.com/questions/1153094/can-i-target-ce-4-2-or-ce-5-0-using-c-on-vs2008 Comment by Shane MacLaughlin on Can I target CE 4.2 or CE 5.0 using C++ on VS2008 Shane MacLaughlin 2009-07-20T12:25:30Z 2009-07-20T12:25:30Z My mistake, yes CE 4.2 or CE 5.0. http://stackoverflow.com/questions/1057425/is-excessive-use-of-this-in-c-a-code-smell Comment by Shane MacLaughlin on Is excessive use of this in C++ a code smell Shane MacLaughlin 2009-07-16T07:26:28Z 2009-07-16T07:26:28Z @Newtopian this-&gt;x = x is an explicit pointer dereference which is more code than _x =x, even if the latter includes a similar dereference implicitly and ends up in the same result once compiled. For example, say I accidentally typed thos-&gt;x instead of this-&gt;x where thos was a NULL pointer of type MyClass. Unlikely sure, but still scope for more bugs. http://stackoverflow.com/questions/178045/when-should-you-start-optimising-code/178048#178048 Comment by Shane MacLaughlin on When should you start optimising code? Shane MacLaughlin 2009-06-29T15:44:32Z 2009-06-29T15:44:32Z @Phil - As i sit in front of Visual Studio 2008, which is bigger and slower than VS 2005, which was bigger and slower than VS 2003, which was way bigger and slower than VS6, I find myself increasingly frustrated that so many modern programmers consider performance requirements as secondary to functional requirements. Bigger, fatter, slower seems to be the order of the day for so many mainstream applications. I blame this on failing to optimise to meet performance requirements at design stage. Why wait until you've got the code, Knuth certainly didn't. http://stackoverflow.com/questions/178045/when-should-you-start-optimising-code/178079#178079 Comment by Shane MacLaughlin on When should you start optimising code? Shane MacLaughlin 2009-06-29T14:43:52Z 2009-06-29T14:43:52Z The implication with this post is that all optimisation relates to speed. You could equally well be optimising memory or storage usage, bandwidth, or even ay a pinch UI efficiency. Optimisation is simply meeting performance requirements as opposed to purely functional requirements. Given you suggest meeting performance requirements falls under 'Make it Right', why would you ever want to 'Make it Fast'. I assume if it is made right it would also work, so maybe your answer should just read 'Make it work' :) http://stackoverflow.com/questions/178045/when-should-you-start-optimising-code/178096#178096 Comment by Shane MacLaughlin on When should you start optimising code? Shane MacLaughlin 2009-06-29T14:35:37Z 2009-06-29T14:35:37Z @Beska, thanks for the feedback. The issue that I have with &quot;optimise only when you know there's a problem&quot; suggests to me you have already carried out a lot of coding that you may have to dump because it doesn't meet performance requirements. It's a bit like trying to get somewhere, driving down a road that seems to lead in the right direction, and only taking the map out when you're lost, then going cross country to try and get back on track. If performance is a requirement, it must be designed for much like a functional requirement.