Expression Web Designer (EWD) is supposed to be a designer’s tool for designing asp.net 2.0 applications. It has other roles but working on asp.net 2.0 applications is what […]
Visual Studio roadmap
Check out the Visual Studio roadmap. There is no final date for Orcas though but judging from Beta 1 (Q2) and Beta 2 (Mid Year) it might happen […]
Are password textboxes really secure?
You know, the control on the form that displays some character over and over instead of displaying the text behind. Let's create a simple demo. i will have […]
WPF/E at work
I know I am bit late, but nevertheless, if you want to see a nice and cool example of WPF/E driven web pages then you must navigate to www.windowsvista.si. […]
Pitfalls of antivirus programs
One has to be careful when using an antivirus application that protects computer in real time (scans files when one opens them). Here is what happened. I am […]
Xceed releases free .net 3.0 WPF grid
Yes, that’s right – they developed a .net 3.0 WPF grid, which is very nice looking, and they are giving it away for free – they only require […]
Use StringBuilder on string Refactor! Pro feature
One of the wellcome refactoring features of [DX] Refactor! Pro is “replace string with StringBuilder”. Why would you want to do that? String building into a string variable […]
telerik switches from 4 to 3 releases per year
[tele] recently announced that it will reduce the pace of releases from 4 to 3 per year. Don’t be misleaded as this doesn’t mean they will provide less […]
QueryADataset
“How do I join two tables from dataset and display the result?” This is a question that often appears in ado.net newsgroup. Actually very often. And there isn’t […]
A syntax feature in enum I didn’t know
Consider this enum declaration. enum Gender { Female, Male, Alien, } Do you think it compiles? Note that there is a comma after the last element. I would […]