Results for "Category: Miscellaneous"
Welcome fellow programmers!! This is part one of the course which will show you the basics of programming C++ from scratch using the any platform. If you already know how to use the C++ already, you might want to read later lessons when available. So, lets begin. Found at http://pa.pulze.com/
Learn how to do variables, math and booleans in C++! (from http://pa.pulze.com/)
Welcome fellow programmers to our third lesson in a long series on the road to programming C++. This articles explains do, while, #include, and #define. (from http://pa.pulze.com/)
This is a single dimensional Game of Life. The user inputs coordinates for living cells. Using the rules of the Game of Life the program determines if a cell will live or die. It will calculate for any amount of generations. It was developed in MS Visual C++ and uses an input file.
This class provides encryption/decryption through the CryptoAPI. This is the standard API you can use regardless of the underlying dll used to do the encryption. These dlls are called Cryptographic Service Providers (CSPs) and you get one as standard from Microsoft called "Microsoft Base Cryptographic Provider v1.0" This class uses the standard CSP, but this can be changed by changing the constant SERVICE_PROVIDER There is additional code in this class to ensure that the encrypted values do not contain CR or LF characters so that the result can be written to a file A word of warning: If you are going to use WritePrivateProfileString to write the encrypted value to an ini file, you must write a NULL first to delete the existing entry as it does not clear previous entries when writing binary data. This is a problem if you are overwriting a value with a smaller one.
Discusses some of the easy to fall into C++ pitfalls and ways to avoid them.
Offers advice on whether you must know C before C++ and whether C is preferable over C++ because of overhead.
This is an interperter for a scripting language that I designed. The interpreter and language are completly my own. The code can take a file and add it to the end of an exe that will then automaticaly run it. Please remember that this is still in the works and is NOT a finished product. I am just hopeing for some input and constructive critisism by fellow programmers. Please Leave feedback. I want to know what you think. If you have any problems you can email me at eric256@rocketmail.com or IM me on AOLIM at ericjh256. Thanks for your thoughts! P.S I was updating the code and PC deleted it, this is a second time entry.
This code encrypts any file u want using a bit complement.
This tutorial is supposed to teach you how to do classes, operator overloading, and inheritance. NOTE: You need to have a good knowlege about structures.
couple of ways of moving data between two list boxes.
Using CSS you will be able to say what you want to be printed. Let's say: "What you print is only what you want to be printed"
aspEdit is a program which allows you to edit your website online. You can upload, create, edit and delete files and create and delete folders in a very easy way. This new version comes with a User-Manager to control the users who are allowed to edit your WebSite. aspEdit is a ready to use program, just upload it and start... This is the latest version here on Planet Source-Code, for later versions look on http://saxsucks.go.cc
This code will detect is the user has the flash plug in. And then redirect to a page with flash or one without. NICE!! please vote :)
This code put colors in win32 Console aplication.
This code allows mIRC to display the current song, bitrate, and samplerate of the current song playing in winamp. This code is a dll file and called by mirc to get this information, and can be very usefull in other applications that need this kind of information. This code is also usefull for anyone wanting to gather this type of information from winamp for any type program. Please vote for this program if you like it.
Hello, this is Alexander. Since I finally got an email from someone who liked my previous lesson, I am going to make the second installment. This one will be about variables, and stuff like 'if' statements.
I know that this is probably a let-down, after you learned all about functions, but switch...case is important to know. After all, it can save space with if statements, and it is useful. Besides, I couldn't think of anything else that I wanted to write about!
Welcome to the seventh lesson. This is my first lesson that I will explain classes. However, I will explain more about structures, because they can be useful, and they are a good way to get a feel for how a class works. What are structures? They are a way to store more than one data-type under the same name.
The reason I have placed this tutorial at the end of the list, rather than as an addition to my other lesson is simple, I don't want people who already read that tutorial to miss this!