How to Insert a Text in a Specified Position of JTextArea Component in Java GU

Submitted by donbermoy on
This is a continuation of my other tutorials entitled JTextArea Component in Java GUI and Set Font and Color to Text of JTextArea Component in Java GUI. But in this tutorial, i will teach you how to insert a text in a specified position of JTextArea component using Java GUI. 1.

Math Functions in VB.NET

Submitted by donbermoy on
Today, I will teach you how to create a program that has math functions in Visual Basic.NET. Here you will learn about Abs, Log, Round, Sin, Cos, and Tan Function. 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 two textboxes named txtNum for your inputted number and txtOut for the output.

Sales and Inventory System for Palma Store

Submitted by donbermoy on
This is one of my works before entitled Sales and Inventory System for Palma Store. This is one of the thesis/capstone projects that I have made using Visual Basic 6.0 and SQL Server 2000 as backend/database that I made for a particular school. This system is for a food store establishment. Features of the System: Transaction Sales Adjust Items Return Items Purchase Order Inventory Incoming Items

Lotto Wizard

Submitted by moses vb on
Lotto Wizard is a simple but advanced program which helps to forecast possible lotto winning numbers. It uses randomization / random class to generate the possible winning numbers. You only need to click a button and after 5 second, it will display the numbers. When you click the button, you will see it surffing or mixing the numbners. You are free to use or modify it to meet your needs.

Google Searcher in VB.NET

Submitted by donbermoy on
This is a tutorial in which we will create a program that will input a word using vb.net and it will search in Google. We all know that Google is the biggest search engine, so that's why we will going to use this site. 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.

Basic Polling System in Python

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a simple, hardcoded polling system in Python. Hardcoded? Hardcoded is when something is coded directly in to the program, other terms include; hardcoding and hardcode. I would only recommend harcoding if the amount that needs to be hardcoded is very small (such as only a few options in this polling system). This is similar to the use of loops.

Set Font and Color to Text of JTextArea Component in Java GUI

Submitted by donbermoy on
This is a continuation of my other tutorial entitled JTextArea Component in Java GUI. This tutorial will teach you how to set/select font and color for the JTextArea or JTextField component. 1. First and foremost, Open JCreator or NetBeans and make a java program with a file name of jTextArea.java. When you click the link above, copy first all the code there. import java.awt.*; import javax.swing

StudentTranscript Processing System

Submitted by joken on
The Student Transcript Processing System is a complete system created using PHP/MYSQL and a Twitter Bootstrap Framework. This system has an administrator side has a data entry for student, courses, Grade level, Faculty, Department and Rooms. The system also has an import and export information of student in student module and import for Course and Grade level module. The Student Transcript is

JTextArea Component in Java GUI

Submitted by donbermoy on
This is a tutorial on how to use the JTextArea Component of Java. JTextArea is different from JTextField. Unlike JTextField that will only be used for one line of text, the JTextArea Component can hold more than one line to display text. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of jTextArea.java. 2.