| Home | My Account | Directories |
Generating Tables with Visual Web Developer
Published on 2012-05-06 03:06:48
This lesson shows you how you can easily generate HTML tables using the tools from Visual Web Developer. > read more
Formatting Texts
Published on 2012-04-06 01:59:21
This lesson shows the formatting tools offered by Visual Web Developer 2010. > read more
Web Forms
Published on 2012-04-01 03:04:01
This lesson discusses web forms and how to create a them in Visual Web Developer. > read more
A Quick Look At HTML
Published on 2012-03-28 22:20:11
This lesson shows a quick look at the different parts of an HTML web page and how you can put them together to create web pages. > read more
How ASP.NET Works
Published on 2012-03-25 02:59:38
This lesson shows you what's happening behind the scenes when a user is requesting an ASP.NET web page from the server. > read more
Your First ASP.NET Website
Published on 2012-03-18 04:03:03
This tutorial will guide you on creating a very simple website that is ran by ASP.NET. > read more
Visual Web Developer 2010 Express
Published on 2012-03-18 01:49:25
Visual Web Developer is a web development environment that helps you create ASP.NET web sites using its plethora of useful tools and features. > read more
Introduction to ASP.NET
Published on 2012-03-18 00:48:02
This is a brief an introduction to the world of internet, web pages, web development, web applications and ASP.NET. > read more
Modifying Database with LINQ to SQL
Published on 2012-03-10 05:31:29
This lesson provides you with an example on how to add, delete, and update records by using different methods offered by the generated LINQ to SQL classes. > read more
Querying a Database with LINQ to SQL
Published on 2012-03-10 05:08:45
This lesson is the first example of using LINQ to SQL and simply queries a database and retrieves the records from one of its tables. > read more
LINQ to SQL
Published on 2012-03-10 04:56:54
This is an introduction to LINQ to SQL which is an easier and faster way of connecting to SQL Server databases and using them in your program with LINQ queries. > read more
User Controls
Published on 2012-01-15 08:49:28
This lesson shows you how to create your own user controls which are customized controls that will have functionality not found on predefined controls. > read more
The Select Method
Published on 2012-01-07 23:16:40
The Select method allows you to query a collection and project the results by passing a selector predicate represented by a lambda expression. > read more
Creating an XML Document Using LINQ to XML
Published on 2011-12-25 07:39:35
This tutorial shows you how you can take advantage of using the LINQ to XML classes to easily create an XML Document through code. > read more
LINQ to XML
Published on 2011-12-25 05:02:01
This is an introduction to LINQ to XML which allows you to create, manipulate, and query XML documents using LINQ syntax and methods. > read more
The SelectMany Method
Published on 2011-12-18 04:47:40
This lesson discusses the SelectMany method used to query properties containing collection of objects. > read more
The let Clause
Published on 2011-12-04 06:07:28
This lesson demonstrates LINQ's let clause which allows you to store the result of an expression in a variable for use by the query expression. > read more
The join Clause – Doing a Left Outer Join
Published on 2011-11-20 05:37:03
This lesson shows you how to use a LINQ join clause to perform left outer joins between two data sources. > read more
The join Clause – Doing a Group Join
Published on 2011-11-13 03:10:59
This lesson shows you how to use the join clause in a query expression to do a group join. > read more
The join Clause – Doing an Inner Join
Published on 2011-11-07 07:20:07
This lesson shows you how to use a LINQ join clause to perform inner joins between two data sources. > read more
Joining Data Sources
Published on 2011-11-07 07:17:31
This is an introduction to joining data sources using the join clause. > read more
Simple Text Editor
Published on 2011-07-02 09:05:55
This tutorial guides you to the creation of a Simple Text Editor program that allows you to load, save, and change the style and font of texts. > read more
The ToolStripContainer Control
Published on 2011-07-02 00:10:51
This lesson shows how you can use the ToolStripContainer control which serves as a container for multiple ToolStrips. > read more
Creating Toolbars
Published on 2011-07-01 21:22:21
This lesson shows you how to create your own toolbars and describes the different types of items you can add to it. > read more
Exception Properties
Published on 2011-06-29 08:13:07
This lesson shows describes the Message, InnerException, and StackTrace properties of the System.Exception class. > read more
The Timer Control
Published on 2011-06-24 02:31:06
This lesson takes a look at the Timer control which allows you to execute codes for every tick of time specified by an interval. > read more
The TrackBar Control
Published on 2011-06-20 07:11:03
This lesson takes a look at the TrackBar control which provides a range of value that you can access by sliding its thumb. > read more
The ListView Control
Published on 2011-06-14 09:33:43
This lesson shows you how to use the ListView control which shows a list of items in different types of views. > read more
Simple Calculator
Published on 2011-06-09 02:26:25
This tutorial guides you to the creation of a simple math calculator using C# and Windows Forms. > read more
Updating Records: Disconnected Approach
Published on 2011-06-06 04:22:47
This lesson shows you the disconnected way of searching and updating records using the DataSet, DataAdapter, and CommandBuilder classes. > read more
Updating Records: Connected Approach
Published on 2011-06-06 02:54:23
This lesson guides you to the creation of an application that can search a specified row and allows you to edit its fields. > read more
Deleting Records: Disconnected Approach
Published on 2011-06-05 02:01:14
This lesson shows you how to delete a record from a database table using the DataSet, DataAdapter, and CommandBuilder classes. > read more
Deleting Records: Connected Approach
Published on 2011-06-05 00:52:16
This lesson demonstrates how to delete a record from a database table using the connected approach. > read more
Inserting Records: Disconnected Approach
Published on 2011-06-04 07:35:41
This lesson shows another way of adding or inserting records to the table using the DataAdapter, DataSet, and CommandBuilder classes. > read more
Inserting Records: Connected Approach
Published on 2011-06-04 06:11:46
This lesson demonstrates how to add or insert new records a database table using the connected approach. > read more
Querying a Database: Disconnected Approach
Published on 2011-06-04 01:58:48
This lesson shows you how to query results from a database using the DataSet and DataAdapter classes. > read more
Querying a Database: Connected Approach
Published on 2011-06-01 07:25:11
This tutorial shows you the connected approach of querying data from a data source using the DataReader class. > read more
Connecting to a Database Through Code
Published on 2011-06-01 02:56:48
This is an introduction to a series of lessons discussing how to connect to a database using the ADO.NET classes of .NET framework. > read more
Connecting to a Database with Visual Studio Tools
Published on 2011-06-01 01:05:00
This lesson shows you how to use Visual Studio's great tools to create a connection to a database and autogenerate the codes that are required to do it. > read more
Creating a Sample Database and Table
Published on 2011-06-01 01:04:27
This lesson shows you two ways of creating a sample database and table. Using sqlcmd Utility and using the tools of SQL Server Management Studio. > read more
The DataAdapter Class
Published on 2011-05-31 22:16:44
This lesson introduces the DataAdapter classes which serves as a bridge between the data source and your application. > read more
The DataSet Class
Published on 2011-05-31 08:36:24
This lesson observes the DataSet class which is a mini database in the memory containing one or more DataTables. > read more
Installing SQL Server 2008 Express
Published on 2011-05-30 03:24:22
This tutorial shows you a step by step guide on downloading and installing Microsoft SQL Server 2008 R2 Express. > read more
Converting Negative Numbers to Binary
Published on 2011-05-29 22:14:16
This lesson shows you how to convert negative numbers to binary using Two's Complement Notation. > read more
Binary to Decimal Conversion
Published on 2011-05-29 21:42:04
This lesson shows a quick explanation of how to convert binary values to their decimal equivalent. > read more
Decimal to Binary Conversion
Published on 2011-05-29 20:53:06
This lesson shows you how to convert decimal numbers to their binary equivalent. > read more
Validation Using Regular Expressions
Published on 2011-05-29 19:44:27
This tutorial shows you one simple way of validating errors using regular expressions and the Regex and StringBuilder classes. > read more
Operator Precedence Chart
Published on 2011-05-27 09:10:16
This page shows you the full operator precedence chart containing all the operators and their corresponding level of precedence. > read more
Bitwise and Bitshift Operators
Published on 2011-05-27 08:21:58
This lesson demonstrates the use of bitwise and bitshift operators which involves every single bit of a number of value. > read more
Logical Operators
Published on 2011-05-26 23:02:03
This lesson shows you the three basic logical operators used for comparing boolean values or expressions. > read more
Modifying Fonts (An Example)
Published on 2011-05-26 09:08:26
This tutorial guides you on creating an application that demonstrates how you can modify different font properties such as family, size, color, and style. > read more
Using Fonts
Published on 2011-05-25 08:08:28
This lesson shows how to create or modify an existing font that a control or visual component uses by using the System.Drawing.Font class. > read more
Modifying Database with LINQ to SQL
Published on 2011-05-08 04:26:01
This lesson provides you with an example on how to add, delete, and update records by using different methods offered by the generated LINQ to SQL classes. > read more
Querying a Database with LINQ to SQL
Published on 2011-05-07 01:52:40
This lesson is the first example of using LINQ to SQL and simply queries a database and retrieves the records from one of its tables. > read more
LINQ to SQL
Published on 2011-05-06 22:38:24
This is an introduction to LINQ to SQL will is an easier and faster way of connecting to SQL Server databases and using them in your program with LINQ queries. > read more
LINQ Aggregate Methods
Published on 2011-05-04 07:24:04
LINQ offers aggregate methods which are very useful methods for obtaining aggregate results of value from a collection or array. > read more
More LINQ Examples
Published on 2011-05-04 05:40:13
This lesson shows you some more examples of LINQ queries to make you more familiar with the different techniques of querying data. > read more
Ordering Results in LINQ
Published on 2011-05-02 07:49:54
This lesson shows you how to order or sort the results of a LINQ query using a specified key or keys and in ascending or descending order. > read more
Filtering Results in LINQ
Published on 2011-05-01 08:12:29
This lesson shows you how you can filter the results of a LINQ query using the where keyword or the Where method. > read more
LINQ Selection Techniques
Published on 2011-05-01 05:12:17
This lesson shows you different techniques for selecting data from different data sources using the select statement or the Select method. > read more
Language Integrated Query (LINQ)
Published on 2011-04-30 02:38:45
This is an introductory lesson to Language Integrated Query (LINQ) which allows you to easily query objects from different data source using C# syntax. > read more
Keyboard Events
Published on 2011-04-16 03:14:36
This lesson discusses how to handle events triggered by the keyboard such as KeyPress, KeyDown, and the KeyUp events. > read more
Mouse Events
Published on 2011-04-15 01:47:05
This lesson takes a look at some events related to mouse activities such as clicking and moving the mouse wheel. > read more
The ToolTip Control
Published on 2011-04-14 21:51:02
This lesson shows how to use the ToolTip control which is a small window containing text that pops out when you mouse over a control. > read more
The RichTextBox Control
Published on 2011-04-14 09:21:32
The RichTextBox control is a more advanced version of the TextBox control. It allows you to format different parts of the text usign RTF. > read more
Dynamically Adding Controls
Published on 2011-04-13 08:23:58
This tutorial shows you how to add controls dynamically at runtime. You will learn how controls are actually created and added to the form programmatically. > read more
The TabControl
Published on 2011-04-13 03:59:25
The TabControl allows you to separate your form into different categories or sections and access them via their individual tabs. > read more
The DateTimePicker Control
Published on 2011-04-08 09:07:10
This lesson discusses the DateTimePicker control which is used to pick a single date. > read more
Reading from an XML File
Published on 2011-04-08 03:03:30
This tutorial shows you how to read records from an XML file using the classes offered by XML DOM. > read more
Writing to an XML File
Published on 2011-04-08 00:12:40
This tutorial creates an application that allows you to input details and write it to an XML file with the help of .NET's XML DOM classes. > read more
XML Document Object Model
Published on 2011-04-07 22:27:18
This lesson takes a look at some of the classes offered by .NET's XML DOM which is a collection of classes that represents different components of an XML document. > read more
Extensible Markup Language
Published on 2011-04-07 20:20:06
Extensible Markup Language or XML is a markup language used for storing data in a nice structured manner. > read more
The MonthCalendar Control
Published on 2011-03-30 07:08:17
The MonthCalendar control shows a calendar containing a month and its dates. It is used to select dates or range of dates. > read more
The SaveFileDialog Control
Published on 2011-03-30 04:14:15
This tutorial discusses the SaveFileDialog control which is used to specify a location and file name of the file that will be written with data. > read more
The OpenFileDialog Control
Published on 2011-03-30 00:59:45
This tutorial discuesses the OpenFileDialog control which allows you to browse for a file and open it. > read more
The FolderBrowserDialog Control
Published on 2011-03-29 20:21:49
The FolderBrowserDialog control allows you to pick a path or folder using a dialog and a tree view. > read more
The FontDialog Control
Published on 2011-03-29 08:02:52
The FontDialog control is used to choose and modify font properties and to change fonts of other controls. > read more
The ColorDialog Control
Published on 2011-03-29 06:51:22
This tutorial demonstrates how to use the ColorDialog control which is a dialog used for picking different colors. > read more
Dialogs
Published on 2011-03-29 06:49:46
This lesson introduces you to dialogs which are windows that has useful purposes such as saving or opening files. > read more
Adding Menus to Your Form
Published on 2011-03-29 02:08:57
This tutorial shows you how to add menus to your form using the MenuStrip control. > read more
Naming Your Controls
Published on 2011-03-28 05:24:34
This lesson encourages you to name your control so it will be easier for you to work with them in code. > read more
Separating Design and Functionality
Published on 2011-03-27 06:51:51
This lesson discusses about Visual Studio's feature of separating the form's class into two files to allow you to concentrate on functionality and leave Visual Studio in generating the initialization and design codes. > read more
Event Handling
Published on 2011-03-27 01:42:41
This lesson is all about event handling which makes the form respond to certain events given by either the user or the computer. > read more
Designing Windows Forms
Published on 2011-03-25 07:45:58
This tutorial shows you some techniques to make your form look more appealing to the user by making proper alignments, spacing, and sizes of controls. > read more
The Windows Form
Published on 2011-03-24 09:48:11
This lesson shows you the properties, methods, and events that the form can use. > read more
Visual Programming
Published on 2011-03-24 08:39:03
We now start the world of Visual Programming by giving you an introduction to Graphical User Interfaces, Windows Forms and controls, and Event Handling. > read more
Viewing Values of Variables
Published on 2011-03-24 06:51:14
This lesson shows you how to use the tools in Visual Studio to view the values of variables and objects, which helps a lot in finding the cause of bugs. > read more
Stepping Through Your Code
Published on 2011-03-24 02:28:59
This lesson teaches how you can step through your code line by line which helps a lot when debugging your code. > read more
Breakpoints
Published on 2011-03-24 00:51:29
This lesson shows you how to add and use breakpoints to your program which is a great tool for debugging and finding logic errors and exceptions. > read more
Unhandled Exceptions
Published on 2011-03-23 21:27:10
This lesson takes a look at viewing unhandled exceptions during Debug or Non-Debug modes. > read more
Troubleshooting Errors
Published on 2011-03-23 07:28:38
This lesson discusses the different types of errors you may encounter when creating programs. This lesson also takes a look at the features of the Error List window. > read more
Using the IntelliSense
Published on 2011-03-23 06:25:26
This lesson demonstrates one of the greatest features of Visual Studio and Visual C# Express, the intelligent IntelliSense. > read more
Changing the Layout of Visual C# Express
Published on 2011-03-23 00:01:11
This lesson teaches you how to change or modify the layout of windows in the Visual C# Express 2010 IDE. > read more
Exploring Visual C# Express 2010
Published on 2011-03-22 22:42:39
This lesson discusses more part of the Visual C# Express IDE including the Designer, Solution Explorer, and Properties Window. > read more
Welcome to Visual C# Express 2010
Published on 2011-03-22 21:03:29
This lesson shows you some parts of the Visual C# Express 2010 such as the Menu Bar, Toolbars and the Start Page. > read more
Registering Visual C# Express 2010
Published on 2011-03-22 20:17:23
This lesson shows step by step instructions on how to obtain a registration key which is required to register your copy of Visual C# Express 2010. > read more
Installing Visual C# Express 2010
Published on 2011-03-22 18:25:28
This lesson shows the step by step guide with screenshots on installing the Visual C# Express 2010 IDE. > read more
Exploring the Visual C# Express Environment
Published on 2011-03-15 07:45:23
This lesson describes the functionality of the different parts of Visual C# Express or Visual Studio. > read more
The LinkLabel Control
Published on 2011-03-13 09:32:23
This lesson will show you the LinkLabel control and how you can use it to link to web pages, directories, or files. > read more
The PictureBox Control
Published on 2011-03-13 07:43:38
This lesson introduces the PictureBox control which allows you to display images on your form. > read more
The NumericUpDown Control
Published on 2011-03-12 06:28:56
This lesson demonstrates the NumericUpDown control which is useful when you want to provide numeric input. > read more
Docking Controls
Published on 2011-03-09 06:40:11
This lesson demonstrates how to dock controls to the edges of the form or its container. > read more
Anchoring Controls
Published on 2011-03-09 03:19:42
This lesson teaches how to anchor controls so that their locations or sizes will adjust whenever you resize the form or the control's container. > read more
Using the TabIndex Property
Published on 2011-03-03 08:00:38
This lesson teaches you how to make your form more user-friendly by taking advantage of the TabIndex property. > read more
The System.Windows.Forms.Control Base Class
Published on 2011-03-02 08:41:21
The System.Windows.Forms.Control class serves as the base class of most of the controls and exposes several useful properties. > read more
The CheckedListBox Control
Published on 2011-03-02 08:07:26
This lesson demonstrates the CheckedListBox control which is a list of items represented by check boxes. > read more
The ListBox Control
Published on 2011-03-02 06:17:55
This lesson introduces the ListBox control which is used to show a list of items. > read more
Querying Data From an Access Database
Published on 2011-02-27 00:50:21
This lesson shows you how to query data from an Access 2007 database and display the data to text boxes in a windows form. > read more
Connecting to an Access Database
Published on 2011-02-27 00:47:03
The first part of the tutorial on how to connect to and retrieve data from an Access 2007 database. > read more
Date Difference Calculator
Published on 2011-02-02 06:37:06
This tutorial guides you to creating a calculator that determines the difference in time of two dates. > read more
Reading from a Text File
Published on 2011-02-01 23:29:36
This lesson shows a way of plain text data from a text file using the FileStream and StreamReader classes. > read more
Writing to a Text File
Published on 2011-02-01 20:16:15
This lesson shows you one way of writing data to a text file by using the FileStream and StreamWriter classes. > read more
The System.IO.Path Class
Published on 2011-02-01 18:02:10
The System.IO.Path class is a great utility class used for combining, analyzing, and manipulating paths. > read more
The System.IO.DirectoryInfo Class
Published on 2011-01-16 08:05:13
This lesson shows some of the methods and properties of the System.IO.DirectoryInfo class which represents a directory in your disk. > read more
The System.IO.Directory Class
Published on 2011-01-15 06:43:10
This lesson discusses the methods of the System.IO.Directory class which is used when dealing with directory-related tasks. > read more
The System.IO.FileInfo Class
Published on 2011-01-15 02:34:57
This lesson describes the System.IO.FileInfo class which is used to manipulate a file and check its attributes. > read more
The System.IO.File Class
Published on 2011-01-15 00:41:58
This lesson takes a look at the methods provided by the System.IO.File class which allows you to create, delete, copy, and move a file. > read more
File System
Published on 2011-01-14 21:42:06
.NET Framework offers you a number of classes to read, write, and check the attributes of a file. > read more
The TextBox Control
Published on 2011-01-09 08:08:32
This lesson shows how to use the TextBox control which is the most basic control for getting input from user. > read more
Disconnected Data Access
Published on 2011-01-09 01:58:26
This lesson shows you how to perform disconnected data access by using the DataAdapter and DataSet classes. > read more
Adding Parameters to Commands
Published on 2010-12-28 00:46:55
This lesson shows you how to add parameters to your commands by using the Parameter object and the Parameters property of the Command class. > read more
The DataReader Class
Published on 2010-12-27 19:52:47
This lesson demonstrates the capabilities of the DataReader which is used to read records from the database. > read more
The Command Class
Published on 2010-12-27 01:08:05
The command class is used to execute SQL statements, command procedures or any data source specific commands. > read more
The Connection Class
Published on 2010-12-26 20:51:31
This lesson discusses the Connection classes found in each of the data providers of ADO.NET. > read more
Random Number Generation
Published on 2010-12-25 02:01:31
This lesson shows you how to generate random numbers using the Next method of the System.Random class. > read more
The System.Math Class
Published on 2010-12-25 00:22:29
This lesson shows some method of the System.Math class that you can use for mathematical computations. > read more
Connection Strings
Published on 2010-12-24 20:31:15
This lesson describes connection strings and how to create them for use when connecting to a data source. > read more
Data Providers
Published on 2010-12-24 06:09:21
This lesson shows you the different data providers provided by the .NET Framework for accessing different types of databases. > read more
SQL Basics
Published on 2010-12-24 02:50:53
This lesson teaches you some basic SQL that you will need when accessing a database using ADO.NET. > read more
Databases and ADO.NET
Published on 2010-12-24 00:25:29
We will be looking at the meaning of databases, tables, relational database, DBMS, SQL, ADO.NET. > read more