Browse Sections

Windows Programming

Latest Feature Articles


How to Limit Movement of a Windows Games Sprite
The right image improves the look and feel of any Windows based game. However, it is essential that any sprites remain in the correct games area, and don't wander off
Object Oriented Games Programming in VBScript
VBScript is a powerful scripting language and supports object oriented languages. It is, therefore, an excellent learning tool for anyone new to OOP or games programming
Find the Dimensions of a Multidimensional Array
VBScript Ubound d can be used to get the number of elements in a multidimensional array. However, the number of dimensions must be known. A simple function will help
Adding Public and Private Methods to a Class
Methods are a vital part of any class. They enable programmers to use the objects effectively, and for objects to communicate with each other.
Using Multidimensional Arrays with VBScript
A VBScript programmer can use multidimensional arrays in their applications. By using these they organize their data into lists, rectangles or even into a matrix
Calculating Affordable Mortgages with VBScript
A VBScript programmer can quickly produce an application that will calculate the mortgage for any budget, interest rate and repayment period
A Simple VBScript Home Mortgage Calculator
The VBScript programmer can easily add a mortgage calculator to an application. This will calculate the monthly payments due on any compound interest loan
How to Carry Out VBScript File Management
VBScript is a powerful computer programming language. A VBS script file can be used to create, copy and delete files. And by combining those command it can rename a file
How to Program with VBScript in a Perl Script
Today VBScript programmers can become Perl programmers without learning any new code. Well, almost no new code. They will have to learn how to load a module.
Getting Started with Windows Scripting Files
With a Windows Scripting file a programmer no longer has to worry about learning new languages. For example, a VBScript developer can use PerlScript or JScript with ease
Using a Property Let and Get in a VBScript Class
A property in a VBScript class is some much more than just a variable. A programmer can add code to the get and let statements that will control the object's operations
How to Initialise and Terminate a VBScript Class
If a VBScript programmer adds variables to a class, they may need default values.One way to do this is to use subroutines that run when the class is initialized.
Starting Object Oriented Programming in VBScript
For the VBScript programmer object oriented programming is particularly easy. With just a few minutes programming they can develop classes that they can use and reuse
Using GET and POST in a VBScript CGI Web Page
One of the key tasks that any CGI web page must do is to process the GET and POST variables sent from forms. This can be difficult, but not for the VBScript programmer.
How to Use the VBScript Scripting Dictionary
VBScript does not have the associative array (or hash) data type. However, what it does have is the scripting dictionary. If anything, it's even better than a hash.
Professional CGI Web Development with VBScript
CGI (the Common Gateway Interface) is traditionally the domain of languages such as Perl. However, there is no need for the VBScript programmer to set aside their skills
How to Create a Simple VBScript CGI Web Page
VBScript is not normally considered as a cgi programming language. However, with just a little tweeking, it is as easy (if not easier) to use as Perl.
How to Use the MySQL Data Reader
One real advantange to using the Microsoft .NET framework is that the same objects (such as a data reader) can be used in multiple applications using different languages.
How to Access MySQL with C#
C# and MySQL make a very powerful combination, and it's all made possible by using the MySQL .NET connector
How to Add Tabs to a C# Windows Application
A programmer can make Windows forms simpler to use for their users by adding tabs, and this can be easily achieved by using some C# code.
How to Work with Dates and a C# Date Time Picker
The Date Time Picker is an interactive calendar used in many Windows applications, and it canbe programmed by using C# code.
How to Add and Customize a C# Date Time Picker
A Date Time Picker is a visual way of choosing a date in a Windows application. This interactive calendar can added to a form and customized with C#.
Distributing a VBScript Application
VBScript is very easy to distribute. However, to protect the code the programmer may wish to consider creating an installation package with IExpress
Using VBScript to Extract Data from a Web Page
VBScript is Visual Basic's powerful scripting language and can be used, for example, to obtain the contents of a web page and then search it for any important information
How to Use VBScript to Download a Web Page
A web page can be downloaded very easily to a computer by using VBScript and some of the objects built into Microsoft Windows