Greg Robinson's Blog
I report it, you decide
-
Dating Design Paterns..what the!
-
Google and Microsoft
In case you did not know, Google has a MS specific search site. This will limit the results to pages that are specific to Microsoft technology
-
Debug --> Exceptions --> CLR Exceptions
I stumbled on this IDE feature today.
-
Did you know: wincv
wincv is a windows class viewer that comes with the SDK. From a command window, simply type wincv. The output is 100% C#.
-
UseMnemonic
This one kicked me in the butt for a few minutes this morning. We have a custom address label which was making ampersands in names access keys.
-
Richmond .NET UG looking for speakers for 2004
We are lining up our guest speakers for 2004. If you plan to be in the Richmond, VA or surrounding areas (DC, Maryland, North Carolina) and would like to be a guest speaker, please let me know.
-
Configuring Code Groups with code
I have been configuring code groups with the Configuration Wizard. Today, I finally got around to coding this up to run with our MSI. In our code, we needed two code groups on each client workstation, one for Intranet and one of Internet access. The below code demonstrates how simple this can be. So, no I do not have to do this manually on all client workstations.
-
Framework Bootstrapper plug in now available
http://www.gotdotnet.com/community/workspaces/workspace.aspx?ID=2F8F0A23-F529-4158-8E0A-D187D16F41F1
-
Meetup.com
Anybody interested in starting a .NET one here?
-
AddNew vs. NewRow
These 2 methods have confused me for a while. I assumed under the covers calls to AddNew created a new DataRow, marked as Detached, just like a call to NewRow does.