Results for "Category: Complete Applications"
The Number Guessing Game will generate a number between 1 and 100. The user will have infinite attempts to guess the number.
Description: This program demonstrates an audio amplifier unit connectable to a disc-man or the computer. This amplifier unit’s volume controllers have been replaced by customized motor driven volumes connected to the PC parallel port. Now you can programmatically mute the volume / bass / treble of the amplifier or design applications that make creative use of this idea.
This is an EASY example of listing files in a directory. I got this example from another post, but i could not get that post to work, so i modified it and made it easy to use. I'm using this in a new program i am working on.
Learn about all file input/output operations (adding, deleting, editing,serching,rename file,copy file) and also array sorting in c++.
This application translates masasm to Perl then shells the perl interperator. Its the same core as the MasAsm C Preproccescor , just changed to output Perl instead of C.
Updated Now Includes a version of MasAsm interperter with a Hash Table. Also includes MasAsm byte code Assembler, and a IDE for you to edit your code and shell the assembler with.
CompressHuff compresses single files using the Huffman compression algorithm. It will compress any text, binary, AVI, MOV or other file.
This is simple program to handle the reservation of rooms and to handle the bills for customers in hotel
This application syncs your computer to a NIST time server. It uses the masterx winsock class and is fully multi-threaded via my own thread class. All of the windows code is pure api. NO MFC.
You might always be wondering how ur windows control ur computer from the very start till the very end .. if you want to work on making ur own operating system this is the place for u .. this project covers a small operating system which is open source .. and it is self explainatory i will also add a tutorial on it soon.. link for the project: https://sourceforge.net/projects/moprsys
Users can draw Simple Digital Logic Gates with this program. The specialty of the program is that the circuits can be drawn, modified and the outputs obtained with the inputs given through the MOUSE. Help, which is provided along with the program, can be invoked with the click on the “?” button.
It is an example of 3D Objects w/Lights and much more, such as Camera Rotation, Light Moving, Keyboard Arrows to move about the screen and etc... You will need GLUT in order to execute program, so you can download GLUT at http://www.xmission.com/~nate/glut/glut-3.7.6-bin.zip If you have any problems please let me know, or if you like the program please vote or leave some feedback. Thank You. - Andrew
It 's as powerful as none of today's tutorial. Just test it with ur own wisedom to judge... Professional choice...
You will see, this is actually two apps using Winsock. The one is the file server and the other is the client. With the client you can specify a file to download from the server. It then downloads the file with a speed between 250 - 360 kb/s depending on your network (I could only test it on a LAN)Other cool thing: Multithreading for multiple connections and when you minimize the server dialog, it jumps to the system tray. The system tray code is not mine though - all credit for that have to go to: Damjan Miholjevich NB:Remember to link to ws2_32.lib.
It logs every keystroke the user types, independent of the application they are using.
This is a simple common dialog with an image preview utility like the one with Photoshop and paint shop pro... This example uses the _PICTURE_ class which I created to help me using different image formats in c++ like the one in VB The class is based upon another one written in MFC which was posted on codeguru I think , but this one is made small and easy with simple APIs..Enjoy
This is a complete application example of using pure win32 API to create windows (NO MFC!). This program simply Hides, Shows, and changes the caption of Windows Media Player. It is very basic, and it is a nice example of Win32 API. Also shows how to add a custom item to the System Menu(See Screen Shot)KEYWORDS: Win32 win32 WIN32 API api Api CreateWindow RegisterClass SetWindowText Show SHOW show HIDE hide Hide WIndow WINDOW window GetDlgItemText FindWindow ShowWindow AppendMenu System Menu SYSTEM system MENU menu Jaime jaime Muscatelli muscatelli
It's a Calender Generator program that generate the all year calender that u want .....
This is a very basic 2 player chess program. I was required to make a graphics program for a computer science class using the CMU Graphics package. While this is an easy to use package, it is limited in it's uses. This program has some inherant limiatations. First, since only jpeg support is available, I had to make twice as many images (since jpeg format does not support transparent pixels). This program will not detect check or checkmate as I did not have time to implement these features. As you will see, there is no undo feature. This could be somewhat easily implemented. The largest error I made was with the way pieces are stored in memory. They reside within a 8 x 8 matrix but have a wrong orientation. This makes it extremely confusing to calculate the ammount of pieces between 2 positions diagonally. Please read the Orientation.txt file for more information on this problem. Lastly, I have implemented a feature that blacks the screen when the window does not have focus. This is part of a somewhat complex system to reduce flickering graphics. When left unchecked, the graphics will flicker at annoying rates.