RobH

367
reputation
130 views

Registered User

name RobH
member for 1 year
seen 17 hours ago
website
location CA
age
1d
revised How to make CFileDialog synchronize the displayed filename with the selected extension?
Updated to remove question on getting dialogue to fall back to old style
1d
asked How to make CFileDialog synchronize the displayed filename with the selected extension?
Dec
9
comment How do I convert a value from host byte order to little endian?
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.
Dec
4
comment Is there a setting in Visual Studio 2008 to show keyboard shortcuts in button tooltips?
Thanks. And thanks for the link, too.
Dec
3
asked Is there a setting in Visual Studio 2008 to show keyboard shortcuts in button tooltips?
Dec
2
comment Set directory permissions with inheritance during application installation?
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.
Dec
2
comment What’s the most egregious pop culture perversion of programming?
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.
Dec
2
comment What’s the most egregious pop culture perversion of programming?
Neat trick! :-)
Dec
2
asked Set directory permissions with inheritance during application installation?
Nov
10
awarded  Tumbleweed
Nov
4
comment Programmatically select files using C#
And what if none of the Windows Explorers has focus? (E.g., what if your program has focus instead?)
Nov
3
revised How to prevent program may have been uninstalled message in Vista?
More info added to the last edit
Nov
3
revised How to prevent program may have been uninstalled message in Vista?
Added an update with further info on the problem
Nov
3
asked How to prevent program may have been uninstalled message in Vista?
Oct
20
awarded  Necromancer
Oct
19
comment Application.UserAppDataRegistry and version number
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.
Sep
30
accepted How to uninstall IIS 7 under WOW64?
Sep
30
comment How to prevent “This program might not have installed correctly” messages on Vista
In my case, sometimes I get "This program might not have uninstalled correctly" 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.
Sep
24
awarded  Yearling
Sep
21
answered How to uninstall IIS 7 under WOW64?
Aug
19
comment defensive coding practices
I agree wholeheartedly with point 1, but for point 2, I prefer if (pointer != NULL) because it makes the code easier to read.
Aug
13
comment Eidetic memory: What magic numbers you still remember?
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 "what do you get when you multiply six by nine?" as the question to the answer (42) of life, the universe and everything.)
Aug
13
comment Eidetic memory: What magic numbers you still remember?
OCT31 = DEC25 :-)
Jul
29
comment Labor Day Vs. Thanksgiving
And then, there's Good Friday and Easter...
Jul
29
comment “C subset of C++” -> Where not ? examples ?
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.
Jul
28
comment How to uninstall IIS 7 under WOW64?
@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!
Jul
28
comment How to uninstall IIS 7 under WOW64?
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).
Jul
27
comment How to uninstall IIS 7 under WOW64?
As I mentioned in my post, I disable WOW64 redirection when I run the command. During installs, the (similar) command that I use to install IIS and ASP works. As do the commands for installing and uninstalling just ASP (in the case where IIS is pre-installed without ASP).
Jul
27
asked How to uninstall IIS 7 under WOW64?
Jul
20
comment What is the best color combination for readability, easy of use, and reduced eye strain?
+1 I find black on white to be quite an eyestrain, too. It's like looking at snow in bright sunshine. I tend to tone down the background to a medium shade of grey. In my IDEs, I use a black background with mostly mid shade colours for the text.
Jul
16
comment “Every language was created for a specific purpose”
Python also makes for a pretty good scripting language. Where I work, we redid our build process, and instead of rewriting the existing batch files, we wrote Python scripts to do the job.
Jul
13
awarded  Popular Question
Jul
2
comment What are the Worst Software Project Failures Ever?
Anyone remember Microsoft BOB?
Jun
25
comment Very basic English grammar parser
Another ambiguity in natural languages is words that can be one of two or more types. For instance, these nouns/verbs: fly, call, stack, wreck. And this noun/verb/adjective: light. I think you have your work cut out for you. :-)
Jun
19
revised What’s Your Biggest Visual Studio 2008 Annoyance?
Added a comment re how to show key accelerators on tooltips, and added a new gripe.