Saturday, October 30, 2010

How to enable debugging or attach debugger in visual studio with silverlight when browser is firefox

This will help all the people who are facing problem to attaching the debugger of visual studio when firefox is use for browsing.
Today I was facing problem in attaching visual studio debugger while using firefox. I kept googling here and there and then almost spending 3-4 hours, Some where i found that when you use IE then your debugger will get attached. I tried it and the problem was solved. Finally the debugger got attached with IE and not with firefox. Then further googling gave me following solution in which you have change the config of the firefox

Solution:
  • In address bar of FireFox type "about:config".
  • Read the warning and accept it.
  • Now type: "npctrl" in the search bar of the config options .
  • You will then see the entry: dom.ipc.plugins.enabled.npctrl.dll
  • Now Change the value from true to false (just by double-clicking will change this).
  • Now Restart Firefox
All is done, Now set your breakpoints and run your visual studio. All your breakpoints will be reached.

Thanks,
Maninder

Introduction to Validation in Silverlight 4 (Part 1)

Data validation is most important for data driven applications. This article talks about the basics of validation in Silverlight 4.

Following are some screen shots of how the sample application looks before and after the validation.

Before:

1.gif
 
After:
 
2.gif 

Following is an employee class which has two properties namely name and age. The properties of the employee class are validated whenever the user sets the properties. In this example, the following checks are made

For Name property : Name should not be empty and should contain only letters ("alphabets")
 
3.gif

4.gif 

For Age property : Age should be between 0 - 100

5.gif 

Following is the mainpage.xaml where you have to set the validation for the controls.

For textbox control accepting Name of employee
 
6.gif

For textbox control accepting Age of employee
 
7.gif