conversion

Kilometer to Miles Converter in Java GUI

Submitted by donbermoy on
In this tutorial, i will teach you how to create a program for converting kilometer to miles in java with GUI. It is necessary for java beginners to undergo and learn this simple program that i have made. Now, let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of kmToMiles.java. 2. Import javax.swing package.

Convert Number to Hexadecimal in VB.NET

Submitted by donbermoy on
In this article, we will create a program that can convert a given number into hexadecimal equivalent. Hexadecimal describes a base-16 number system, that is 0 to 9 and A to F. 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 "Convert".

Binary To Text Conversion in VB.NET

Submitted by donbermoy on
Last day, I had created a tutorial on Text to Binary Conversion. But today, we will have a lecture on how to convert a binary into a text. Here in this tutorial, we will create our own program to create a text to binary conversion. :) So, 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.

Visual Basic Time Converter

Submitted by Yorkiebar on
Introduction: Welcome to a tutorial on a time conversion program in Visual Basic. Steps of Creation: Step 1: First lets make a new form with four textboxes and a button: - Textbox1 : Hours - Textbox2 : Minutes - Textbox3 : Seconds - Textbox4 : Milliseconds - Button1 : Convert Step 2: Now lets make a way to check which textbox was last edited (What to convert from)...

Converting Java Applet to Application

Submitted by mehfuza on
Applets are programs which run on web browser and Application means the stand alone program in a computer. In Java we can convert Applets to Application and Application to Applet. Using this idea we can make any program run as either applet or as an application. Following are the steps for converting applets to Application. Step 1: Change init() method's name to the constructor. Java Applets contains init() method which is used for initializing the applet, this method should be changed to constructor for that class.