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

Deal Grocer Concept(Firefox Version)

Submitted by jmmaguigad on
After how many months, I've uploaded a code again. If you want to learn about webkit styling, this css and html file would be best to fit in you. See the www.dealgrocer.com, and see it's header. Hope you would appreciate it guys. Comments and Suggestions would be appreciated. If you want to contact me, [email protected] or [email protected]

Advance Computer Shutdown using Visual Basic.Net

Submitted by joken on
In this tutorial we’re going to create a simple application that enable a user to shutdown, restart and log off the computer using visual basic. To do this open visual basic and create a new project and name it as “Shutdown”. Designing the user interface: The user interface in this project looks like as shown below. To do this, we need to add three buttons and change their Text property into “Shutdown”,”Restart” and “Log Off”.