Wan to get up to speed on on .NET 3.5 (I know I do!) the Microsoft Corporate Platform Evangelism team released the .NET 3.5 Enhancements Training Kit it has information on:

  • ADO.NET Data Services
  • ADO.NET Entity Framework
  • ASP.NET AJAX History
  • ASP.NET Dynamic Data
  • ASP.NET MVC
  • ASP.NET Silverlight controls
  • You can think of this kit as a CTP it's not to where the team wants it to be but there are a lot of people asking for this type of resource so they decided to release it now.

    Technorati Tags: ,

    Posted by: woodyp
    Posted on: 4/23/2008 at 5:50 AM
    Categories: .NET | Training
    Actions: E-mail | Kick it! | DZone it! | del.icio.us
    Post Information: Permalink | Comments (0) | Post RSSRSS comment feed
     
     

    A lot! My two big things are Threaded Text Messaging & Cut, Copy, and Paste on a Non-Touch Screen device :).

    The only problem now is Version has not said it would update the Q 9m, looks like it's time to go shopping.

    Windows Mobile 6.1 – New Windows Mobile Software for Pocket PC and Smartphone


    Posted by: woodyp
    Posted on: 4/11/2008 at 2:52 PM
    Categories: General | Mobile
    Actions: E-mail | Kick it! | DZone it! | del.icio.us
    Post Information: Permalink | Comments (0) | Post RSSRSS comment feed
     
     

    Have you been thinning of ways you could create solutions for your customers or company on the Windows Mobile platform? Well you are in luck! I am going to be running two Mobility Metro Events in the Microsoft offices San Diego and Irvine on Tuesday, April 22, 2008 and Thursday, April 24, 2008. I will post the full details below... I hope to see you there!

     

    Mobility Metro events are 1-day seminars with in-depth coverage of building applications on the Windows Mobile platform. The training covers tools such as Visual Studio 2008, the .NET Compact Framework, SQL Server Compact Edition and more. The following seven areas will be discussed in detail:

    ·         All About Windows Mobile

    ·         Windows Mobile for Line of Business

    ·         The Tools

    ·         Managed Development

    ·         Data Management Strategies

    ·         Performance and Optimization

    ·         A Whole New Level

    Lunch will be provided.

    Please visit the sites below for registration. Seats are limited and going fast, so register early!


     

    SAN DIEGO

    IRVINE

    Tuesday, April 22, 2008

    Microsoft San Diego Office

    9255 Towne Centre Drive, Suite 400
    San Diego, CA 92121

    Registration: 8:30 am
    Event: 9:00 am – 5:00 pm

     

    ** Parking will not be validated.
    $18/day can be paid in Cash or Credit Card.

     

    To register, please visit:
    https://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032374023&culture=en-US

     

    Register online or by calling 1-877-673-8368 and referencing Event ID 1032374023. 

    Thursday, April 24, 2008

    Microsoft Irvine Office

    Three Park Plaza, Suite 1800
    Irvine, CA 92614

    Registration: 8:30 am
    Event: 9:00 am – 5:00 pm

     

    ** Parking will not be validated.
    $ 12/day can be paid in Cash or Credit Card.

     

    To register, please visit:
    https://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032374407&culture=en-US  

     

    Register online or by calling 1-877-673-8368 and referencing Event ID 1032374407.


    Posted by: woodyp
    Posted on: 4/8/2008 at 2:38 AM
    Categories: CF | Event
    Actions: E-mail | Kick it! | DZone it! | del.icio.us
    Post Information: Permalink | Comments (0) | Post RSSRSS comment feed
     
     

    asp.netPro magazine is looking for feed back as to the best products for developers out there... check it out and lets let the venders know who is on top this year asp.netPRO Readers Choice Awards.

    Technorati Tags:

    Posted by: woodyp
    Posted on: 4/2/2008 at 10:11 PM
    Categories: General
    Actions: E-mail | Kick it! | DZone it! | del.icio.us
    Post Information: Permalink | Comments (0) | Post RSSRSS comment feed
     
     

    You will now see why we don't do the marking for Microsoft products!

    Jason did a killer job editing and setting up the shots for this, good job man!


    Posted by: woodyp
    Posted on: 4/2/2008 at 7:55 AM
    Categories: Code Trip | General
    Actions: E-mail | Kick it! | DZone it! | del.icio.us
    Post Information: Permalink | Comments (2) | Post RSSRSS comment feed
     
     

    image While at Cuesta College in San Luis Obispo I was doing a demonstration of Internet Explorer 8 Beta and showing off a new add-on type called Activities. During the demo I had a weak moment and said that it looked so easy to implement that while the bus was driving on the way to Mountain View, CA after the meeting I would implement an Activity for Wikipedia. I thought I understood what I needed to do from just looking at the Windows Live Maps sample but I wanted to make sure. So I found the current documentation Internet Explorer 8 Readiness Toolkit and the Activities white paper and gleaned the rest from the available samples. Here's what I came up with:


    <?xml version="1.0" encoding="UTF-8"?>
    <openServiceDescription xmlns="http://www.microsoft.com/schemas/openservicedescription/1.0">
      <homepageUrl>http://en.wikipedia.org/</homepageUrl>
      <display>
        <name>Define with Wikipedia</name>
        <icon>http://en.wikipedia.org/favicon.ico</icon>
      </display>
      <activity category="Define">
        <activityAction context="selection" >
          <execute action="http://en.wikipedia.org/wiki/Special:Search?search={selection}" />
        </activityAction>
      </activity>
    </openServiceDescription>

    I did learn that you need to use the proper capitalization for the category so that the new Activity will be grouped with the other Activities of that category in the "Manage Add-ons" dialog.

    Once you have the XML file you need to install it, it turns out quite easy to do:

    <button onclick="window.external.addService('http://thecodetrip.com/common/wikipedia_activity.xml')">Add Define Activity</button>

    Now a button like this one (yes it's live) will show up.

    So how long did this take? Including a stop at Taco Bell on the way out of San Luis Obispo this took less than an hour to implement! Now that is an easy way to improve the user's experience and help drive traffic to sites.

     

     


    Posted by: woodyp
    Posted on: 4/1/2008 at 5:08 PM
    Actions: E-mail | Kick it! | DZone it! | del.icio.us
    Post Information: Permalink | Comments (0) | Post RSSRSS comment feed
     
     

    While at Cuesta College in San Luis Obispo I was doing a demonstration of Internet Explorer 8 Beta and showing off a new add-on type called Activities. During the demo I had a weak moment and said that it looked so easy to implement that while the bus was driving on the way to Mountain View, CA after the meeting I would implement an Activity for Wikipedia. I thought I understood what I needed to do from just looking at the Windows Live Maps sample but I wanted to make sure. So I found the current documentation Internet Explorer 8 Readiness Toolkit and the Activities white paper and gleaned the rest from the available samples. Here's what I came up with:


    <?xml version="1.0" encoding="UTF-8"?>
    <openServiceDescription xmlns="http://www.microsoft.com/schemas/openservicedescription/1.0">
      <homepageUrl>http://en.wikipedia.org/</homepageUrl>
      <display>
        <name>Define with Wikipedia</name>
        <icon>http://en.wikipedia.org/favicon.ico</icon>
      </display>
      <activity category="Define">
        <activityAction context="selection" >
          <execute action="http://en.wikipedia.org/wiki/Special:Search?search={selection}" />
        </activityAction>
      </activity>
    </openServiceDescription>

    I did learn that you need to use the proper capitalization for the category so that the new Activity will be grouped with the other Activities of that category in the "Manage Add-ons" dialog.

    Once you have the XML file you need to install it, it turns out quite easy to do:

    <button onclick="window.external.addService('http://thecodetrip.com/common/wikipedia_activity.xml')">Add Define Activity</button>

    wikipedia_activityNow a button like this one (yes it's live) will show up.

    So how long did this take? Including a stop at Taco Bell on the way out of San Luis Obispo this took less than an hour to implement! Now that is an easy way to improve the user's experience and help drive traffic to sites.

     

     


    Posted by: woodyp
    Posted on: 4/1/2008 at 4:56 PM
    Categories: Code Trip | IE8
    Actions: E-mail | Kick it! | DZone it! | del.icio.us
    Post Information: Permalink | Comments (0) | Post RSSRSS comment feed