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.

How to Zip your File using Java

Submitted by donbermoy on
Today, I will teach you how to create a program that will zip your file using Java. We all know that zip is a popular compression format that also contains one or more files that have been compressed into the ZIP format. So, now let's start this tutorial! 1. Open Notepad. Encode any data in there and save it to the same folder with your java program and named it as READ FIRST.txt (Note: you can

Student Details

Submitted by mevada.bhaumik.1 on
> This is a simple project. > It is add, delete, edit, exit and any other facility in the project. > Then all information save record into database system. > And all student information are save in the database. > Then the use of all student details are given your database. > It is database connectivity related in the project. > Open this project. > And all information is submit and click in save

Online Posting and selling website like OLX.COM

Submitted by ahad.bj on
This is the final project of mine at University. I have been use the PHP language with MySQL database. The PHP language is very flexible, reliable and more efficient for the web development. It's more secure and more consistent. Hope this project will help to the beginners of webdesign student.You can post any product on this site and advertize it for the selling. it's a good and nice site for the

How to Delete Files using Java

Submitted by donbermoy on
In this tutorial, we will create a program that can delete files using Java. We are done with creating files, appending, and reading data inside of a file. So, now let's start this tutorial! 1. Open Notepad. Encode any data in there and save it to the same folder with your java program and named it as data.txt. 2. Open JCreator or NetBeans and make a java program with a file name of deleteFiles