Sunday, December 09, 2007

If you want to learn a bit more about LINQ and don't directly want to use Visual Studio 2008, you can use this free tool: LINQPad. I just did a quick test run of it. The only thing at first glance that it lacks is Intellisense.

linqpadscreen

Grz, Kris.

 | 
Sunday, December 09, 2007 7:28:53 PM (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [0]  |  Trackback
 Sunday, November 11, 2007

Yep, you read that right: Windows Live Writer is out of beta. I've been using it for quite a while, since the betas, and found it a decent blog writer. One thing though was that it was a bit tough to include source code. Luckily it's possible to create plugins. One of those plugins is created by one of my VISUG collegues Christoph to insert, you guessed correctly, source code. You can download SyntaxColor4Writer here.

Grz, Kris.

 | 
Sunday, November 11, 2007 7:34:38 PM (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [0]  |  Trackback
 Sunday, July 08, 2007

Currently it's still in Beta phase but it sure does look promising to me after seeing this demo video: http://www.powershellanalyzer.com/demos/psaintrowmv.html.

Grz, Kris.

Sunday, July 08, 2007 8:02:30 AM (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [1]  |  Trackback
 Tuesday, April 03, 2007

I just found out that Telerik's creating a code conversion tool: http://converter.telerik.com/. It looks pretty slick with AJAX integration. No wonder because Telerik's been very busy on that part.

Another conversion tool that I used during the last couple of years are these: C# to VB.NET and VB.NET to C#.

Update: Gill pointed out in the comments that #Develop also has this functionality.

Grz, Kris.

Technorati tags: , , ,

kick it on DotNetKicks.com

 |  | 
Tuesday, April 03, 2007 5:24:20 PM (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [3]  |  Trackback
 Saturday, February 24, 2007

Wow, the news just keeps coming today. I found out about this little tool SonicFileFinder.

SonicFileFinder is a free add-in for Visual Studio 2005 that allows a fast and convenient search for any file within every Project of the loaded Solution by entering the complete filename or just a part of it. The found file(s) can either be edited with a single keystroke or a Windows Explorer / CommandLine prompt can be opened at the file's location.

Grz, Kris.

kick it on DotNetKicks.com

Saturday, February 24, 2007 6:49:41 PM (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [0]  |  Trackback
 Saturday, November 25, 2006

Yesterday I attended a workshop about WPF, WCF & WF given at Ordina. One of the presenters used a little tool that I saw Ingo Rammer use also a couple of months ago. The tool itself's called ZoomIt and is able to zoom in during a presentation and also provides a pen to draw on the screen while viewing.

It's free and if you're into presenting you can definitely use such a handy tool.

Grz, Kris.

 | 
Saturday, November 25, 2006 1:04:27 PM (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [0]  |  Trackback
 Saturday, November 18, 2006

I just installed the latest tool from the Live division on my laptop: Windows Live Mail Desktop. I got 10 invitations at the moment so anyone interested of getting one, just leave a comment to this post.

At first glance I can quickly connect to my live mail/hotmail account and see the subscribed RSS feeds of my IE7 RSS platform being integrated. The look and feel, even on Windows XP, is that of Windows Vista. Nice to see that because my laptop won't be capable of displaying the Aero or Glass look in Windows Vista.

One thing I noticed is that i doesn't nicely integrate with my gmail account. Apparently it can't connect to the pop server of gmail. I hope to see this one fixed in the update of this version.

Grz, Kris.

Saturday, November 18, 2006 11:33:59 AM (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [1]  |  Trackback
 Sunday, October 29, 2006

The freely available tool WebMatrix, which I used on my old pc to develop ASP.NET pages several years ago, came with a built in webserver, code named Cassini, so a developer could test his/her pages on the localhost.

With the .NET 2.0 framework this localhost only webserver's shipped and if you don't have Visual Studio 2005, or the free Visual Web Developer Express Edition tool (which is the follow up of WebMatrix), you can still execute your pages and view the outcome in a browser.

Here's a little guide on how to proceed:

Create a folder on your hard drive. In this example I created c:\MyASPNETPages\ where my testpage will reside. The testpage itself contains this code:

    1 <%@ Page Language="C#" %>

    2 

    3 <script runat="server">

    4 

    5     protected void Page_Load(object sender, EventArgs e)

    6     {

    7         Label1.Text = DateTime.Now.ToShortDateString();

    8     }

    9 

   10 </script>

   11 

   12 <html>

   13 <head runat="server">

   14     <title>Test Page</title>

   15 </head>

   16 <body>

   17     <form id="form1" runat="server">

   18     <div>

   19         <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>

   20     </div>

   21     </form>

   22 </body>

   23 </html>

Now start up a DOS box (Start | Run, type in cmd followed by enter). Navigate to the folder C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727

If you don't know how to do this you can type in the following in the opened DOS box:
cd \windows\microsoft.net\framework\v2.0.50727

After that you can type in the text in bold:

C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727>webdev.webserver /port:8088 /path:
"c:\MyASPNETPages" /vpath:"/Test"

Ok what does this mean?

webdev.webserver is the executable itself with the following arguments: port, path and vpath. Port and vpath are optional parameters. After typing the previous lines in bold in and pressing enter a webserver starts up (Figure 1):


Figure 1: Started up webserver

From Figure 1 we can also see what our url will look like (http://localhost:8088/Test).
This demonstrates the purpose of the port and vpath arguments. Port is the port number on which the server will listen. The default is 80 but if you have IIS running, like me, it's better to use another number or they will conflict.

 

After starting the webserver I can easily navigate to my webpage by typing in the url in the address bar of my browser: http://localhost:8088/Test/

As you would've expected I get to see the current date displayed in my page.

If I ommit the vpath argument it would default to "/", meaning that I can navigate to my pages by just typing in this in the address bar: http://localhost:8088/test.aspx

Grz, Kris.

Sunday, October 29, 2006 1:05:19 PM (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [0]  |  Trackback
 Monday, October 23, 2006

I installed IE7 last week and really enjoy it. This morning I took a look at the on10 site of Microsoft and saw the video about addons for IE. I like the inline search capability of FireFox and when I saw there's an addon for IE available I immediately installed it. It's a bit of a shame that it isn't the default search functionality in IE but the addon does the work :-).

Taken from the website: Inline Search is an extremely useful free add-on for Internet Explorer that mimics Firefox's search behavior, it turns searching into a Web page into a non modal research experience coupled with a search as you type facility. It integrates flawlessly into IE (version 5.5 or above), giving it that little extra that makes you a lot more efficient when you are looking for a specific piece of information.

You can download the addon here.

Grz, Kris.

 | 
Monday, October 23, 2006 8:40:02 AM (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [0]  |  Trackback
 Wednesday, October 11, 2006

Just noticed on the blog of Microsoft watch that there's a a comparison made, by Microsoft, for their own Visual Studio to Dreamweaver (former Macromedia, currently Adobe).

The comparison page can be found here.

Grz, Kris.

Wednesday, October 11, 2006 7:01:31 AM (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [0]  |  Trackback
 Sunday, September 24, 2006

I guess I'm one of those people who like to experiment with new tools. For my feedreading I used google feedreader, RSS bandit, omea reader and yesterday evening I found out about this new feedreader called Greatnews. I didn't have a lot of time to experiment with it but it looks promissing. It supports labelling, of which I'm a fan, and it also stores the downloaded content on the hard drive so you can reread it even when you're offline.

If you want to learn more about you can take a look at the feature list.

Grz, Kris.

Sunday, September 24, 2006 8:10:44 AM (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [0]  |  Trackback
 Thursday, August 17, 2006

Hi,

I'm just testing out Windows Live Writer. A completely new tool by Microsoft, still in Beta but it works already great with dasBlog. You can also extend it with extra plugins (1). It still lacks some extra's but I already like the nice integration with dasBlog. Even the Categories are available.

Update: There are already some nice plugins available on CodePlex: Window Live Writer Plugins, Flickr4Writer and Tag4Writer.
Update 2: It seems another VISUG member also has created a plugin for Live Writer: SyntaxColor4Writer.

Grz, Kris.

(1): windows live writer plugins: flickr and tagging and Write a Windows Live Writer plugin using C#.

kick it on DotNetKicks.com

Thursday, August 17, 2006 5:24:39 PM (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [0]  |  Trackback
 Monday, July 17, 2006

I just found out about this site. It's an overview of free/payware widgets/addins: Team System Widgets.

Grz, Kris.

kick it on DotNetKicks.com

Monday, July 17, 2006 6:09:40 AM (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [0]  |  Trackback
 Friday, June 30, 2006

Today, in the afternoon, I went to the first part, the next one's tomorrow, about Visual Team System 2005 an event by VISUG of which I'm a member. Thanks to the people from Microsoft we also got a new book to read for free: Wrox' Professional Visual Studio 2005 Team System.

Wrox Professional Visual Studio 2005 Team System

The presentation is given by Steven Wilsens, whom is a Team System MVP and will be joining Microsoft in a while.

I'm looking forward to the next part of the event.

Grz, Kris.

 |  | 
Friday, June 30, 2006 8:23:17 PM (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [0]  |  Trackback
 Wednesday, May 31, 2006

I've read some good feedback on this tool before and also installed it at work where I use SQL Server 2005 Management studio on a daily basis.
Once you get used to Intellisense in visual studio.net you always get that creepy feeling: where's Intellisense when you want to query your database? Well, SQL Prompt fills that gap and saves you valuable time while developing or creating another inner join. The tool can be downloaded here for free until September 1st 2006.

Wednesday, May 31, 2006 7:04:51 PM (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [0]  |  Trackback