Login and Registration System with Validation

Submitted by jigar787 on
This is simple login and registration system with validation using PHP. The user must register first before logging in on the system. It has also a validation form which corresponds to the requirements of the form. Try it yourself. This is easy and understandable specially to those beginners in this programming language.

How to Create a Custom Command Line program in Visual Basic

Submitted by GeePee on
Introduction: Welcome to my tutorial on how to create a Custom Command Line in Visual Basic using a form design. Steps of Creation: Step 1: First we want to create a form with; listbox1 - to contain program output, textbox1 - to contain user input. Step 2: Next we want to access teh textbox1 keyPress event.

How to Create a Local Password Lock in Visual Basic

Submitted by GeePee on
Introduction: Welcome to my tutorial on how to create a Local Password Lock in Visual Basic. The fact that it's local just means that the password is hardcoded in to the program and can not be changed without editing the source code of the program. Steps of Creation: Step 1: First we want to create a program with; textbox1 - contain password, label1 - to indicate to the user where to input the password, button1 - to check the password. Step 2: Next we want to create a couple of variables.

How to Create a Mouse Auto Clicker in Visual Basic

Submitted by GeePee on
Introduction: Welcome to my tutorial on how to create an Auto Mouse Clicker in Visual Basic. Steps of Creation: Step 1: First lets create a form with; numericupdown1 to contain the amount of times to click, label1 to show the user the numericupdown1 will contain the amount of times to simulate clicks and a button to start the process. Step 2: Now lets make some variables to allow us to simulate clicks.