Follow Us!

Parsing XML Feed to an Array with XPath

Posted by on Jan 15, 2011 in PHP Tutorials, Programming Tutorials, XML | 0 comments

Recently while working on a project, I found myself needed to parse several different types of files through the same mechanism (CSV, pipe delimited, XML, and more). I decided that it would be best to get each time of feed to a identical object that could then be run through the same methods regardless of the input type. This tutorial will walk you through using PHP and XPath to parse the values from an XML file and store them into array for later manipulation.

Read More

Function – Splitting a string

Posted by on Oct 18, 2010 in General Functions, Programming Tutorials | 1 comment

Splitting a String on a Character There are a lot of functions out there that are very simple and easy to understand but are absolutely...

Read More

Handling Errors To Prevent Application Crashes in VB

Posted by on Feb 27, 2009 in Programming Tutorials, Visual Basic 2005/2008 | 0 comments

This tutorial will walk you through a very simple but extremely useful function in programming. When you write code you can never guarantee that specific requirements will be met upon execution and therefore errors are always a possibility. As a coder you need to be able foresee these types of issues and catch them before the application crashes and requires the user to restart it and even worse, lose data that they may have been working on.

Read More

Installing Microsoft SQL 2008 Express Edition

Posted by on Nov 9, 2008 in Programming Tutorials, Windows Tutorials | 12 comments

This tutorial will walk you through installing Microsoft’s SQL Server 2008 Express Edition. This will allow us to create a database and start writing more advanced applications in Visual Basic that require a database.

Read More

Simple VB Code and All About Arrays

Posted by on Feb 18, 2008 in Programming Tutorials, Visual Basic 2005/2008 | 5 comments

This is one of the many tutorials that you can use to learn the basics of VB. These tutorials will help lay the groundwork so you can move on to more advanced programming. In this tutorial, we look at arrays and how they are used in VB programming.

Read More

Simple VB Code with Strings Booleans and Integers

Posted by on Feb 11, 2008 in Programming Tutorials, Visual Basic 2005/2008 | 5 comments

This is the third tutorial in the series that will give you a very basic understanding of VB and allow you to learn more advanced features. We are going to be going over strings, integers, and boolean variables.

Read More