Archive for March 24th, 2010

Should application architects write code?

In my opinion, a technical architect must code! Most of the architects I know are hard-core coders. He must be knowing what developers are going to do. How one can build a house if he doesn’t know what is wood, cement, roof etc?

An interesting thread here - http://stackoverflow.com/questions/212270/should-application-architects-write-code
Another good link – Architecture roles and [...]

Leave a Comment

How to print a WPF form

PrintDialog pd = new PrintDialog();
pd.ShowDialog();
pd.PrintVisual(this, "wpf printing");

VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment