04/19/2009Video tutorial
Java jGrasp - DynamicTable In this video I extend the discussion on tables by creating a table the inherits the functionalities
of the AbstractTableModel. The table slots will be filled using the formula Math.pow(r,c) where r is the
row and c is the column.
04/14/2009Video tutorial
Visual Studio C# - Silverlight - ZIndex Description: In this video I am showing the bits and pieces of a Silverlight applications. I will
discuss the details of the test page (html page) and the xap file that you can
use to deploy a Silverlight application.
04/14/2009Video tutorial
Visual Studio C# - LINQ - LINQToDataSet Description: In this video, I am going to discuss how to user LINQ with a Dataset. We are going to
connect to Northwnd and select all the employees. Using the DataAdapter, we will fill
the dataset.
03/29/2009Video tutorial
Visual Studio C# - LINQ - LINQToXML - Lesson V This video will show you how you can use the familiar new operator to create a
node (or list of nodes). Then, we will use All to find whether the nodes satisfy
a certain condition. Finally, we will sort the book authors in ascending order.
03/28/2009Video tutorial
Visual Studio C# - LINQ - LINQToXML - Lesson IV Using LINQ to XML we can select text in a document using OfType. This video
will demonstrate how that can be done. Also, we can union two sequences of nodes
using the Union() method, and display the path to a specific nodes.
03/27/2009Video tutorial
Visual Studio C# - LINQ - LINQToXML - Lesson III In previous videos we loaded an existing xml file and queried existing books. In
this video, we will parse the xml from a string, and apply from/where/select to
the parsed xml.
03/26/2009Video tutorial
Visual Studio C# - LINQ - LINQToXML - Lesson II This video continues our discussion on LINQ to XML. We will look at how we can
retrieve specific elements from the XML file. Then, we discuss attributes: how
we can select them, add new ones to the document and remove current ones from
the document.
03/26/2009Video tutorial
Visual Studio C# - LINQ - LINQToXML - Lesson I XML is very handy when it comes to exchanging documents between companies and
saving application settings and configurations. It is very natural for LINQ to
support XML.
03/21/2009Video tutorial
Java jGrasp - JTable Swing Component In this video, I am going to discuss how to create a simple JTable. It is simple because the data displayed
within the table is static. We start by creating a JTable, adding the JTable to a JScrollPane, and finally
adding the JScrollPane to the frame.
03/20/2009Video tutorial
Java jGrasp - JList Swing Component In this video I start my discussion on Swing components, specifically we will be talking about JList.
We will create a ListFrame and build a list and a label within it. The list will contain numbers that
represent the font (from 6 to 18). The list will be added to the North portion of the frame and the
label will be added to the center portion.
03/19/2009Video tutorial
Java jGrasp - Comparing Classes and Objects We first continue the functionality in the Manager class. Then we move into implementing interfaces. An interface is a collection of abstract methods. The job of the class is to
implement those methods.