Windows Mobile Application Development Training Videos/webcasts

I found the following webcasts are available for windows mobile application development from windows mobile product team site.

MSDN Webcast: 24 Hours of Windows Mobile Application Development: .NET Compact Framework Asynchronous Programming Techniques (Level 300) 

MSDN Webcast: 24 Hours of Windows Mobile Application Development: Windows Mobile Networking (Level 300) 

MSDN Webcast: 24 Hours of Windows Mobile Application Development: Windows . . . → Read More: Windows Mobile Application Development Training Videos/webcasts

Sample C# Application to Send SMS from Windows Mobile 5

Hey Devs,

                 The following piece of code will send SMS from your application.

using System;
using System.Linq;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using Microsoft.WindowsMobile.Telephony;
using Microsoft.WindowsMobile.PocketOutlook;

namespace SBSMProj
{
    public partial class SendSMS : Form
    {
        public SendSMS()
        {
            InitializeComponent();
        }

        private void menuItem2_Click(object sender, EventArgs e)
        {
            MessageBox.Show(“Thanks for playing fair”);
            Application.Exit();
        }

        private void mnuMessage_Click(object sender, EventArgs e)
        {
            . . . → Read More: Sample C# Application to Send SMS from Windows Mobile 5