Archive

Archive for March, 2010

Weather application for Windows Phone 7

March 31st, 2010
In this article we will learn how you can build a Weather application for Windows Phone 7. If this is the first time you are developing for Windows Phone 7, then I strongly suggest you to read this tutorial by ScottGu. The tutorial also talks about the tools required for developing Windows Phone 7 applications.
In one my earlier article, you learnt how you can develop a Weather Application for Windows 7. We will be using the same logic to develop this application, however this time for Windows Phone.
Read the rest of my article in dotnetcurry.

[Post to Twitter]   [Post to Plurk]   [Post to Digg]   [Post to ping.fm]

Related posts

Shoban C#, dotnetcurry, vb.net

See you in TechED India 2010

March 28th, 2010

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.

[Post to Twitter]   [Post to Plurk]   [Post to Digg]   [Post to ping.fm]

Related posts

Shoban Misc, Uncategorized

Autostart your application with Windows

March 22nd, 2010

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()

[Post to Twitter]   [Post to Plurk]   [Post to Digg]   [Post to ping.fm]

Related posts

Shoban Uncategorized

allaboutmoss.com – It’s all about MOSS

March 5th, 2010

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 :) .

[Post to Twitter]   [Post to Plurk]   [Post to Digg]   [Post to ping.fm]

Related posts

Shoban links