Number To Words in Java

Submitted by donbermoy on
This tutorial will teach you how to create a program that will convert a number and will become words in java. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of NumberToWords.java. 2. Import the io library as we will need a user input. import java.io.*; 3. Now, we will declare our global variables. We will have variables for the inputting

Logo Applet in Java

Submitted by donbermoy on
This is a sample logo applet programmed in Java programming language. This project will teach you to create applets with the use of graphical methods such as fillRoundRect, drawString, fillPolygon, and many more. This will enhance your knowledge in Java making applets that can run on browsers and has an html tags. For more inquiries and need programmer for your thesis systems in any kind of

Display Image File from SQLite Database in Android

Submitted by donbermoy on
I want to share this source code that will teach you how to display and retrieve an image file that is already retrieved from SQLite Database. This sample app is written in B4A (formerly known as Basic4Android). This source code will also help you in creating database applications in android. Install sampleImage.apk in the Objects folder to run the application. For more inquiries and need programmer for your thesis systems in any kind of programming languages, just contact my number below. Best Regards, Engr.

Airline Reservation System (Java + MS Access)

Submitted by donbermoy on
This is an Airline Reservation System programmed in Java programming language and MS Access as database. Features of the system: - Store Passenger Information - Choose Flight Origin and Destination - Billing - Accommodation - Search, Edit, Update, and Delete of Flight Information Account Information: Username: Don Password: 1234 For more inquiries and need programmer for your thesis systems in any

Calendar Application in Android

Submitted by donbermoy on
This is my sample Calendar Application written in B4A (formerly Basic4Android). This app is useful as resources to your projects and in thesis making. This app can be used for reminders, adding notes to the date, create events, and many more. This is really a useful app when making a concerned event applications. Install MyCalendar.apk to your android phone to run the app. The apk file is on the object folder. For more inquiries and need programmer for your thesis systems in any kind of programming languages, just contact my number below. Best Regards, Engr.

For Loop in Java

Submitted by donbermoy on
This tutorial will teach you how to use for loop in java. A For Loop is used to iterate through a condition a certain amount of times. I used this type of looping when I know how many times a task is to be repeated. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of sampleForLoop.java. 2.

Data Types in Java

Submitted by donbermoy on
This tutorial will teach you how to understand what are the variables in java. A data type refers to the type of data that can be stored in a variable, means that a variable needs a data type to save space in the memory for allocation. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of variables.java. 2. Now, we will initialize variables with their own data types in java. An int data type contains a whole number.