How to set your TextBox to Show and Hide Password in the User Registration Form.

Submitted by janobe on
In this turtorial, I will teach you how to set your Textbox to "show" and "hide" Password in the User Rgistration Form by using Visual Basic 2008. This will help you determined the password that you have input in the Textbox when registering in the User Registration Form. So let’s begin: Open the Visual Basic 2008 and create a new Windows Form Application.

How to create a TextBox Programmatically in Visual Basic 2008

Submitted by janobe on
In this turtorial, I will teach you how to create a TextBox programmatically by using Visual Basic 2008. With this, you don’t have to drag any TextBoxes in Form and set the location of it. It will create and set automatically. So let’s begin: First open Visual Basic 2008 and create a new Windows Form Application.

Friend Functions in C++

Submitted by moazkhan on

Friend functions in C++

In this tutorial you will learn: 1. What are friend functions? 2. Why to use friend functions? 3. How to use friend function in a program? 4. Basic C++ syntax What are friend functions? Friend functions are those functions which can access the private as well as the protected data members of the classes. We can make a function friend of two classes so that this function can use the private and protected member of those classes to produce a specific result.

Basic Notepad in Visual Basic .NET

Submitted by Yorkiebar on
Introduction: This tutorial is on how to make a simple Notepad text editor in Visual Basic .NET. Controls: The controls we will need are; Button, button1, Save File Button, button2, Open File Textbox, textbox1, File Contents Imports: Before we begin, you need to import System.IO to allow our program to read and write to/from files.

Church Management System

Submitted by Raj.Sharma on
This Church Management System is developed using Visual Basic.NET and using MS Access 2010 database in the back end. Main Features are: 1. Members Registration 2. Weekly Expenditure Management 3. Income and Expenses Per Department Management 4. Income Envelops Management 5. Advance Records Searching 6. Advance Reports Login Information : Username - admin Password - admin Requirements - Visual

Call Function by String Name in Visual Basic .NET

Submitted by Yorkiebar on
Introduction: This tutorial is on how to run a function using it's reference name as a string in Visual Basic .NET. Built In: Luckily enough, the .NET framework has a built in function which allows an object, string function name, invoke type, and parameters to be called - this function is named 'CallByName'.

Over-riding Functions in C++

Submitted by moazkhan on

Over-riding functions in C++

In this tutorial you will learn: 1. What is over-riding of a function? 2. Why to over-riding a function? 3. How to over-ride a function in a program? 4. Basic C++ syntax What is meant by over-riding a function? By over-riding a function it means that we add some extra functionality in the function which is present in the derived class and that function has the name same as that of the base class function.