Archive Page 16

My First post using Windows Live Writer!

I’ve installed and configured Windows Live Writer. The initial to My WordPress Blog was really effortless and without incident. I created this post using the Live Writer Desktop application, so far so good. Browser based WYSIWYG () have certainly improved vastly, but I still prefer the ease and control of a desktop based word editor.

WordPress.com owner Automattic aquires Simplenote.

mikejohnstn's avatarSimplenote

Simplenote has a new home! Our company, Simperium, has been acquired by Automattic, makers of WordPress.com. We think this’ll be great for everyone, especially you, our beloved fans.

You know how sometimes, the services you love just disappear when they’re bought by someone else? Or they wither and die a slow and painful death? Not the case here. We made sure of that.

The founder of Automattic, Matt Mullenweg, has been a long-time Simplenote fan. We first met him in 2010 before we joined Y Combinator, and we’ve kept in touch since. Fred and I will never forget the surprise Matt casually unleashed shortly after we decided to join forces. “Hey, by the way…we also bought simplenote.com from the people who were squatting it.” How’s that for a vote of confidence? We finally own simplenote.com!

In joining Automattic, we’re working with more resources and a growing, complementary…

View original post 227 more words

Open a Website from C#

It is often a requirement to open the default web browser and browse to a specific Url from a Windows Forms, WPF or even Console application. The easiest method I’ve discovered is to make use of the System.Diagnostics.Process class:

 using  System;
 using  System.Collections.Generic;
 using  System.Text;
 using  System.Diagnostics;
 
 namespace  OpenDefaultBrowser
 {
     class  Program 
     {
         static  void  Main(string [] args)
         {
             Process .Start("http://softwarebydefault.com" );
         }
     }
 }
 

In most scenarios the code snippet listed above works without a problem. The only issue I foresee being in an environment where the user account used to execute your application not having sufficient permissions to execute the default browser application.

For more information see MSDN Process Class

How to open a Command Prompt anywhere

I’ve discovered a very handy trick: How to open a Command Prompt Window from any Windows directory. All you have to do is in any directory hold down the shift key whilst no directory items are selected and right click. One of the context menu options will be ‘Open Command Window Here’. A Command prompt window will open with the current directory set to the directory from which it was initiated. No more cd (change directory) commands needed.

Original article from CodeProject

Open Command Prompt Window Here

Open Command Prompt Window Here

I’ve joined the O’Reilly Blogger Review Program

I review for the O'Reilly Blogger Review Program


Dewald Esterhuizen

Unknown's avatar

Blog Stats

  • 894,624 hits

Enter your email address to follow and receive notifications of new posts by email.

Join 91 other subscribers

Archives

RSS SoftwareByDefault on MSDN

  • An error has occurred; the feed is probably down. Try again later.