Originally Posted By: Roger
I do have a problem with this:

Code:
if (0 == installResult)


Just ick. Get a better compiler and write it naturally:

Code:
if (installResult == 0)


I know what you mean. It feels weird and looks wrong. But that's another one of our coding standards that I must follow. I happen to agree with that one. Ironically, it's there to prevent a careless mistake (using a single equals sign accidentally, turning the comparison into an assignment).

Thanks for the insights.
_________________________
Tony Fabris