Archive for November, 2007

Some ASP.NET Goodies in VS 2008

Today we’ll look at a few new goodies on the web development side of Visual Studio 2008.  You may have heard that we finally get split view so we can see the designer and the HTML at the same time.  Or maybe you want to know just how well that JavaScript intellisense works.  Have you seen the new CSS integration?  This is really cool.  And frankly, it does something Dreamweaver should have been doing years ago.  So, let’s get started.

(more…)

If you're new here, you may want to subscribe to my RSS feed. Thanks for visiting!

Monday, November 26th, 2007

Intellisense Everywhere in VB 9 (and a small bug)

One of the features the CSharp guys have had for quite a while is Intellisense everywhere.  Want to create a private variable?  Just start typing private and hit the tab key as soon as the word is highlighted.  This, combined with code snippets have made coding in CSharp a bit faster than coding in VB.

What about the VB guys?

Sorry.  All the VB guys got was the ability to see methods an properties hanging off of their objects.  They have had to type out  the whole word for things like public, private, dim and class. 

Until now.  Watch the following video to see the new Intellisense for VB 2008 in action.

Technorati Tags: ,,

  

del.icio.us Tags: ,,

Friday, November 23rd, 2007

Free Version of Camtasia

This just in from http://www.warriorforum.com/forum/topic.asp?TOPIC_ID=199669

1. Download the free trial version of Camtasia Studio 3
at:
http://download.techsmith.com/camta…amtasiaf.exe (no affil.)
2. Go to this promotion page, complete your name, country
and e-mail address and Techsmith will send you the software
key to unlock the program.
http://www.techsmith.com/camtasia/pcpls.asp (no affil.)
3. Just install the program you downloaded from step 1 above
and then enter the software key you receive from Techsmith
and you’ll have a fully working version of Camtasia Studio 3
on your PC.
4. (Optional) You can upgrade to Camtasia Studio 5 if you
want to for just $149. That’s a savings of $150 over the
full price of $299.

del.icio.us Tags: ,

  

Technorati Tags: ,

Thursday, November 22nd, 2007

Simple Properties in C# 3.5

It’s such a little thing.  But, how much of our CSharp code looks something like this:

    private string _propertyName;     

    public string PropertyName
    {
        get { return _propertyName; }
        set { _propertyName = value; }
    }

(more…)

Thursday, November 22nd, 2007

Multi-Targeting

One of the big new features that have been advertised with Visual Studio 2008 is this thing called Multi-Targeting.  This lets you write code for .NET 2.0 (or 3.0) even though 2008 is written to work with .NET 3.5.  So, the theory is, you can still work on existing projects targeted for .NET 2.0.  Does this work?  Watch the video to find out.

del.icio.us Tags: ,

  

Technorati Tags: ,

Wednesday, November 21st, 2007