|
Access Database Manipulation via JDBC (for Microsoft Access) by Jeff Patterson Language: Javascript
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!
|
Socket Programming Using Java by Karthik Veeramani Language: Javascript
This tutorial will make you understand what sockets are, and will help you to start coding simple networking applications using Java.
|
Complete Java GUI Tutorial - Beginner to Expert! by Donny Nadolny Language: Javascript
Packed with OVER 25 FULLY COMMENTED CODE EXAMPLES this tutorial teaches you everything from how to make a button to advanced event handling. It assumes NO PREVIOUS JAVA KNOWLEDGE! I include a screenshot of all the programs so you know what it should look like. It's divided into two sections - The first to teach you everything about the objects such as buttons, labels, and text fields. The second to teach you how to handle all the events the objects make. In the first part, you will ... (see entry for full description)
|
A Basic Game by John Croucher Language: Javascript
This is a tutorial for anyone who wants to start learning how to program games in Java. I have written it so it can be easy for anyone but it is rather long. If you would like to see this tutorial in its two sections rather than one page please check out my website www.jcroucher.com
|
MAKING GAME APPLETS COMPENDIUM by Lukasz Budryk Language: Javascript
This is the full collection of 7 articles on how to create game applets. It contains everything about applets: applet basics, playing sounds, displaying images, making animations, collsion detections and user inputs(kb & mouse). It contains 10 applet examples with full source and articles which explain everything in an easy way(I hope so). Any questions, suggestions or feedback? email me or write it below. Enjoy it!
|
File Handling and String Manipulation Tutorial by Donny Nadolny Language: Javascript
This tutorial will teach you how to read and write files line by line. It also has the code to many string manipulations such as getting the middle of a string, searching/replacing text, and much more, even how to reverse a string! It also has fully working code to demostrate EVERYTHING! Note: Honest comments and generous votes are appreciated... ;)
|
|
MySQL Database Connectivity with JSP (Windows) by Daniel M. Hendricks Language: Javascript
A tutorial on how to get started with JavaServer pages using Sun's Tomcat web server (a Jakarta variant) and connecting to a MySQL database to retrieve data. Provided as a jumpstart for practicing with real-world applications. Tutorial is intended for users who may have had previous web/database experience but would like to get their feet wet in JSP. (Updated October 04, 2002)
|
Java Database Connectivity by Indee Language: Javascript
This article will highlight the concepts of JDBC with example codes and applet.
if you got any question please feel free to visit my website www.programmers-den.com and ask questions in the relevant forums.
Happy Learning.
|
Password Security by Lewis E. Moten III Language: Javascript
Parses the password field and comes back with a percentage of how secure your password is against a hack attempt.
|
Sexy Right Click Menu by Dustin R Davis Language: Javascript
Want a TRULY CUSTOM right click menu? Check this out! Create a menu that looks like what ever you want.
|
Using Browser BUG to Kill Any Ads. by vivalite Language: Javascript
Use IE3+/NS4+ phrasing bug to stop the script running. It could be very useful when your web-host attach their ads code under your webpage. Just add below code in the end of your webpage then all done! No ads. code can be execute!(Work on both Internet Explorer and Netscape browser)
|
Do you know that you can call Java classes from Visual Basic ?? by foxsermon Language: Javascript
Do you know that you can call Java classes from Visual Basic ??
well, that's not a fair tale anymore, it's possible.
let me guide you through this adventure.
Firts at all, we need a Java class,
Here you will find an example:
Java Code
//**************************************************
public class MyTest {
public int myfunction(int value1, int value2) {
return value1+value2;
}
}
//***************************************************
Compile it
i.e. javac MyTest.java
and when you ... (see entry for full description)
|
|
|