Results for "Volume: 7_2009-2012"
This code is for those people who want to open up folders/directories as separate windows, as compared to the alternative fileboxes.
This program performs a low-level hook for the keyboard using the Windows API, and provides programmatic interaction with these keys. You can either allow or prevent keys to be processed. This application prevents Alt-Tab, Alt-Esc, Ctrl-Esc, and the Windows key. Ctrl-Alt-Del is still enabled. This is very similar to the "Disable Low Level Keys" provided by MSDN, originally in VC++ 6. This has only been tested on XP Pro.
It's an example of using a few controls on a dialog box. The program doesn't really do anything useful.
This code demonstrates how to use system tray icons. Currently only works with MFC based apps. Look at the source, if you find any bugs, or have any comments, I will try to fix the problem as soon as I can.
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.
Simple video player. A good example for beginners. Can play AVI. MPG, MPEG, not sure about DVD encoded videos. Features include: play, pause, stop, tracking, mute, zoom in and out, and fullscreen. If you like this then please vote.
This is an Outlook Bar. I prefer to call it OutLook-a-like-bar but to not get into "nag nag outlook is a productname" I called it WBar, where the "W" stands for the first letter of my name.
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.
Question: The TClientSocket and TServerSocket components seem to be missing from my installation of Delphi 7?
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 enumerates a list of the logical drive letters recognized by Windows, and displays this list in a message box.
This code read all running process on the system, and detect classname called 'Notepad' (Do you know what is this? :P) Then, it gets the Handle, and post a message for close the app.
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.
my code calculates mortgage and or loan payments
Unlock the mysteries of output buffering with PHP.