This is the third part and the biggest of the small book named ‘Understanding C++ data types’. This part covers the ‘integer’ data type.
Bubble Sort Algorithm in Java
The bubble sort is notoriously slow, but it’s conceptually the simplest of the sorting algorithms and for that reason is a good beginning for our exploration of sorting techniques.
CD Drive Control
Enumerates all CD-ROM drives and allows them to be opened and closed at the touch of a button.
Selection Sort Algorithm in Java
The selection sort algorithm is slightly better performing than bubble sort, and so we’re going to explain how it works and implement it in Java.
Windows forms programming
Creating forms in C#, and handling them, the object oriented way.
Using server side includes
Demonstrates how to use server side includes in ASP .NET by including User Control files in Web Forms.
Understanding binary
Understanding binary is one of the most important things in programming. Will teach you how to transform from decimal to binary and vice versa.
The matrix class
Manipulating graphic objects using matrices in GDI+. Starts from the basics of matrices.
Connecting to a SQL database from ASP.NET I
This is part I of the tutorial that teaches you how to connect to a SQL database from ASP .NET using SQL Authentication. This part shows you how to set up MSDE for Mixed Mode and how to use Web Data Administrator to create databases and users.
Performing custom validation
Demonstrates how to use custom validation on a form by checking to see if a string in a TextBox is not the same with a string from an array (or database), case in which it displays ‘This name is already taken’.