in

ASP.NET Weblogs

Jason Tucker's Blog

not at all creative...

May 2003 - Posts

  • A Bunch of stuff before I leave.

    First off congrats to ScottW for putting out this great product and resource. I was quite surprised when I checked out the site this morning ( on the g-friend's p.c. so no news aggregator.. yet. ) and saw the redirection to the new site.

    Secondly I've been preparing for my trip to Tech-Ed and studying for my VB.Net and VS.Net web app test I will be taking on Monday. Wish me luck. Going to try and sign up for Tech-Ed Bloggers. Also I'll be blogging from my PocketPC, so if anyone has any experience with Pocket Blog or know of another piece of software that I could use, that would be great!

     

     

  • Web Matrix Preview

    Nikhil has posted a nice teaser pic of the new version of Web Matrix.
    Posted May 23 2003, 08:24 AM by jtucker with no comments
    Filed under:
  • Looking for a blog..

        anyone know if Susan Warren is bloging? I really enjoyed her talks from last years Tech-Ed and since she was not listed for this years Tech-ed I was just wondering if anyone knows.
  • OS Junkie.

    I have to admit that I am an OS Junkie. On one box I have atleast 5 different os' running { WinXP, Win2k3, Linux ( RedHat ), BeOS and SkyOS }. Needless to say I am very interested in what LongHorn has to produce. Check this out from Paul Thurrott. Not only that but at WinHEC he got to check out some of the graphics rendering that is going into this beast. Then on top of that they are saying they are gonna knock down the API from 70k to 10k?!? Also Bill's keynote speech at WinHEC is here. Sign me up! As a developer who has worked on a good bit of Win32 this is going to be a welcome addition. Anxiously awaiting what Chris will have to say about this.
  • VS.Net Tip/Trick

    Thanks to Roy for this macro to insert Region statements in your code. I updated it a bit for VB.Net peeps.  

    Sub OutlineSelection()

      Dim objTextDoc As TextDocument
      Dim title As String = InputBox("Enter the title for the outline", "Outline code")
      objTextDoc = DTE.ActiveDocument.Object("TextDocument")
      objTextDoc.Selection.Insert("#Region """ & title & "" & vbNewLine, vsInsertFlags.vsInsertFlagsInsertAtStart)
      o
    bjTextDoc.Selection.Insert(vbNewLine & "#End Region ", vsInsertFlags.vsInsertFlagsInsertAtEnd)
     
    objTextDoc.Selection.SmartFormat()

    End Sub

    --
    Composed with Newz Crawler 1.4 http://www.newzcrawler.com/
More Posts