Creating A Visual Basic Password Cracker

We can create a password cracking program using Visual Basic. This Visual Basic 6 passwords cracker created by us can generate passwords and compare each of them with the actual password; and if the generated password found to be equal to the actual password, login will be successful. In this program, a timer is inserted into the form and it is used to do a repetitive job of generating the passwords.

To view the full code, read on by following the link below:

http://www.vbtutor.net/VB_Sample/passcrack1.htm

Error Handling in Visual Basic 2012

Error handling is an essential procedure in Visual Basic 2012 programming because it helps make a program error-free. Error-free code not only enables the programs to run smoothly and efficiently, it can also prevent all sorts of problems from happening like program crashes or system hangs.

Errors often occur due to incorrect input from the user. For example, the user might make the mistake of attempting to enter text (string) to a box that is designed to handle only numeric values such as the weight of a person, the computer will not be able to perform arithmetic calculation for text therefore will create an error. These errors are known as synchronous errors.

Read more about error handling in Visual Basic 2012 at:

http://www.vbtutor.net/index.php/visual-basic-2012-lesson-20/

Visual Basic 2010 New Lesson on Database

In lesson 29 and lesson 30 of Visual Basic 2010 Tutorial, you have learned how to connect to a database as well as filling up the table with data in Visual Basic 2010, now you shall learn how to manipulate data in the database. Manipulating data means adding news records, editing records, deleting records, browsing records and more. Learn how to do these jobs in our newest Visual Basic 2010 lesson on database management:

http://www.vbtutor.net/index.php/visual-basic-2010-lesson-31/

Lessons on Database Management in Visual Basic 2010

A database management system typically deals with storing, modifying, and extracting information from a database. It can also add, edit and delete records from the database. However, a DBMS can be very difficult to handle by ordinary people or business men who have no technological backgrounds. Fortunately, we can create user friendly database applications to handle the aforementioned jobs with the DBMS running in the background. One of the best programs that can create such database application is none other than Visual Basic 2010.

Visual Basic 2010 uses ADO.NET to handle databases. ADO.NET is Microsoft’s latest database technology which can works with many other advanced database management system such as Microsoft SQL server.

Read more about database management in our two new lessons in Visual Basic 2010 Tutorial:

http://www.vbtutor.net/index.php/visual-basic-2010-lesson-29/

and

http://www.vbtutor.net/index.php/visual-basic-2010-lesson-30/