Results for "Volume: 4_2005-2006"
This Program will make colorful fireworks. The code is kinda short, but it looks so cool. I've included many directions/explanations that will help you change the input value.
Cool AIR-X Arcade game. Final Battle Edition. Shoot down enemy aircraft before they shoot you down. Fast transparent sprite animation over moving background. Fast collision detection.
A little JS game with currently 25 levels.
gridClass is a read-only grid comprised of text box arrays. I use it to display information from an Access database and it was developed after expriencing total frustration with the grid provided with VB6. It could be modified to be updatable and I may find time at a future date to do that.
The beginnings of a Light-Weight Employee Management System! Shows how to use the TableLayoutPanel, BackgroundWorker, TableAdapter, BindingSource, How to perform filtering on a typed dataset as well as searching it, Delegates, Custom Events, Pass Data Between Forms, Access and use custom Application Settings, And how to create nice Login Dialog! Please post any comments you may have and I will do my best to answer them.
netspeed provides estimated TCP/UDP "usable data" bandwidth capabilities between hosts (does not include bandwidth usage from headers, lower layers). Run netspeed in listen mode on one host, and talk mode on another to gather information regarding bandwidth utilization. Used winsock 2.2 for network communication. Client / server tutorial.
Step by step Insctructions on how to create an ActiveX DLL File
Introduction to C++ STL vector - a C++ standard class that acts similarily to a C array. No 3rd party classes, this is all standard among every standards compliant C++ compiler! The major benefit to the vector is that it is dynamic in size. You can add to it, remove from it, and not have to worry about handling the memory yourself. Very useful.
Gets the current screen resolution and displays it in a MsgBox in 1 line of code.
G-Controls is a set of completely customizable controls that includes a form, a button, and a TextBox. The form's new properties are: BorderColor, BorderSize, GradientColor1, GradientColor2, GradientStyle, HeadButtonColor, HeadButtonOverColor, HeadButtonFont, HeadButtonSize, IconImage, IconPosition, TextForeColor, TextDepthColor, TextFont, and TitleHeight. The buttons new properties are BorderColor, BorderSize, ButtonStyle, EdgeColor, EdgeColorEnabled, EdgeSize, GradientColor1, GradientColor2, and GradientStyle. The TextBox's new properties are: BorderSize, BorderColor, PaddingLeft, and PaddingTop. If people enjoy these controls (i.e. 5 star votes), they will continue to be updated, so please vote!
List all apps running (Including windows stuff!) And kill the processes.. This is a modification of the killapp project. Be careful not to kill stuff like explorer as you will need to restart machine... Fun all the same
Tutorial to How to Clear the screen. in Basic or Dos its CLS but its Something else in C Click to find out
Ever wanted to fade one image into another image? Like fade a picture of yourself into a picture of a goat? If so, check this example out. It shows you how to fade one image frame by frame into another image.
This is a class called urand I wrote to generate random numbers with a perfectly even distribution. If, for example, you want a sequence of 12 random numbers from 0 to 5, this random number generator might put out 3 4 1 0 5 2 5 0 1 4 2 3 whereas a traditional random number generator might output 5 5 0 1 0 4 2 5 3 0 1 3.
Transparent sprite animation over background. A collision detection (COLLIDE.BAS) module/engine which will make collision detection more easier.
This code is an example of how to use various functions contained within the Word Application object. To use this code you must first set a reference to the word libary then declare a word application object. This code shows how to use the search/replace functions, how to bold items, how to do a "Save As" from the code and how to insert lines. There are also a few miscellanous methods such as how to tell if a file exists and how to kill it. This piece of code was origonally written as part of a class module and was incorporated into a dll to be used by other application developers that I was working with. I have a few other examples from the class if anyone is interested, please drop me a line. I hope that this saves someone some time in using word. I have not found too many good books or code examples that explain how to use word as an object.
I had a batch file that shut down my computer after my antivirus scan. The problem was I couldn't abort the shutdown. This little program solves the problem.
This example shows how to create a bouncing ball on your form, also let's you manipulate the kenetic loss and gravity settings. I found a simpler version of this online created in Java, it looked interesting so I converted it and improved on it. The formula still has a few bugs in it that you can read about in the project files, good source to learn how physics and C++ can interact, if you use improve this even more please pass along to others.
Goldpad is a integrated plain text editor. Features: Complete user friendly file system, custom toolbars, 10 line specific edit commands: Select, Duplicate, Delete, Uppercase, Lowercase, Insert Bullet or Numbering, Sort Lines Ascending or Descending, and Compress, increase or decrease indent, regex find and replace integrated panel that uses a unique replace all that will work on rtf, another always there sliding recent files panel that is built around xml, and other features that make goldpad a reliable plain text editor. Fixed all bugs with the recent files panel and other annoyances. Relies on no external source code or registry access. Code is commented and sorted into regions. Final version 1.5 in Nighthawk theme.
Step by step instructions to create an ActiveX DLL ! In this lesson we will create a DLL to compact a Database !