10/29/2008Video tutorial
Visual Studio C# - Sorting Objects P2 This video is a continuation of a previous video on sorting objects. In the first
video, I demonstrated how to implement the IComparable interface. In this video, I
will show how to implement the IComparer interface.
10/29/2008Video tutorial
Visual Studio C# - Sorting Objects P1 Sorting is a functionality that is used by developers almost daily. We sort
numbers, dates, student records...
C# supports sorting objects that are part of the .NET Framework.
10/29/2008Video tutorial
Visual Studio C# - Passing Parameters This video discusses passing parameters to C# methods. Some methods can do their work
without needing assitional information. Other methods, however, need additional data
to do their work.
10/29/2008Video tutorial
Visual Studio C# - Inheritance.. Inheritance is one of the pillars of object-oriented programming. It has to
do with creating classes from other existing classes. This feature is very
powerful since it helps us create a hierarchy of classes that depict the
business model.
10/29/2008Video tutorial
Visual Studio C# - Creating classes and objects. Object-Oriented languages like C# and Java are based on classes and objects. A class is a prototype (like an Employee), and an object is a specific instance of the class (like John).
In Object-Oriented languages everything is an object.
10/26/2008Video tutorial
XML structures - XML on SQL Server In this lesson you will learn about the XML structures, the storage options and the use of text columns to store XML.
10/16/2008Video tutorial
Delphi Win32 -Building Database Application - P1 This video is the first part of a video set about Building Database Application with Delphi, Firebird and dbExpress. In this video we will talk about introduction to database application with Delphi in general.
10/15/2008Video tutorial
A brief introduction to SQLIte We will know the SQLite database that is the tiniest database used on Linux, applications and portable devices.
10/09/2008Video tutorial
Lazarus Beginner - P2 This video will talk about basic Free Pascal program skeleton, including basic data types, constant variable, one and multi dimension array, and looping with for, while and repeat...until statement.
09/26/2008Video tutorial
ASP.NET ListView In this lesson we will learn Know the new ASP.NET control to Data Access, LinqDataSource.
09/26/2008Video tutorial
Delphi Win32 - Delphi for Beginner - P10 - Final Delphi has many ways to access database, that is, BDE, ADO, IBExpress, and dbExpress. This video will talk about basic usage of dbExprsess components to access Interbase database.
09/22/2008Video tutorial
Delphi Win32 - Delphi for Beginner - P9 Most modern programming languages support object-oriented programming (OOP). OOP languages are based on three fundamental concepts: encapsulation, inheritance, and polymorphism.