Getting the coordinates of the mouse with OnMouseMove and making something interesting with them.
An introduction in retrieving WMI in C#
This is a short introduction into retrieving WMI information using hard drive serial and model numbers as an example.
Basics of using DataGrid
This tutorial introduces you to the DataGrid control. It tells you about the BoundColumn and shows an example of how to use it.
Using the DateTime object
This tutorial shows you how to use the .NET object DateTime: how to get the current date and time, how to filter the output, check for leap years, find the number of days in a given month, add and subtract time to the current date and time.
Sniffing visitor information
Collecting lots of browser information from the visitor with VB .NET in ASP .NET.
Drawing with C#
A tutorial with examples of how to draw different things on a form using OnPaint.
Google Search using Web Service
Tutorial that shows how to build a C# application that can search the web using Google’s Web Service. With the Google Web APIs service, software developers can query more than 4 billion web pages directly from their own computer programs. Google uses the SOAP and WSDL standards so a developer can program in his or […]
Beep In The PC Speaker
Generate a beep in the PC speaker using C# and an unmanaged call to the Beep() function that is part of the Windows kernel.
Setting up MS SQL Server 2000
This guide will show you how to install the Microsoft SQL Server Desktop Engine 2000A for your localhost server.
What is the difference between #define and const?
While they both serve a similar purpose, #define and const act differently. When using #define the identifier gets replaced by the specified value by the compiler, before the code is turned into binary. This means that the compiler makes the substitution when you compile the application. Take for example: #define number 108 In this case […]