Simple Calendar Using HTML JavaScript

Submitted by alpha_luna on
This simple calendar is created using HTML, and JavaScript. It enables you to navigate the calendar for any month of any year. Use the drop-down menu to select what you want month to execute. Just download the source code and use it to your project. Try it yourself and enjoy coding. Hope this work will help you in your project.

Writing Output to a Text File in Java

Submitted by GeePee on
Many times it is important to write output to a file to be saved. This is commonplace in just about every kind of Java application - from business to games. It allows the users information/status/progress to be saved or recorded for future reference. In order for this to work, the simplest solution is to create a file in the same folder as the Java program. For this example, we are going to create an output file called output.txt.

Simple Countdown Event Using HTML AngularJS

Submitted by alpha_luna on
This is a simple countdown event created using HTML, CSS, and AngularJS. This can be used in advertising an event to any websites. Try it yourself and enjoy coding. You can use it in a different kinds of event. Just download the source code and use it to your project. Hope this work will help you in your future project. For more information, click here.

Simple Contact Form Using HTML JavaScript

Submitted by alpha_luna on
This is simple Contact Form create and design using HTML, CSS, and JavaScript. This is very useful in creating a websites. There's so many things we can do in CSS plus JavaScript in terms of designing a website. Try it yourself and enjoy coding. Just download the source code and use it to your project. Hope this work will help you in your project.

Windows Blend Effect (Transparency) in VB.NET

Submitted by donbermoy on
This tutorial will teach you how to create a blend effect in your windows form or a transparency/opacity of the form using vb.net. This will use "user32" library of our computer system so that it will take effect. 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. Create only a Form in your project. Insert also a Timer on it.

Converting Temperatures in Java

Submitted by GeePee on
This tutorial covers creating a calculator to convert between Celsius (centigrade), Kelvin, and Fahrenheit. The user is first given the choice of which temperature unit they would like to convert from, and then they are given the results of the conversion. When different units are in use, things can get confusing. It is useful to have a calculator on hand for this sort of thing. Luckily, we can make one in Java that is able to do just that.

Two Dimensional Arrays in Java

Submitted by GeePee on
Previously, we covered how to use arrays in Java. If you are unfamiliar with arrays, please read through the first tutorial on arrays here. Two dimensional arrays are used to hold numbers that correspond to one another. One dimensional arrays can be thought of as a collection of variables listed in an indefinite number of rows, but a single column. Two dimensional arrays allow for both indefinite rows and columns.

File Watcher - Allow or Disallow Renaming Files or Folder in VB.NET

Submitted by donbermoy on
This is a continuation of my other yutorial named File Watcher - Allow or Disallow Creating Files or Folder in VB.NET, but in this tutorial it will grant to rename or disallow renaming of files and folder using vb.net. 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.

File Watcher - Allow or Disallow Creating Files or Folder in VB.NET

Submitted by donbermoy on
This tutorial will teach you how to create a program that will use the File Watcher component allowing files or disallow creating files or folder in vb.net. 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 FileSystemWatcher in the form.