Results for "Volume: C_Volume2"
This JDBC Connection Pool is SELF REGULATING. That is, when you create the pool, you tell it how big to make itself. If, over time, you need more connections than you originally requested in the pool to be opened, the pool will build new ones. These extra connections, if left idle for more than a certain definable time, will be closed down by the pool to be nice to your database. You can access a report from your pool to find out how many connections are in it, how long they have been idle, which ones are being used, and what program is using the used connections. The code is VERY WELL javadoc'd, and it comes with two sample programs to show you exactly how to use it! Please download it and check it out - I'd love for you to rate my code!!
This is pure Win32 API. No MFC!! I also made this program by hand, no Visual C++ tools. Great Learning Example!!!! This program demonstrates the use of Video for Windows (VFW). It displays video from a webcam and can capture video in a .avi file. It also demonstrates the use of regions to make windows of different shapes and implements the save dialog found in the common dialogs library. It is extremely well comented. Please vote if you like it, otherwise, tell me what you think or what could make it better.
This is a nice electronic address-phone book. Is completely designed in graphic mode. With this program you can save, delete and search information of your friends, family and companies. To use this program you have to increase the memory that borland C use, at least 256 Kb. I wrote this program to get the final grade in C programming. This program is written in spanish. Please, vote for this code!!
A Basic Checkbook Program to track your transactions
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!
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!
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.
Sort table data using javascript.
What is it that GPS applications need to be good enough for in-car navigation? Also, how does the process of interpreting GPS data actually work? In this two-part series, I will cover both topics and give you the skills you need to write a commercial-grade GPS application that works with a majority of GPS devices in the industry today.
Sample application/*.sln for beginners and intermediates using OLEDb. Other controls used are ListView, ListBox, and MenuItems. Also uses ArrayList as a collection holder for the entries in the DB. Comes with *.mdb file. Pretty good beginning point for OOD. Complete with Update/Delete/Add/Refresh SQL Commands.