Arrays in Java

Submitted by GeePee on
An array is an object that holds a fixed number of values of a certain variable type. There are many uses for arrays; they allow programmers to not need to declare a new variable for each value stored. If ten numbers need to be stored (ages, weights, wages, etc.), a single array with ten components may instead be used.

Simple Slider Tab Menu in HTML/CSS and JavaScript

Submitted by alpha_luna on
This is simple tab menu created using HTML/CSS and Javascript. On click to the menu, special effect play and underline slides to the clicked menu. If you are comfortable with the source code, then you can download a zip file with all the codes. Hope this will help you in your future project. Enjoy coding.

Recent Files - Open in VB.NET

Submitted by donbermoy on
This tutorial will teach you how to open the file and the file location of the recent files in vb.net. This is a continuation of my other tutorial in displaying the recent files. 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.

Recent Files - Display in VB.NET

Submitted by donbermoy on
Today, I will teach you how to create a recent files to be displayed in the ListView in VB.NET. 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 one listview named listViewrecentfiles with three columns namely Item name, Date Created, and Name of the file, and one button also named button1checkrecent.

Random Numbers in Java

Submitted by GeePee on
In today's tutorial, we are going to cover how to generate random numbers in Java. Random numbers are used for a wide number of applications. They can be used for random sampling, simulations, generation of keys, lotteries, and games. One of the most common uses for random numbers is in video gaming. The outcomes of many events are determined by a random number generator. One of the simplest applications of random numbers is simulating a dice roll. That is what we will simulate in this application today.

Add, Edit, Delete with data table using PHP/MySQL

Submitted by alpha_luna on
This simple project is created using PHP and it's a database driven using mysql as a database. This project is intended for beginners in PHP. It has a basic PHP code so everyone who is new to this programming language can easily understand and learn. Hope this simple project will help you in your future project.