CSSG & Department School Voting System

Submitted by cybernick75 on
The system automates the voting system a college school which has several departments. Functions and Features: ADMIN SIDE; -Manages- Course Department Party Position Candidate CSSG Result Department Result VOTING PROCESS SIDE: - security (the student will enter security code to start voting) - CSSG (the student will select the CSSG candidates to vote) - Department (the student will select the

Reverse a Number in Java GUI

Submitted by donbermoy on
In this tutorial, i will going to teach you how to create a program in Java GUI that reverses an inputted number. Now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of reverse.java. 2. Import javax.swing package. Hence we will use a GUI (Graphical User Interface) here like the inputting the number.

Voice Recorder Application in Android

Submitted by donbermoy on
I've been into many experiments in Android until I came up making this app called Voice Recorder Application. This app features to record any audio or voice and will save at your default directory in Android phone as "VoiceRecord.wav". First, click Prepare button to initialize the voice recorder, then tap the Start Button to start recording audio, and if done click the Stop Button to stop the recorder. Install audioRecorder.apk in your Android phone and run it. Hope this application in android helps you! :) Best Regards, Engr. Lyndon R.

DateTime Picker Control Using C#

Submitted by joken on
In this tutorial I’m going to show you how to use a DateTimePicker control in C#. The DateTimepicker control allows the user to select a date and a time and to display the date and time with specified format. To start creating this application, let’s create a new project in C# and we will call it as “Dates”. Then from the toolbox drag a DateTmePicker and four Buttons. The design will look like as shown below. da1 Next, to add functionality to our application double click the “Long” button.

How to Create a Docking Pane Form in VB6.0

Submitted by donbermoy on
Hi. In this tutorial, i will teach you how to create a program that has a docking pane interface in your form. This docking pane interface or tool is one of the functions that i have created mostly in my created projects and systems to beautify forms. Now, let's start this tutorial. 1. First, download first Codejock software in the web and then install it. 2. Go to the components menu and check Xtreme Docking Pane ActiveX Control. output 3. Create an MDI form.

Factorial of a Number using Java GUI

Submitted by donbermoy on
In this tutorial, i will going to teach you how to create a program that computes factorial of a number. We all know that factorial is defined only for natural numbers and it means as the continued product of successive natural numbers from 1 to the number inputted. Now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of factorial.java. 2. Import javax.swing package.