Hello i have downloaded a Windows Live Messanger SDK Client...

It contains an example of a program which allows you to log in, go into the options of your msn etc...

I quickly loocked through the code, it was in C++ which i dont know very well, i found that at the top of the C++ page it said 'using' and then a name. I then tried to do the following to explore the features.

vb Code:
  1. Imports Microsoft.WindowsLive.Id 'C:\Program Files\Common Files\Microsoft Shared\WLIDClient\Microsoft.WindowsLive.Id.Client.dll
  2.  
  3. Public Class Form1
  4.     Friend Identity As Microsoft.WindowsLive.Id.Client.Identity
  5.     Friend IDManager As Microsoft.WindowsLive.Id.Client.IdentityManager
  6.     Friend LogOnExpection As Microsoft.WindowsLive.Id.Client.WLLogOnException
  7.     Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  8.  
  9.     End Sub
  10. End Class

I wrote Identity then wrote a . to see the features. I was having trouble with them... I don't understand how to retrieve the users username. Does the user have to bo on to use this function?... I had a bit of trouble understanding...