Archive

Archive for the ‘Development’ Category

Serial Port Communications

March 8th, 2010 Stu No comments

image I am laying out the scope of a learning project idea. In my day job I sell software that communicates with serial ports (RS-232c). So I want to learn more about how to use VB.NET for serial port communications. I came across Richard L. Grier’s website (HardandSoftware.net) and wanted to give him a thanks for a lot of good references on his site. His terminal application (see download page) is a good starting place for what I am looking to learn.

  • Share/Bookmark
Categories: Development Tags: , ,

Having Fun…

March 6th, 2010 Stu No comments

On my wife’s blog (2SecondsFaster.com) we put up a “Saturday Mixer” and it is a weekly “you take over the conversation” post. As a joke, I thought I would put the post rules up in VB.NET code. Below is my code for a simple Console App.

Code Snippet
  1. Module saturdayMixer
  2.  
  3.    Sub Main()
  4.       Dim saturdayMixer As String
  5.  
  6.       Console.WriteLine("Do you know the rules? (y or n)")
  7.       saturdayMixer = Console.ReadLine()
  8.       ' saturdayMixer = Console.ReadLine()
  9.  
  10.       If saturdayMixer = "y" Then
  11.          Console.WriteLine("Welcome to the Saturday Mixer!" & ControlChars.CrLf _
  • Share/Bookmark

Windows Phone 7

February 15th, 2010 Stu No comments

So Microsoft announced Windows Mobile Phone 7 today. Looks great and since I really like the Zune UI, this should be a great experience. I have been holding off getting the Zune HD because I wanted to see if it was going to survive or not and WinPh7 (is that a good acronym?) is taking the Zune UI and placing a phone and whole host of other services with it.

I think it looks great and is a game changing moving from Microsoft, which was needed. Good job MS.

Check out the Official Website for Windows Phone 7.

  • Share/Bookmark

My First VB.NET Code

February 7th, 2010 Stu No comments

VB_NET_logo This has been a heck of a week. I went to the corporate office and had my computer rebuilt. It is horrible being without a computer for a couple days. On top of that I have a heavy class load for school, so I got behind. It is hard to learn to code and only have the book to look at. You need Visual Studio to actually learn from playing with code!

  • Share/Bookmark
Categories: Development Tags: ,

Beginners Guide to Virtual PC by a Beginner

January 6th, 2010 Stu No comments

image Ok, got the new PC and been prepping it for dev use… Gone swimmingly so far. Now I want to experiment with Virtual PC for Windows 7 (my old PC was not capable of doing this). The only problem is that I have no experience with running a virtual machine and I have had a horrible time finding a walk through. So here is the beginner guide by a beginner for Virtual PC.

  1. You need to know if you can run Virtual PC. Download and run this application. It will test your computer for processor compatibility.
  • Share/Bookmark