User RobH - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T22:04:42Z http://stackoverflow.com/feeds/user/21255 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1902948/how-to-make-cfiledialog-synchronize-the-displayed-filename-with-the-selected-exte 0 How to make CFileDialog synchronize the displayed filename with the selected extension? RobH 2009-12-14T19:28:54Z 2009-12-14T19:45:08Z <p>We have a class that derives from CFileDialog that overrides the OnTypeChange() method to allow it to change the filename to keep it in synch with the selected extension whenever the user selects a new extension from the filter combobox. (Our filters are set to contain only one extension per filter entry.) Unfortunately, the way we are doing this seems to have been broken by the Vista style dialogue. (We were using SetControlText() to set the filename edit box to the filename with the newly selected extension, but the control ID seems to be different for the Vista style dialogue, and the one that I found using Spy++ works just as well as the old ID (i.e., it doesn't)..)</p> <p>Is there a better way to tell the CFileDialog object to update the filename field to use the new extension when the user selects a new filter? It has to work with the old XP style dialogue as well.</p> <p><strike>Failing that, how to I force the use of the XP style dialogue so that I get my functionality back without the dialogue crashing on me? (I'd rather not go that route if at all possible.)</strike> I've found a way to get it to fall back to the XP style. I still want to get the new style dialogue to do what I want though.</p> http://stackoverflow.com/questions/1836814/is-there-a-setting-in-visual-studio-2008-to-show-keyboard-shortcuts-in-button-too 3 Is there a setting in Visual Studio 2008 to show keyboard shortcuts in button tooltips? RobH 2009-12-03T00:09:33Z 2009-12-03T00:15:07Z <p>Visual Studio 6.0 used to show the keyboard shortcuts in the tooltips for the toolbar buttons. Is there a setting in Visual Studio 2008 that turns that on, or is that yet another case of Microsoft deciding to remove a feature that some find useful from one of their products?</p> http://stackoverflow.com/questions/1830033/set-directory-permissions-with-inheritance-during-application-installation 0 Set directory permissions with inheritance during application installation? RobH 2009-12-02T00:59:39Z 2009-12-02T15:24:18Z <p>I found <a href="http://www.microsoft.com/communities/newsgroups/en-us/default.aspx?dg=microsoft.public.platformsdk.msi&amp;tid=cefe69f5-082e-4bce-b866-f3ad55457e5f&amp;cat=en%5FUS%5F58b1458d-1bc1-4445-a50b-450ea40fa7ab&amp;lang=en&amp;cr=US&amp;sloc=en-us&amp;m=1&amp;p=1" rel="nofollow">a thread on the Microsoft Forums</a> where the answer tells how to set directory permissions using the LockPermission table. I tried it, but it doesn't seem to set the inheritance for any of the subdirectories. I need to be able to set the permissions for a particular folder that I create and have those permissions be inherited by all of the files and directories within and beneath it. Is there a way to do this without having to add a line in the LockPermission table for each and every directory (and file) that I want to affect?</p> http://stackoverflow.com/questions/1664683/how-to-prevent-program-may-have-been-uninstalled-message-in-vista 0 How to prevent program may have been uninstalled message in Vista? RobH 2009-11-03T01:21:05Z 2009-11-03T21:11:29Z <p>After uninstalling our application (a web server) in Vista or newer Windows, an error message box appears that says, 'An error occurred while trying to uninstall My App. It may have already been uninstalled. Would you like to remove My App from the Programs and Features list?'; and there are 'Yes' and 'No' buttons. This happens right after my installer closes down and before the system reboots. (After the reboot, the application is no longer in the ARP list, so the error message is unnecessary.)</p> <p>This may seem to be a duplicate of <a href="http://stackoverflow.com/questions/898220/how-to-prevent-this-program-might-not-have-installed-correctly-messages-on-vist">this</a>, but the message box is different, and it only happens when all of the following conditions are met:</p> <ul> <li>the Programs &amp; Features control panel is open</li> <li>the installer uninstalls IIS (not done if our installer did not install IIS in the first place, there are other Web sites using it or the user opts out of uninstalling it when given the option)</li> <li>the user agrees, in our installer, to rebooting right away.</li> </ul> <p>I've tried putting a value into the registry under HKLM\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Compatibility Assistant\Persisted with the path to the copy of the installer that the control panel runs (it's a legacy installer that's based on InstallShield tech that predates Windows installer). While the registry fix works for preventing the UAC message that used to come up when doing an add/remove components install (or, to use the new vernacular, a Modify install), it doesn't prevent this one.</p> <p>I need a way to prevent the error message, as the powers that be are treating it as a release blocker. There are workarounds that prevent the message (including not uninstalling IIS), but the higher ups aren't interested in the workarounds; they want the actual problem fixed. (The next version's installer will be using up to date tech, so thankfully, this is a one time headache.)</p> <p><strong>Edit:</strong> After doing some experimentation, I discovered that it's the uninstallation of IIS that's doing something to make the control panel bring up the error message when our installer exits and initiates a system reboot. (Our installer uninstalls IIS by way of a pkgmgr.exe command line with the /norestart option -- once it's ready for it, our installer takes care of the reboot in that case.)</p> http://stackoverflow.com/questions/203195/how-to-detect-vc-2008-redistributable 2 How to detect VC++ 2008 redistributable? RobH 2008-10-14T23:22:07Z 2009-10-13T20:05:02Z <p>Is there a Registry setting that I can look for to determine whether or not the Visual C++ redistributable is installed, whether standalone or as part of Visual Studio 2008? I know that I could launch the VC++ 2008 redistributable installer and let it handle the detection, but it would look cleaner if I can check for it and not bother launching the installer if the redistributable is already on the system.</p> <p>It's no biggie if there is no setting to search for, as this is just for the preliminary installers that we have for the new version of our software. We won't need it for the new Windows Installer-based installers that we are working on that will replace the old tech ones and will use the merge modules.</p> http://stackoverflow.com/questions/1189636/how-to-uninstall-iis-7-under-wow64 1 How to uninstall IIS 7 under WOW64? RobH 2009-07-27T17:54:43Z 2009-09-21T17:29:34Z <p>In a Web server installer that I'm maintaining, we keep track of whether or not the installer had installed IIS 7 and/or ASP (under Vista or later) and save an appropriate value to the Registry if so. During an uninstall, if that value is there and no other Web sites are using IIS on that machine, the user is asked whether or not IIS/ASP is to be removed. If so, we remove whatever we installed.</p> <p>The following is the command that we launch in order to remove IIS 7 and ASP (line breaks added for clarity):</p> <pre><code>C:\Windows\system32\pkgmgr.exe /norestart /uu:IIS-WebServerRole; IIS-WebServer;IIS-CommonHttpFeatures;IIS-StaticContent; IIS-DefaultDocument;IIS-DirectoryBrowsing;IIS-HttpErrors; IIS-ApplicationDevelopment;IIS-ASP;IIS-ISAPIExtensions; IIS-HealthAndDiagnostics;IIS-HttpLogging;IIS-LoggingLibraries; IIS-RequestMonitor;IIS-Security;IIS-RequestFiltering; IIS-HttpCompressionStatic;IIS-WebServerManagementTools; IIS-ManagementConsole;WAS-WindowsActivationService; WAS-ProcessModel;WAS-NetFxEnvironment;WAS-ConfigurationAPI </code></pre> <p>This works fine on 32-bit systems but does not work at all on 64-bit systems, even with WOW64 redirection disabled. (Ignore the /norestart parameter, as the installer does a reboot at the end of the install if necessary.) I've even tried entering this command into an admin-level command prompt (without the /norestart parameter), but to no avail.</p> <p>The command that we use during the install to install IIS 7/ASP is similarly long, and it always works, so I can't imagine that the problem is that the uninstall command line is too long. (To test that theory, I even tried breaking the command into two commands, one to remove the ASP components only followed by one to remove the rest. Same problem, nothing was removed.)</p> <p>Is there some other command that would do what we want on 64-bit systems? If so, do we have to disable WOW64 redirection, and will it also work on 32-bit systems? (It will only be called on Vista and later systems. On earlier systems, we rely on the user making sure that IIS and ASP are pre-installed.)</p> http://stackoverflow.com/questions/1189636/how-to-uninstall-iis-7-under-wow64/1455742#1455742 0 Answer by RobH for How to uninstall IIS 7 under WOW64? RobH 2009-09-21T17:29:34Z 2009-09-21T17:29:34Z <p>As it turns out, the problem that I was having doesn't have anything to do with pkgmgr.exe, unless you want to count lack of patience when doing a manual test to see why it wasn't working. In the installer, the problem was the install script doing something that prevented the command from getting launched. In the case of the manual tests, I just wasn't waiting long enough for the command to finish running. (It takes about a couple of minutes, in the case of the above command line.)</p> http://stackoverflow.com/questions/293142/whats-your-biggest-visual-studio-2008-annoyance/379736#379736 0 Answer by RobH for What's Your Biggest Visual Studio 2008 Annoyance? RobH 2008-12-18T23:45:48Z 2009-06-19T18:21:10Z <p>Two of my biggest gripes:</p> <ul> <li>6.0 had a setting that let you see the shortcut keys on the tooltips (very useful in trying to learn a new keyboard shortcut for often used features); 2005/2008 doesn't. (Thanks to SLax for the comment on how to turn on that feature. This isn't a problem now.)</li> <li>6.0 let you put toolbars anywhere, even in between the workspace window and the code window (next to the separator bar); 2005/2008 doesn't.</li> </ul> <p>On thing that I really like:</p> <ul> <li>The class view window -- much more useful in 2005/2008 than it was in 6.0.</li> </ul> <p><strong>Edit</strong> Thanks to SLaks's comment, the first gripe is no longer an issue. However, this is:</p> <ul> <li>The Class Wizard in 6.0 let you easily add handlers for pretty much any message you wanted on the dialogue as well as its controls. I find that the Class Wizard in 2005/2008 is much more restrictive and, therefor, much less flexible. It doesn't even let you add event handlers for the dialogue itself for God's sake! (Being lazy, I found it very useful to have the wizard put the stubs in for OnInitDialog(), etc. for me.)</li> </ul> http://stackoverflow.com/questions/957038/break-in-a-case-with-return-and-for-default/958668#958668 0 Answer by RobH for break in a case with return.. and for default RobH 2009-06-06T00:29:21Z 2009-06-06T00:29:21Z <p>Regarding the comment that others have made that they leave the break in the default case in case someone comes by later and adds a case after it: Where I work, the coding standard says to <em>always</em> put the default as the last case; so in our situation, a break on that case is just redundant. (This is one case where I agree wholeheartedly with the company's coding standard, because with the default case always being the last one, you always know where to find it, even in a long switch-statement.)</p> <p>As for breaks after returns, I tend to omit the break unless there are any execution paths that do not return, as I find it redundant. (My exception to this is, on the rare occasions when there are several execution paths in a case and I can't tell with a quick scan of the code whether or not they all return, then I'll leave the break in just to be safe.)</p> http://stackoverflow.com/questions/947029/follow-original-authors-coding-style-even-if-it-is-horrible-lazy-makes-your/947375#947375 0 Answer by RobH for Follow original author's coding style? Even if it is horrible / lazy / makes your eyes bleed? RobH 2009-06-03T21:31:47Z 2009-06-03T21:31:47Z <p>If you're coding to a company-defined standard (or even just a team-defined standard), and the code that you're working on does not match the standard (or is so old that it doesn't match the current standard), then definitely clean up the code if you're going to be making major changes anyway. (As others have mentioned, do that to the baseline code, and check it in. Then check it out again and make the changes that you have to make to fix bugs, add features, etc.)</p> http://stackoverflow.com/questions/942110/translating-32-bit-paths-to-their-wow64-equivalents 0 Translating 32-bit paths to their WOW64 equivalents RobH 2009-06-02T21:58:48Z 2009-06-03T08:32:01Z <p>Is there any function that I can call to in a 32-bit app that would convert the paths that it thinks it's using to and from the paths that it's actually using? (For instance, call it to convert the path for a folder in Program Files to a path in Program Files (x86) or vice versa when running on a 64-bit system.) I need to do this so that, when the user is presented with a directory in the GUI (as when browsing for files or directories), he sees the real directory, rather than what the app itself thinks it sees.</p> <p>We need to support both 32- and 64-bit Windows, so this should work in both environments.</p> <p><strong>Edit</strong> The need to deal with WOW64 lies in the fact that my app is the bootstrap application of an installer. By default, the product is installed under Program Files on a 32-bit system, while on a 64-bit system, it's installed under Program Files (x86). The dialogue that lets the user choose where to install the product (including on a different hard drive altogether if that's what he wants or needs); and it must work properly in both environments. Currently, it's always displaying (and browsing in) Program Files, even on 64-bit systems.</p> http://stackoverflow.com/questions/780152/is-there-a-standard-directory-browser-dialogue-that-i-can-call-in-mfc-that-doesn 0 Is there a standard directory browser dialogue that I can call in MFC that doesn't involve the user having to create directories to specify ones that don't yet exist? RobH 2009-04-23T03:02:38Z 2009-06-02T20:19:56Z <p>I am working on the bootstrap application of an installer, and I have a dialogue that the user can open to select a different target directory from the given default. Currently, I'm using the CFolderDialog for that, but for the user to select a folder that doesn't yet exist, he has to create the folder first. Once the user has specified the directory, I want to be able to delete it so that, when I launch the installer, it can create the folder itself such that it gets flagged for uninstall. Also, if the user cancels out of my bootstrap application at any time, I don't want any unwanted folders lying around from when the user mucked around in the folder browser. The problem that I'm having is that, if I try to remove the folder that the user created while browsing for a new target folder, I get a sharing violation error. (I compare the directory's creation time with what the system time was at the time the dialogue was launched to make sure that it's OK for me to delete the directory.)</p> <p>What I need is either a way to get around that sharing violation or another standard dialogue that doesn't involve the user having to create a new directory in order to specify it just because it doesn't yet exist.</p> <p><strong>Edit:</strong> When I originally posted this, I forgot that the folder dialogue that I'm using is actually the <a href="http://www.codeproject.com/KB/dialog/XFolderDialog.aspx" rel="nofollow">XFolder Dialog on the Code Project site</a>. While it does let the user browse for a directory, it's not as intuitive as folder browser dialogues that I've seen in installers in the past. What I'd really want is something where the user can browse to the folder in which their new folder is to go and then simply append the new folder to the path in the dialogue's edit box without having to create the new folder.</p> <p><strong>Update</strong> As the XFolder dialogue is a customization of the standard Open File dialogue which uses a template, it does not work on Vista or newer OSs. Because of this, I must abandon use of this for something else. I'm still looking for a solution here. If someone can show me how to set the initial directory (as opposed to the root directory) when using SHBrowseForFolder(), I'd be willing to use that as my solution.</p> http://stackoverflow.com/questions/836945/i-dont-like-this-is-this-cheating-the-language/837022#837022 0 Answer by RobH for I don't like this... Is this cheating the language? RobH 2009-05-07T21:00:15Z 2009-05-07T21:00:15Z <p>I don't think it's any different than something like this:</p> <pre><code>INT* pNumber = GetAddressOfNumber(); if ((pNUmber != NULL) &amp;&amp; (*pNumber &gt; 0)) { // valid number, do whatever } else { // On a null pointer, it drops to here, because (pNumber != NULL) fails // However, (*pNumber &gt; 0), if used by itself, would throw and exception when dereferencing NULL } </code></pre> <p>It's just taking advantage of a feature in the language. This kind of idiom has been in common use, I think, since C started executing Boolean expressions in this manner (or whatever language did it first).)</p> http://stackoverflow.com/questions/831265/i-need-a-message-pump-that-doesnt-mess-up-my-open-window 0 I need a message pump that doesn't mess up my open window RobH 2009-05-06T19:20:50Z 2009-05-07T18:40:57Z <p>My application (the bootstrap application for an installer that I'm working on needs to launch some other applications (my installer and third party installers for my installer's prerequisites) and wait for them to complete. In order to allow the GUI to do screen updates while waiting for an app to complete, I put a message pump in the wait loop using the 'MFC-compatible' example in the Visual Studio documentation on idle loop processing as a guideline. My code (which is in a member function of a CWinApp-derived class) is as follows:</p> <pre><code>if (::CreateProcess(lpAppName, szCmdLineBuffer, NULL, NULL, TRUE, 0, NULL, NULL, &amp;StartupInfo, &amp;ProcessInfo)) { ::GetExitCodeProcess(ProcessInfo.hProcess, &amp;dwExitCode); if (bWait) while (dwExitCode == STILL_ACTIVE) { // In order to allow updates of the GUI to happen while we're waiting for // the application to finish, we must run a mini message pump here to // allow messages to go through and get processed. This message pump // performs much like MFC's main message pump found in CWinThread::Run(). MSG msg; while (::PeekMessage(&amp;msg, NULL, 0, 0, PM_NOREMOVE)) { if (!PumpMessage()) { // a termination message (e.g. WM_DESTROY) // was processed, so we need to stop waiting dwExitCode = ERROR_CANT_WAIT; ::PostQuitMessage(0); break; } } // let MFC do its idle processing LONG nIdle = 0; while (OnIdle(nIdle++)) ; if (dwExitCode == STILL_ACTIVE) // was a termination message processed? { // no; wait for .1 second to see if the application is finished ::WaitForSingleObject(ProcessInfo.hProcess, 100); ::GetExitCodeProcess(ProcessInfo.hProcess, &amp;dwExitCode); } } ::CloseHandle(ProcessInfo.hProcess); ::CloseHandle(ProcessInfo.hThread); } else dwExitCode = ::GetLastError(); </code></pre> <p>The problem that I'm having is that, at some point, this message pump seems to free up window and menu handles on the window that I have open at the time this code is run. I did a walk through in the debugger, and at no time did it ever get into the body of the if (!PumpMessage()) statement, so I don't know what's going on here to cause the window and menu handles to go south. If I don't have the message pump, everything works fine, except that the GUI can't update itself while the wait loop is running.</p> <p>Does anyone have any ideas as to how to make this work? Alternatively, I'd like to launch a worker thread to launch the second app if bWait is TRUE, but I've never done anything with threads before, so I'll need some advice on how to do it without introducing synchronization issues, etc. (Code examples would be greatly appreciated in either case.)</p> http://stackoverflow.com/questions/831265/i-need-a-message-pump-that-doesnt-mess-up-my-open-window/835781#835781 0 Answer by RobH for I need a message pump that doesn't mess up my open window RobH 2009-05-07T16:42:23Z 2009-05-07T18:40:57Z <p>I've also posted this question on the Microsoft forums, and thanks to the help of one Doug Harris at Microsoft, I found out my problem with my HWND and HMENU values was, indeed due to stale CWwnd* and CMenu* pointers (obtained using GetMenu() and GetDialogItem() calls. Getting the pointers again after launching the second app solved that problem. Also, he pointed me to a web site* that showed a better way of doing my loop using MsgWaitForMultipleObjects() to control it that doesn't involve the busy work of waiting a set amount of time and polling the process for an exit code.</p> <p>My loop now looks like this:</p> <pre><code>if (bWait) { // In order to allow updates of the GUI to happen while we're // waiting for the application to finish, we must run a message // pump here to allow messages to go through and get processed. LONG nIdleCount = 0; for (;;) { MSG msg; if (::PeekMessage(&amp;msg, NULL, 0, 0, PM_NOREMOVE)) PumpMessage(); else //if (!OnIdle(nIdleCount++)) { nIdleCount = 0; if (!PeekMessage(&amp;msg, NULL, 0, 0, PM_NOREMOVE)) { DWORD nRes = ::MsgWaitForMultipleObjects(1, &amp;ProcessInfo.hProcess, FALSE, INFINITE, QS_ALLEVENTS); if (nRes == WAIT_OBJECT_0) break; } } } } ::GetExitCodeProcess(ProcessInfo.hProcess, &amp;dwExitCode); </code></pre> <p>*That Web site, if you're curious, is: <a href="http://members.cox.net/doug%5Fweb/threads.htm" rel="nofollow">http://members.cox.net/doug_web/threads.htm</a></p> http://stackoverflow.com/questions/682989/how-do-i-get-the-arp-to-run-my-installers-bootstrap-app-for-a-modify-install 0 How do I get the ARP to run my installer's bootstrap app for a modify install? RobH 2009-03-25T19:02:05Z 2009-04-30T17:47:51Z <p>I'm working on an installer project that consists of an MSI file and a bootstrap application that manages the prerequisites; and since the need for some of the prerequisites depends on what features the user chooses to install, the bootstrap app also provides the UI. I want to be able to force the Add/Remove Programs (or Programs and Features) control panel (ARP) to run the bootstrap application instead of the MSI when the user wants to run a modify install. I've tried changing the ModifyPath value under the installer's Uninstall Registry key to the path of the bootstrap application, but to no avail. Clicking the Change button in the ARP still gets me the MSI.</p> <p>Is there an easy way to do what I want? Failing that, is there a way for the MSI to detect that it was run from the ARP using the Change button so that I could get it to show an error message that tells the user to run the bootstrap app instead? (I.e., does the ARP use the same command line arguments that a user would use to run the MSI and specify a modify install without having to see the maintenance page of the UI? If not, what should I look for?)</p> <p><strong>Edit</strong> My installer is installing not just one application, but a suite of applications, each of which the user is allowed to choose not to install. (We're installing these applications as a suite, because most of them depend on one of them in particular being installed. Therefore, it'll be easier on the user to have just one installer handle them all, rather than the separate installers that this new installer is going to replace.)</p> <p>The applications in the suite don't all require the same set of prerequisites, therefore, it is not easy for the MSI to check for the prerequisites until it knows which applications in the suite the user wants to install. Furthermore, we want to make it easy for the user by having the installers for all of the prerequisites for the applications that the user does want installed launched automatically. (This is the main reason why the installer's UI was implemented in the bootstrap app.)</p> <p>Is it possible for the MSI to launch the bootstrap app and then silently exit immediately while the bootstrap app carries on, eventually relaunching the MSI? (When the bootstrap app launches the MSI, one of the command line args it passes into the MSI is a property that tells it that the bootstrap app launched it. This is currently used, among other things, to allow the MSI to show an error message telling the user to run the bootstrap app unless an uninstall or repair install was specified on the command line.)</p> http://stackoverflow.com/questions/682989/how-do-i-get-the-arp-to-run-my-installers-bootstrap-app-for-a-modify-install/808205#808205 0 Answer by RobH for How do I get the ARP to run my installer's bootstrap app for a modify install? RobH 2009-04-30T17:47:51Z 2009-04-30T17:47:51Z <p>I was able to solve my dilemma by getting the MSI to launch the bootstrap app for me. I simply wrote a custom action that launches the bootstrap app and does not wait for it to finish. Initially, I tried to put the custom action into the UI sequence, but I couldn't end the install without generating errors that way.</p> <p>Since my goal was to run the bootstrap only for Modify installs, I put a couple of new control events on the Next button of the Maintenance dialogue (where the user chooses between Modify, Repair and Remove). If the user has chosen Maintenance (MaintenanceMode ~= "Modify"), the custom action is launched, and the dialogue is dismissed using the EndDialog action with Exit as the argument. (I modified the condition on the existing control event that goes to the next dialogue to be the negative of the one that causes the bootstrap to be launched, i.e., NOT (MaintenanceMode ~= "Modify").) The bootstrap app is programmed to skip past the Maintenance dialogue in its GUI and start off at the next dialogue in the sequence, although the user is permitted to go back to the Maintenance dialogue if he so chooses. (If he does, the bootstrap app simply goes back to its version of the Maintenance dialogue, which looks very similar to the one in the MSI.)</p> <p>I know, it's a bit of a kludge, but it does what I need it to do. :-)</p> http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/735519#735519 6 Answer by RobH for What non-programming books should programmers read? RobH 2009-04-09T19:08:01Z 2009-04-09T19:08:01Z <p>Rick Cook - <a href="http://rads.stackoverflow.com/amzn/click/0671878468" rel="nofollow">The Wiz Biz</a></p> <p><img src="http://ecx.images-amazon.com/images/I/51tNze8htiL.%5FSL500%5FAA240%5F.jpg" alt="alt text" title="The Wiz Biz" /></p> <p>This is a compilation of the first two novels in a series, called 'Wizard's Bane' and 'Wizardry Compiled', respectively. </p> <blockquote> <p>It all began when the wizards of the White League were under attack by their opponents of the Black League and one of their most powerful members cast a spell to bring forth a mighty wizard to aid their cause. What the spell delivers master hacker Walter "Wiz" Zumwalt. With the wizard who cast the spell dead, nobody can figure out what the shanghaied computer nerd is good for--because spells are not like computer programs.</p> </blockquote> <p>Lots of in jokes for the Unix/Linux crowd to enjoy. Pretty much anybody in the software industry will enjoy it, I think.</p> http://stackoverflow.com/questions/734936/what-is-the-best-header-structure-to-use-in-a-library/735224#735224 1 Answer by RobH for What is the best header structure to use in a library? RobH 2009-04-09T17:43:39Z 2009-04-09T17:43:39Z <p>However you decide on the header file(s) that you make available (one, several or some combination thereof) for the library's public API, it's always a good idea to have at least one separate header for the private API. (No need to expose the prototypes of the non-exported functions and classes or the definitions that are only intended to be used internally.)</p> http://stackoverflow.com/questions/452864/what-are-some-of-your-oldest-programming-books-that-you-still-use/716113#716113 0 Answer by RobH for What are some of your oldest programming books that you still use? RobH 2009-04-03T23:48:41Z 2009-04-03T23:48:41Z <p><a href="http://www.amazon.com/Principles-Interactive-Computer-Graphics-2nd/dp/B001E0ANFW/ref=sr%5F1%5F1?ie=UTF8&amp;s=books&amp;qid=1238802063&amp;sr=8-1" rel="nofollow">Principles of Interactive Computer Graphics</a> by William M. Newman and Robert F. Sproull, 1978, second edition, 1979.</p> <p>While much of what is covered is probably already implemented in third party libraries these days, there is a lot of good information in there for those who prefer to (or must, for whatever reason) roll their own graphics routines.</p> <p>It also gives you pretty good insight on how computer graphics works.</p> http://stackoverflow.com/questions/707497/set-app-to-require-elevation 0 Set app to require elevation? RobH 2009-04-01T21:54:37Z 2009-04-02T19:34:59Z <p>I'm working on the bootstrap application of a new installer for some of our products. So far, I've been relying on two things that I read about somewhere:</p> <ol> <li>Applications whose name contains "setup" or "install" will run elevated by default.</li> <li>Applications that run elevated will launch other applications in elevated mode.</li> </ol> <p>Recent testing has found that one or both of these statements is false, because one of the applications that I'm launching is a third party installer that requires elevation, and it's failing because of the elevation requirement.</p> <p>How do I set my application to require elevation? I know it has something to do with the manifest file. As I'm working in Visual Studio 2008, and the manifest file is generated, I'd like to know what to enter into the project's properties and where to make it require elevation.</p> http://stackoverflow.com/questions/707497/set-app-to-require-elevation/707876#707876 2 Answer by RobH for Set app to require elevation? RobH 2009-04-02T00:32:46Z 2009-04-02T00:32:46Z <p>When I couldn't find application manifest as a new item that could be added to my project, I went into the online help and found this:</p> <blockquote> <p>configure the VS2008 in Configuration Properties - Linker - Manifest File - UAC Execution Level (requireAdministrator)</p> </blockquote> <p>That did the trick.</p> http://stackoverflow.com/questions/688337/how-do-i-force-my-app-to-come-to-the-front-and-take-focus 2 How do I force my app to come to the front and take focus? RobH 2009-03-27T02:44:29Z 2009-03-27T07:44:09Z <p>I'm working on an application that happens to be the bootstrap for an installer that I'm also working on. The application makes a few MSI calls to get information that I need for putting together the wizard that is my application's main window, which causes a progress window to open while the info is being gathered and then go away once that's done. Then the wizard is set up and launched. My problem is that the wizard (derived from CPropertySheet) does not want to come to the front and be the active application without me adding in some calls to do so.</p> <p>I've solved the problem of bringing it to the front with the following code in my OnInitDialog() method:</p> <pre><code>SetWindowPos(&amp;wndTopMost, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE); // force window to top SetWindowPos(&amp;wndNoTopMost, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE); // lose the topmost status that the previous line gave us </code></pre> <p>My problem is that I still haven't figured out how to make the window self-activate (i.e., make itself be the one that has the focus). SetFocus() won't work in this context. I need something that will force the window to the top of the Z-order and activate it, preferably in as few calls as possible.</p> <p>My guess is that the progress window opened at the beginning by the MSI calls is causing the main window to screw up, but I have no way to prevent that window from appearing. Also, it wouldn't make sense to hide it, because it lets the user know what's going on before the main window arrives.</p> http://stackoverflow.com/questions/560396/how-to-replace-nested-installations-on-windows-installer/682850#682850 1 Answer by RobH for How to replace nested installations on Windows Installer? RobH 2009-03-25T18:22:39Z 2009-03-25T18:22:39Z <p>Unfortunately for you (and for everyone else in this situation), you're going to have to create a bootstrap application that checks for the prerequisites and launches their installers where necessary and then launches your installer.</p> <p>It's doubly unfortunate if your prerequisite needs are dependent on only certain features, rather than the whole package, as it means that you'll have to implement the user interface in the bootstrap application as well. (That was the case with us, but fortunately, we were starting from scratch anyway, so we didn't have to recreate a user interface that we'd already implemented in the MSI. We actually tried a hybrid approach where the first few screens of the UI were in the bootstrap app and the rest were in the MSI, but there were too many frustrations involved, so we gave up on that idea in short order.) With the UI in the bootstrap app, the user would select the features that they want installed, and then the bootstrap app would, if necessary, present a page that says the prerequisites are being installed and install them at that point before going on to the next page. When launching your installer, the bootstrap app feeds it all of the info that was gathered from the UI via command line arguments. You may even wish to put launch conditions into your MSI to prevent it from being run directly except in uninstall or repair situations.</p> http://stackoverflow.com/questions/679949/how-do-you-continue-to-develope-large-long-term-software-systems-with-legacy-an/680034#680034 0 Answer by RobH for How do you continue to develope large (long term) software systems with legacy and new code? RobH 2009-03-25T02:36:32Z 2009-03-25T02:36:32Z <p>I'm currently one of several developers working on a large legacy system that started out as a combination of C and C++ with Win32 and, later, MFC with a smattering of assembly amongst the back end C code. We've recently jumped from VC++ 6 to Visual Studio 2005 (and have since upgraded to 2008) for the latest version of the project that we're working on. Since the IDE/compiler upgrade, we've been cleaning up some of the look and feel and have been adding managed C++ with WinForms and now C# with WCF.</p> <p>While the underpinnings of our system, including the back end, will almost definitely remain in C (at least for the foreseeable future), anything new in the front end will most likely be done in C#/WCF. When we have the time and/or need, we intend to start replacing older parts of the front end with equivalent C#/WCF code.</p> http://stackoverflow.com/questions/655257/twos-complement-binary-form/655277#655277 1 Answer by RobH for Two's complement binary form RobH 2009-03-17T17:35:37Z 2009-03-17T17:35:37Z <p>If the number is declared as a signed data type (and not type cast to an unsigned type), then the compiler will know that, when the sign bit is 1, it's a negative number. As for why 2's complement is used instead of 1's complement, you don't want to be able to have a value of -0, which 1's complement would allow you to do, so they invented 2's complement to fix that.</p> http://stackoverflow.com/questions/503130/what-do-you-want-inscribed-on-your-development-inspired-headstone/608918#608918 0 Answer by RobH for What do you want inscribed on your development inspired headstone RobH 2009-03-04T01:23:42Z 2009-03-04T01:23:42Z <p>Not necessarily development inspired (unless you write code for video games), but definitely geek inspired:<br><BR> Health: 0<br> Lives: 0<br> GAME OVER</p> http://stackoverflow.com/questions/359732/why-is-it-considered-a-bad-practice-to-omit-curly-braces/361238#361238 0 Answer by RobH for Why is it considered a bad practice to omit curly braces? RobH 2008-12-11T22:28:56Z 2009-02-26T01:50:53Z <p>Paul said:</p> <blockquote> <p>And indentation is independent of brace usage.</p> </blockquote> <p>That's not true with some coding styles. Where I work, the company's coding standard allows us to do without braces if they're not strictly necessary; however, the coding standard makes us indent the braces as well as what's in them, so we end up with something like this:</p> <pre><code>if (something) { for (i = 0; i &lt; count; i++) { foo(); } } </code></pre> <p>Without the braces, this becomes:</p> <pre><code>if (something for (i = 0; i &lt; count; i++) foo(); </code></pre> <p>With this coding style, when there is deep nesting, together with long variable and function names and you always use braces, you either get lots of code going off the right side of the screen or a lot of line wrapping, both of which, IMO, make the code cumbersome to read or debug. For this reason, I always tend to leave the braces out whenever I can get away with doing so.</p> <p>As for putting a single statement on the same line as the if, some companies' coding standards (ours included) forbid that, so it's not always an option.</p> <p>If it were my choice, I would change the company coding standard to have the braces level with the if, for, etc. and have the first line (or comment) in the body on the same line as the opening brace, thus:</p> <pre><code>if (something) { for (i = 0; i &lt; count; i++) { foo(); } } </code></pre> <p>I'd be much more willing (and much more likely) to always use braces then (and would even go so far as to support an 'always use braces' rule), because each pair of braces would add only one extra line and no indentation, making it almost as compact as having no braces at all.</p> http://stackoverflow.com/questions/58640/great-programming-quotes/452342#452342 4 Answer by RobH for Great programming quotes RobH 2009-01-16T22:55:36Z 2009-02-17T21:47:44Z <p>I don't know who said it originally, but</p> <blockquote> <p>There's no such thing as temporary code.</p> </blockquote> http://stackoverflow.com/questions/350885/create-sort-and-print-a-list-of-100-random-ints-in-the-fewest-chars-of-code/351698#351698 2 Answer by RobH for Create, sort, and print a list of 100 random ints in the fewest chars of code RobH 2008-12-09T03:34:55Z 2009-01-04T07:55:00Z <p><a href="http://en.wikipedia.org/wiki/APL_programming_language" rel="nofollow">APL</a> (interactive):</p> <p>I wish I could show it in the APL character set, but I can't, so I'll use some ASCII notation to represent the characters that can't be done in ASCII. Let the symbol <strong>UP</strong> represent APL's up arrow character. If you want the numbers 0-99 (or 1-100, depending on whether you have the index origin in your workspace set to 0 or 1) to be unique, it takes 8 characters, like so:</p> <pre><code>UP100?100 </code></pre> <p>If you don't care about uniqueness, do this (9 characters):</p> <pre><code>UP?100r100 </code></pre> <p>where <strong>r</strong> stands in for APL's rho character.</p> <p>Want larger numbers? Just substitute your upper limit, N, for the second 100 on each line, and your random numbers will be in the range 0 - N-1 (or 1-N if your index origin is set to 1).</p> <p>If you want to guarantee that your numbers range from 0-99 (or 0 - N-1 if you're going for a larger upper limit) regardless of the index origin setting, just enclose either of the above lines in parentheses and add</p> <pre><code>-[]IO </code></pre> <p>to the end (where <strong>[ ]</strong> is standing in for APL's quad character). That's an additional 6 characters.</p> http://stackoverflow.com/questions/1873352/how-do-i-convert-a-value-from-host-byte-order-to-little-endian/1873444#1873444 Comment by RobH on How do I convert a value from host byte order to little endian? RobH 2009-12-09T19:27:28Z 2009-12-09T19:27:28Z In the first implementation of reverseShort(), c1 should be cast to short in the second return statement prior to shifting the bits. Otherwise, they'll just end up going to the big bit bucket in the sky. http://stackoverflow.com/questions/1836814/is-there-a-setting-in-visual-studio-2008-to-show-keyboard-shortcuts-in-button-too/1836832#1836832 Comment by RobH on Is there a setting in Visual Studio 2008 to show keyboard shortcuts in button tooltips? RobH 2009-12-04T19:24:50Z 2009-12-04T19:24:50Z Thanks. And thanks for the link, too. http://stackoverflow.com/questions/1830033/set-directory-permissions-with-inheritance-during-application-installation/1833602#1833602 Comment by RobH on Set directory permissions with inheritance during application installation? RobH 2009-12-02T18:46:49Z 2009-12-02T18:46:49Z I was hoping that wouldn't be the case. We have to support as far back as XP, so anything that's only available in Windows 7 is not an option. http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/851454#851454 Comment by RobH on What's the most egregious pop culture perversion of programming? RobH 2009-12-02T03:13:34Z 2009-12-02T03:13:34Z Same thing seems to happen in just about any space sci-fi show/movie: Whenever the ship gets hit, all of the consoles on the bridge burst into sparks and flame. http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/1206263#1206263 Comment by RobH on What's the most egregious pop culture perversion of programming? RobH 2009-12-02T03:09:31Z 2009-12-02T03:09:31Z Neat trick! :-) http://stackoverflow.com/questions/1645397/programmatically-select-files-using-c Comment by RobH on Programmatically select files using C# RobH 2009-11-04T19:05:27Z 2009-11-04T19:05:27Z And what if none of the Windows Explorers has focus? (E.g., what if your program has focus instead?) http://stackoverflow.com/questions/1515943/application-userappdataregistry-and-version-number/1516022#1516022 Comment by RobH on Application.UserAppDataRegistry and version number RobH 2009-10-19T19:27:10Z 2009-10-19T19:27:10Z I think that's whet darbystrom was talking about when he said that it would cause problems under Vista. Specifically, if your user doesn't have admin rights, when s/he runs your program, it will not be able to save their configuration when the config file is located under Program Files. Better to put it under %ALLUSERSPROFILE% if your configureations are on a per machine basis or %LOCALAPPDATA% if they're on a per user basis. Ditto for any other files that your app modifies at run time. http://stackoverflow.com/questions/898220/how-to-prevent-this-program-might-not-have-installed-correctly-messages-on-vist/898300#898300 Comment by RobH on How to prevent "This program might not have installed correctly" messages on Vista RobH 2009-09-30T01:19:04Z 2009-09-30T01:19:04Z In my case, sometimes I get &quot;This program might not have uninstalled correctly&quot; when my installer is run to do an add/remove features install. Since the setup.exe, in my case, is a stock EXE that was supplied by InstallShield, the manifest option is out for me. As for the registry option, I'm not sure it applies either. There's nothing in that article that applies, specifically, to this particular message. And my installer can't run in a compatibility mode, because it needs to know whether or not it's running in Vista in order to do the right things in Vista. http://stackoverflow.com/questions/267763/defensive-coding-practices/267811#267811 Comment by RobH on defensive coding practices RobH 2009-08-19T20:49:27Z 2009-08-19T20:49:27Z I agree wholeheartedly with point 1, but for point 2, I prefer if (pointer != NULL) because it makes the code easier to read. http://stackoverflow.com/questions/461737/eidetic-memory-what-magic-numbers-you-still-remember/461864#461864 Comment by RobH on Eidetic memory: What magic numbers you still remember? RobH 2009-08-13T20:49:17Z 2009-08-13T20:49:17Z 6 x 9 = 42 (Works in base 13. Douglas Adams, right up to is dying breath, denied that that's why he came up with &quot;what do you get when you multiply six by nine?&quot; as the question to the answer (42) of life, the universe and everything.) http://stackoverflow.com/questions/461737/eidetic-memory-what-magic-numbers-you-still-remember/461914#461914 Comment by RobH on Eidetic memory: What magic numbers you still remember? RobH 2009-08-13T20:40:52Z 2009-08-13T20:40:52Z OCT31 = DEC25 :-) http://stackoverflow.com/questions/1201643/labor-day-vs-thanksgiving Comment by RobH on Labor Day Vs. Thanksgiving RobH 2009-07-29T22:11:57Z 2009-07-29T22:11:57Z And then, there's Good Friday and Easter... http://stackoverflow.com/questions/1201593/c-subset-of-c-where-not-examples/1201925#1201925 Comment by RobH on "C subset of C++" -> Where not ? examples ? RobH 2009-07-29T21:53:23Z 2009-07-29T21:53:23Z Let's not forget the fact that, in C, you must declare variables at the beginning of a scope (i.e., immediately after an opening brace), whereas, C++ allows variable declarations anywhere. http://stackoverflow.com/questions/1189636/how-to-uninstall-iis-7-under-wow64 Comment by RobH on How to uninstall IIS 7 under WOW64? RobH 2009-07-28T21:10:49Z 2009-07-28T21:10:49Z @Richard: The exit code that I get back from the command on a 64-bit system is the same as on a 32-bit system: zero, which would seem to indicate that everything went well. Only IIS is not removed, even after a reboot! http://stackoverflow.com/questions/1189636/how-to-uninstall-iis-7-under-wow64 Comment by RobH on How to uninstall IIS 7 under WOW64? RobH 2009-07-28T20:33:00Z 2009-07-28T20:33:00Z It is a programming issue in that I'm making an installer run a command. I need to know why this command won't work on a 64-bit system when similar commands (i.e., one that installs IIS 7 and ASP, one that installs just ASP (used when IIS 7 is pre-installed) and one that uninstalls just ASP) do and whether or not there is a replacement command that I can use (preferably one that also works on a 32-bit system).