Results for "Volume: 7_2009-2012"
Join two or more mp3 files...
A Basic Checkbook Program to track your transactions
Read any directory structure , simple or complex
Reading zip file contents
Creating zip file from any files or folders
Creates an object to read Microsoft Excel spreadsheets. This is a really easy way to get data out of a Microsoft Excel Spreadsheet. Methods allow for getting the data from a worksheet as a 2 diminsional String array or a specific column from a worksheet as a 1 diminsional String array. It really isn't that complex of code - there is a sample program included to show you exactly how to use it!! If you find this useful, then please VOTE for me at the bottom of this page!
Colorizing image
The Circular Linked List class is created from scratch as well as uses its own Node class. It differs from the regular linked list because the last node points to the first node. CLL's are like arrays but have some differences. This is an excellent class for college students learning java.
This will teach you how to connect to a Microsoft Access database. It's also a great overview of JDBC. Once you are connected, you may run any SQL statement that is allowable on Access, such as SELECT, etc. You don't even have to have MS Access installed to run this tutorial - it shows you how to make a blank one without Access!
Convert image to patchy Grayscale
A Must Have StartupModule.bas File. Lots Of Options.
I have presented a few Javascript examples that I have found very useful while designing professional websites. This tutorial is aimed at those who have good knowledge of Javascript. So the examples are not explained in great detail. Only the important parts are highlighted.There are many ways to implement these examples here. The code presented here is neither the shortest nor the most efficient. But it does work satisfactorily.
This program won't allow any other characters in a textbox then numbers and it allows you to use your Backspace key.
Shows you how you can use a progress bar while reading an MS Access database. This example uses two progress bars, one for reading each table, and the other for reading the entire database. Programmed using VB6, if you have a previous version of VB you can add the frm file to a new project (However, I have not tried this myself)
This is a navigational java applet menu that can be placed on a website.
For Begginners!: A friend asked me to help him with his homework, so here is it. This program demonstrates the use of toupper(), isalpha(), how to pass variables across functions, how to read a string from keyboard, how to use a do/while loop, and other little things... Heavily commented, and explained! If you are new to C++, you should see this. All comments are appreciated! .. bye!
This is a cool text chaning color applet. You can type any text and it'll fade the color.
This program demonstrates how to perform accurate pixels collision detection. Most vb games use the Extent collision detection method, which is fast, but not very accurate. This program shows how to detect when the objects touch. It also shows how to use the BltBit function and create memory DC's. Even if you have never tried any of these functions.......it well worth a look.
Scramble the source of any chunk of code, or the entire webpage, using this creative script. The encrypted code will still be interpreted properly by the browser, just difficult for us humans to read. It is recommended that you use this script to encrypt only the part(s) of your webpage that require encryption (ie: a script), rather than the entire page. This helps minimize the chance of any problems.
This is simple example of doubly linked list. You can insert/delete items anywhere in the list.