Sum of All Even Numbers in VB6

Submitted by donbermoy on
In this article, we will create a program that can compute the sum of all even numbers using Visual Basic 6.0. We will write a Visual Basic program that reads an integer value and displays the sum of all even integers starting from 2 and input value, inclusive. It will display an error message if the input value is less than 2. Now, let's start this tutorial! 1.

Email Validation using VB6

Submitted by donbermoy on
Last month, I had discussed already in vb.net on how to make a program that can validate or determine whether an inputted email address is true or not. Now, i have here a different version of email validation written in VB 6.0. strong>Now, let's start this tutorial! 1.Let's start this tutorial by following the following steps in Microsoft Visual Basic 6.0: Open Microsoft Visual Basic 6.0, click Choose Standard EXE, and click Open. 2.

VB.NET Password Complexity

Submitted by donbermoy on
Strong passwords meet a number of requirements for complexity - including length and character categories - that make passwords more difficult for attackers to determine. Establishing strong password policies for your organization can help prevent attackers from impersonating users and can thereby help prevent the loss, exposure, or corruption of sensitive information. In this tutorial, we will create a program that can determine if the inputted password is complex or not :) Now, let's start this tutorial! 1.

Text Scrolling Up Effect using VB.NET

Submitted by donbermoy on
In this article, we will create a program that has an effect of scrolling up the text. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2. Next, add only one Label named Label1 and labeled it as any text. Add a timer control named Timer1 and have its interval of 30.

PHP RegEx: With Meta Characters

Submitted by ronard on
In our last tutorials regarding ReGex we have some simple pattern of matching. We also use caret (^) For matching at the beginning of the string and (\z) to match at the end of the string. These characters are called Meta Characters and shown below. a. . (Full stop) b. ^ (Carat) c. * (Asterix) d. + (Plus) e. ? (Question Mark) f. { (Opening curly brace) g. [ (Opening brace) h. ] (Closing brace) i.

Remote Shutdown (Network)

Submitted by lester1992 on
Due to laziness (LOL :D), I decided to create a software, that can shutdown, restart and log-off PC inside my network. Groupbox items are the computernames/IP address. The tiring part of this is you need to set the Force Shutdown to Everyone, every computer that you want to remote. How? Run->type secpol.msc ->Local Policies->User Rights Assignment-> Force Shutdown from a remote system. and click

Encrypt and Decrypt a Text using VB6

Submitted by donbermoy on
Last week, we made a program in vb.net that has encryption only in a text. Now in this article, we will create a program in VB6.0 that will encrypt and decrypt a text. Now, let's start this tutorial! 1.Let's start this tutorial by following the following steps in Microsoft Visual Basic 6.0: Open Microsoft Visual Basic 6.0, click Choose Standard EXE, and click Open. 2.Next, add two Buttons named Command1 and labeled it as "Encrypt".

Login using a Text File Database in VB6

Submitted by donbermoy on
In this tutorial, we will going to make a program that has a text file database which will be going to use as our database of the program. Now, let's start this tutorial! 1.Let's start this tutorial by following the following steps in Microsoft Visual Basic 6.0: Open Microsoft Visual Basic 6.0, click Choose Standard EXE, and click Open. 2.Next, add only one Button named cmdOK and labeled it as "OK".