-
My previous employer used a tool to attach databases that were located on a substituted path. I needed this conversion logic in another kind of environment and used the almighty google. So I hit an article on Avner Kashtan 's blog titled Query SUBST information . His code sample proved very usefull but...
-
I found this really nice little to add a string as a resource . You just select a string in the editor, right click to get the context menu and select to add it as a resource. You then get a dialog in which you can specify the key value and the resourcefile the string should be added too. In most code...
-
Today a collegue had me flabbergasted by using the & operator in a boolean comparison like the following example. return x & y; Both x and y were booleans and I said "Hey you just forgot an &! A single & is a bitwise operator.". And he responded that this would work but that the behaviour...