Child_Care Information system

Submitted by Loty4u on
This is a child care management information system I created using VB.NET and Microsoft Access at back end. Feature includes: Add a Motherless baby to the database Search for a particular baby using his/her ID Number Edit/Update information of a baby For more information or additional features, send me mail on [email protected]. Username: Loty Password: lot Enjoy.

RadioButton Control in C#

Submitted by donbermoy on
The RadioButton component lets you force a user to make a single selection from a set of choices. This component must be used in a group of at least two RadioButton instances. Only one member of the group can be selected at any given time. Now, we will create a RadioButtons that when chose it will change the background color of the Form. So, now let's start this tutorial! 1.

View Source of a Website using C#

Submitted by donbermoy on
This is a simple tutorial in which we are going to create a program that views a source of a website using C#. So, now let's start this tutorial! 1. Let's start with creating a Windows Form Application in C# for this tutorial by following the following steps in Microsoft Visual Studio 2010: Go to File, click New Project, and choose Windows Application. 2. Next, add two TextBoxes named TextBox1 for inputting a URL from the site, and TextBox2 for viewing the page source of the site.

Validate Phone Number using C#

Submitted by donbermoy on
Today in C#, I will teach you how to create a program that will validate an inputted phone number using C#. So, 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 2010: Go to File, click New Project, and choose Windows Application. 2. Next, add one TextBox named TextBox1 which will be used to input the phone number.

Flag Waving Using C

Submitted by seenivasanpalanisamy on
This is a simple C program. You can run this program in c compilers. In this program, dda line algorithm is used to plot the flagpole etc. By repeating algorithm in different position of the window, it look like waving in screen. You can enjoy it. Any queries contact me. #include #include #include #include #include void dda(float x1,float y1,float x2,float y2,int z) { float dx,dy,x=x1,y=y1,m; int

Learning 2-Dimentional Arrays

Submitted by moazkhan on

Learning 2-Dimentional Arrays

In this part you will learn: 1. 2D Arrays 2. C syntax 3. Showing output In this tutorial I will teach you about 2D Arrays. We will cover what is a 2D array and how does a 2D array work. What is a 2D Array? In simple words a 2D array is simply and array of array. We have multiple rows and columns in a 2D array. We have learnt previously how we access elements of array by simply accessing the different indexes of array using subscripts.

PRISON MANAGEMENT SYSTEM ONLINE

Submitted by theadmiraleliud on
This system is about prison management system online where we have the following module 1.prisoners records 2. prisoners transfers 3.prisoners officers 4.prisoners officers transfer 5.location of prisons 6.admin module 7.law enforcement module 8.data entry credit to Eliud M aganze follow me on twitter: http://www.twitter.com/eliudprom website http://wwww.eliudpro.com/eliudpro blog: htttp:/

Display MAC Address using Local IP in C#

Submitted by donbermoy on
In this tutorial, i will teach you how to create a program that displays a MAC Address using Local IP in C#. We all know that a MAC (Media Access Control) address is a number that identifies the network adapter(s) installed on your computer. The address is composed of up to 6 pairs of characters, separated by colons. You may need to provide your MAC address to a router in order to successfully connect to a network. There are so many ways to find the MAC Address of your PC.