selectAll Text in Javascript

Submitted by GeePee on
This project will teach you how to create a selectAll text in a div using javascript. With this method, the user can easily copy all of the content on the selected div specially large amount of content. It has only few lines of codes in javascript using execCommand method. Don't forget also to set to true the div contenteditable event. Hope you learn from this.

Progress Monitor in Java

Submitted by donbermoy on
This tutorial will teach you how to create a progress monitor in java. A ProgressMonitor class simply monitors a progress in any operation. Hence, we will not use the JProgressBar component here. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of progressMonitor.java. 2.

No Layout in Java (Absolute Positioning)

Submitted by donbermoy on
This tutorial will teach you how to provide a java swing program without a layout. We will use the keyword null here in the setLayout method and we will do the Absolute Positioning using the setBounds method. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of noLayout.java. 2.

SpringLayout as Layout Manager in Java

Submitted by donbermoy on
This tutorial is about the SpringLayout as Layout Manager in Java. A SpringLayout is a layout by defining constraints betweem the edges of the components. This attaches springs to other components taht lays out the children of its associated container according to a set of constraints. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of springLayout.java. 2.

Shadow Effect on Canvas Element in Javascript

Submitted by GeePee on
This project will teach you how to create a shadow effect on canvas element using javascript. You have the option to set the shadow whether what position you set them in(if the shadow x position is on left side, that is negative number and right side is positive number. The same with y position, if the shadow is on the upper side, that is negative number and bottom is positive number. The positive

Clipping in CSS

Submitted by GeePee on
This project will teach you how to use clip-path property in css. Clipping or clip-path property allows you to display a portion of an image inside the path or a shape. We can create different shape like, rectangle, circle and polygon but I have here an example of circle and polygon. It is easy program. Try it yourself. Hope you learn from this.

Student Information System (Java)

Submitted by donbermoy on
This Student Information System was developed using Java as the Frontend and MS Access Database integration. This was one of the student projects in their java programming subject that i made when I was still a student. This system has all the object components in java such as buttons, textfields, radio button, combobox, list, images, checkbox that you can refer on how to use these components. It