Imports

Submitted by GeePee on
Introduction: This tutorial will teach you how to use Imports in Java. What are imports? Imports are very important... see what I did there?... *sigh* Most programming languages, including Java, are very 'lazy' and will only get the information for classes it knows it will need or is directly referenced.

ArrayLists

Submitted by GeePee on
Introduction: Welcome! This tutorial will teach you about how to create and use ArrayLists. What are ArrayLists? ArrayLists, normally referred to as just Arrays, is a type which can contain multiple items. For example; a shopping list could be referred to as an array or shopping items. ArrayLists must be made up of one type only. You are unable to mix and match different types within one ArrayList such as String and Integer.

ASP.NET Assignments

Submitted by sba stuff on
My ASP.NET assignments in C#. Through These Assignments You Will Learn; (Click And Open Website Not A Project. And Give Folder Path) 1: Insert, Update and Delete Record. (SQL Server 2008 R2) 2: Using Google API. 3: Uploading Image. 4: Swapping Images 5: Toggling 6: Threads (CLOCK) 7: Session Handling. 8: Retrieval Of Records From Database and Show in Data Grid View. 9: XML READING And Writing. 10

Chat And Call Application With Encryption and Decryption

Submitted by sba stuff on
I have created chat and call application with encryption and decryption for my university semester project. The application code Is too simple. First, you have to enter your name and then click ok to proceed to chat form. After that, enter IP and Port of your friend and key you use for encryption and decryption. After that click CONNECT. Now start chatting. Remember that keys must be same on

For Loops

Submitted by GeePee on
Introduction: This page will teach you about the For loop in Java. What is the for loop? The for loop is very useful in many programming languages. It is a simple way to re-run a certain script or part of code multiple times depending on integer values. How do I create a for loop? First you will need to decide five things to create your for loop: 1. The variable name, this will be the reference of integer within the loop. 2. The starting value. 3. The ending value. 4. What will happen for each time the script loops. 5.

Empty Recycle Bin using VB.NET

Submitted by donbermoy on
This tutorial will teach you how to create a program that can delete all the files in the Recycle Bin and Empty it using the VB.NET language. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2. Next, add only one Button named Button1 and labeled it as "Empty Bin".