Voter's ID Finder for Supreme Student Government using Visual basic.Net

Submitted by joken on
This time, I'm going to show you how to create a "Voter's ID finder" for Supreme Student Government. The system also has a load of all data from the database and you can also search for specific student by using the quick search and display the result to the datagrid. To start building this project, you need to add two textbox, three buttons, three label and a datagridview and last a timer.

Add Data to MySql Using Jquery UI Dialog Box

Submitted by TPOAN on
Dear visitors, I would like to share all of you with my wonder technical of using Jquery Dialog box to add data and I really appreciated with Sourcecodester.com that allow us to share it as global. I am IT Officer of NCDD Project in Cambodia. If you have any problem, please contact me as [email protected] or via my facebook account http://www.facebook.com/TouchPoan Thanks, POAN

How to Create a Slot Machine Game [Visual Basic]

Submitted by Yorkiebar on
Introduction: Welcome to a tutorial on how to create a Slot Machine type game in Visual Basic. Steps of Creation: Step 1: First we need a form. I have mine set out as the following... Textbox5 = Current Money Textbox4 = Current Bid Textbox1 = Slot 1 Textbox2 = Slot 2 Textbox3 = Slot 3 Label4 = Status Button1 = Spin Step 2: The first bit of code we want is to create our myMoney and myBid Integers

Advanced C# Calculator and Converter

Submitted by error505 on
iCalculator is advance C# calculator with converter to volume, mass, speed, area and many more. There is more than 100 math formulas included. For splash screen i used DevExpress and also for formulas slide show, if you can't run it install devexpress to your visual studio or delete splash screen and parts with formulas where i used slideshow. You can download Demo version of this calculator from

How to Create a Local Polling System

Submitted by Yorkiebar on
Introduction: Welcome to my tutorial on how to create a local polling system in a Visual Basic Application using its Project Settings. Steps of Creation: Step 1: First we need to set our project settings. I have put "str1", "str2" and "str3" to contains the polling string options, "option1", "option2" and "option3" to contain the votes for each option and finally "question" to contain the question

How to Create a Ninja Defuse [Minigame] in Visual Basic

Submitted by Yorkiebar on
Introduction: Welcome to a tutorial on a small game to be made in Visual Basic - Ninja Defuse. A game to guess a randomly generated three digit code before the time runs out. Steps of Creation: Step 1: First we need to create our form with... - Textbox1 - First digit of guessed code - Textbox2 - Second - Textbox3 - Third - Label1 - Information of time - Label2 - Time remaining - Button1 - Begin

How To Create a Stopwatch in Visual Basic

Submitted by Yorkiebar on
Introduction: Welcome to my tutorial on how to create a stopwatch in Visual Basic with lapping system. Steps of Creation: Step 1: So the way this is going to work is we will haev a timer running at a one second interval and each time it runs it will add one to our second count. It will then check our second count to see if it has been one minute and if it has it will add one to our minute count

Fibonacci Series in C

Submitted by davidwachira on
A simple implementation of the Fibonacci number series. The Fibonacci series is formed by adding the latest two numbers to get the next one, starting from 0 and 1: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, ... #include /* C Standard Input and Output Library*/ /*Variable declarations*/ int number_of_terms; int pre_term = 0; int post_term = 1; int next_transition; int loop