Results for "Volume: 2002VB"
Disable the Taskbar
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.
Screen capture code.
This lesson is one on strings. Strings are really arrays, but there are some different functions that are used for strings, like adding to strings, finding the length of strings, and also of checking to see if strings match. Strings are basically sentences, or words. Like, "This is a string".
This is a slightly more advanced topic than what I have covered so far, but I think that it is useful, and I think it will be useful to many people. File i/o is basically reading, and writing files. This lesson will only cover text files, that is, files that are readable through a text editor, as opposed to binary files(exes for example). It will not cover a great deal, for example, this lesson will not deal with searching files or reading specific data from files. It will merely be concerned with opening, writing, and reading text files. Don't worry though, lesson 11 will cover much more on this topic.
This code was created to properly asign names to columns in a database program I have been writing. an example of how it numbers is as following: A,B,C...Z,AA,AB...ZZ,AAA,AAB... and so on This code uses recursion
C++ is a bunch of small additions to C, and one major addition. This one addition is the object oriented approach. As its name suggests, this deals with objects. This tutorial introduces you to creating objects, or classes.
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!
Hi there! This is Denthor of ASPHYXIA, aka Grant Smith. This training program is aimed at all those budding young demo coders out there. I am assuming that the reader is fairly young, has a bit of basic Std. 6 math under his belt, has done a bit of programming before, probably in BASIC, and wants to learn how to write a demo all of his/her own.
This is a demo project that uses a NOTIFYICONDATA struct and Shell_NotifyIcon() to create an icon for your application in the system tray. I also included a popup menu that is displayed at the cursor's position when the window receives a WM_LBUTTONUP message. I created a new message with ::RegisterWindowMessage, and created a message handling function for it. When messages are sent to the windows' WndProc() function, i took all the messages that were from the icon and sent them to a custom function that decides what to do according to the message. Hope this comes in handy for someone, because i haven't found many other working examples out there. Enjoy
Hi Everyone, I'm Very New At This, I'm Usually Found In The VB Section. This Is My Very FIRST C++ Application! I Just Thought I'd Let You Know How Simple It Is To Make A Sonique (www.sonique.com) Visual Plugin. It's Shows The PCM Waveform Of The Mp3 You Are Playing, And Has A Cool Colour Changing Effect. Please Note That This Code May Be Very Sloppy. It Is Also Un-commented, But If You Ask, I Shall Upload An Annotated Version. (P.S. This Has Only Been Tested On Sonique 1.51.0 , And Pleassseeee Vote And Give Comments.)
These two macros will get/modify the bit in a number according to a position counted from right to left. For example, let's say we had 1101 1111 (223). We would just use my macro to get the 3rd bit from the right which would be a one. We can also modify it to a 0. Or we want to extract the value of the first four bits, all can be done easily!
The classic game of connect 4. Only 2 player play. Uses BGI graphics. Has good visuals.
Piano lets u play do re me... in 4 different tones with 32 keys.It can even RECORD & PLAY your songs.HAS EXCELLENT GRAPHICS(see screenshot). THE 3-D button keys get pressed when played.Very Easy to use.Please Rate It.
This is an alternative system tray implementation for alternative windows shells. This is a stand-alone application with complete source code. If you are developing a new shell and still dont have your system tray module, this is for you. The code shows how explorer shells handles system tray calls from applications.
This program allows you to find a file or a directory in a specified drive (e.g. your hard disk, a floppy, your cd-rom...). It search for it in all the directories you have in that drive. Click Luke to go to my Web Page: other source code available...
The purpose of code is to draw curve on the screen according to x and y points given. (scale for x and y axis is adjustable).
A Polynomial class that defines any polynomial by a default symbol(x) and overloads needed operators to any polynomial operation, the Interpolation class defines most used Numerical Analysis operators like Forward, Backward and Central operators and using them to interpolate points with both Newton Forward and Backward methods
Encrypts files byte by byte by modifying their bits. Try to crack the encryption without reading the source, in maximum encryption mode that is. If you can email me!
Loads general MP3 info such as Bitrate and frequency, ID3v1.1 tag and lyrics v2.0 tag. It also saves ID3v1.1 tags. This project was meant to save lyrics tags also but it was aborted so I could start making games. Check it out. Any comments/questions EMAIL ME! Program uses microsoft common controls and demonstrates the CreateFile function (also ReadFile, WriteFile, and CloseHandle).