To disable Windows Phone Emulator Frame Rate Counter put this code inside your MainPage constructor.
Application.Current.Host.Settings.EnableFrameRateCounter = false;
To disable Windows Phone Emulator Frame Rate Counter put this code inside your MainPage constructor.
Application.Current.Host.Settings.EnableFrameRateCounter = false;
The process of unlocking your WP7 device for development is very easy.
Note: unlocking your WP7 device using the tool allows you to debug and test applications on your device.
Figure 1
For more details see http://msdn.microsoft.com/en-us/library/ff769508%28v=vs.92%29.aspx
A very useful guide to understand how to import/export data from SQL Azure to SQL Server 2008 R2 is available at
http://blogs.msdn.com/b/sqlazure/archive/2010/05/19/10014014.aspx
When you design a table in a database and then try to make a change to a table structure that requires the table to be recreated, the Database Management Studio will not allow you to save the changes.
This is caused by a configuration setting that will result by default in the following dialog:
“Saving changes is not permitted. The changes you have made require the following tables to be dropped and re-created. You have either made changes to a table that can’t be re-created or enabled the option Prevent saving changes that require the table to be re-created.”
To be able to make a change in your table structure, you’ve just to follow these steps:
Now you can save changes.