Results for "Volume: 1_2002"
Under Win32 , get memory information, - total physycal memory, free physycal memory and free system resources (like in the shell about dialog, using the rsrc32.dll)
This is in continuation of tutorials I am writing about C. Todays topic is Character and Strings. Experts please skip this tutorials.
Unzip the file and open the text document to view the tutorial on Arrays for Beginners!
This isn't much, but it shows you how to use C++ to make CGI programs. NOTE: Please read "Explanations/Assumptions" for instructions on how to use this.
it is a code that allows the use of mouse in text maode. i found many codes that used mouse in graphical mode but none for text mode. this is my way of solving it. feel free to vote for me
its a game that uses classes. a fly moves around the screen and you have to remeber where it was last seen. the difficulty inccreases progressively.
File compression is useful when transmitting very large files.Ascii text files encode each chracter by an 8 bit fixed lenght code.Such files can often be significantly compressed if instead of this fixed lenght code one uses a variable lenght code where the more frequently occuring characters have short codes and the less frequently occuring characters have longer codes.For example ,a large data file might have mostly digit,space and new-line characters in it.If short(less than 8 bit) codes are used for these then the file would be significantly compressed.A Lisp file might have many left and right parentheses in it.Using short codes for these would compress the file.I used Huffman codes to compress the file .I worked real hard on it and it is long program Please declare me the winner of this new year.
This is a DLL to be used with VB. It is the C companion to the VB BinWorks II program posted there on Jan. 1, 2001. Does BYTE, INT & LONG to bin, hex etc. Mostly shows C programmers how to write DLLs and for VB programmers they can check that I didn't build in any VIRUS code. The accompanying VB code can be found in the psc-VB section.
My code Merges two Files together and puts them into a single file.It is a windows proggie but the code will also work under dos or other os's.PLEASE VOTE!
This code is for those people who want to open up folders/directories as separate windows, as compared to the alternative fileboxes.
It's an example of using a few controls on a dialog box. The program doesn't really do anything useful.
This program will help u get any windows handle and then let you change the window's title through that handle. Gives u a good learning of how to have fun with handles and how to use them..
A cool and easy Alarm clock, that lets you set a personalized message and uses an API function to call alarm wave file. An Excellent way to learn how timers and controls work, and how to work with the mmsystem.h header file for sound playing functions!
Converts a name or word string to a four digit code following Soundex rules. Similar code is used by geniological groups and the US Census Bureau for looking up names by phonetic sound. For example, the name Darrell can be spelled many different ways. Regardles of how you spell it, (Daryl, Derrel, Darel, etc.) the Soundex code is always D640. Therefore, you assign a field in your database to the Soundex code and then query the database using the code, all instances of Darrell regarless of spelling will be returned. Refer to the code comment section for more information.
Register a system wide hot key
This will extract words from a file and keep track how many times word occurs.After inputting all the words in decending order of their frequency and output the words and thier frequency.This also do rehashing ,every time program does a insertion it check to see whether the table is more than 50% full after the insertion and if it is ,it reallocate a table of approximately twice the table size as before.Each time it rehash it print out the table-size the average number of probes and max number of probes for that table.It uses Quick Sort.
When you are creating a sort of Setup program, etc. sometimes you want to replace some system files or delete some other files, however if they are in use by Windows at the time, you can't. You need to update the files after rebooting, you know that message that says "Please wait while windows updates your configuration files", the utility that does this is called Wininit, and here's how to use it! I've included a small example that should work under Win9x/ME/NT/2K/XP.
The following code will add great text effect to your applications. It changes the spacing between the characters. By changing spaces, the characters move on the screen.
This is just a crappy tic tac toe program using mfc i did for a c++ class.
This code password protects a program and has an example of it by protecting an OpenGL window. It can be used for protecting simple functions or actions also.