Weather application for Windows Phone 7


TechED is back in India and this time it is in Bangalore. I will be presenting a 30 minute one hour session about Web Security and Best Practices along with Security MVP Manu Zacharia.
If you are coming, don’t forget to say “Hi” to me
. Here is a blog post I wrote about TechED India 2009 in Hyderabad.
This is a frequently asked question and its very easy to implement it in .net.
Code for adding the application to start with windows
Dim regKey As RegistryKey
regKey = Registry.CurrentUser.OpenSubKey("Software\Microsoft\Windows\CurrentVersion\Run", True)
regKey.SetValue(Application.ProductName, Application.ExecutablePath)
regKey.Close()
Code for removing the application from startup
Dim regKey As RegistryKey
regKey = Registry.CurrentUser.OpenSubKey("Software\Microsoft\Windows\CurrentVersion\Run", True)
regKey.DeleteValue(Application.ProductName)
regKey.Close()
I am happy to launch a new blog www.allaboutmoss.com . If you are a SharePoint developer I strongly suggest you to subscribe to the feeds or subscribe via email.
Unlike codegeeks, allaboutmoss has 3 Authors. So you can expect regular interesting articles about SharePoint
.
Recent Comments