Introduction to Pointers

Submitted by moazkhan on

Introduction to Pointers

In this part you will learn: 1. What are Pointers 2. How to use them in Programs 3. C syntax 4. Showing output What are Pointers? Our computer stores variables in the memory so they can be accessed by the compiler for processsing. The compiler sets aside a memory location with a unique address to store that variable.

Get Links and the Number of Links of a Website in C#

Submitted by donbermoy on
This is a simple tutorial on getting the links and the number of links of a website. With a link, users can navigate to another page, window, or Help topic; display a definition; initiate a command; or choose an option. A link is text or a graphic that indicates that it can be clicked, typically by being displayed using the visited or unvisited link system colors, examples are hyperlinks. 1.

Get List of Words in a TextBox using C#

Submitted by donbermoy on
In this tutorial, we will make a program that can get a list of words in a textbox or I mean retrieving each word one by one. 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 one textbox named TextBox1, button named Button1, and a lisview named ListView1.

Add a Button Control Pragrmatically in C#

Submitted by donbermoy on
Today in C#, we will create a program that will add a button pragmatically in windows form using C#. 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. You don't have to design a button in your form because we will just code to have a button when loading the form. 3.

Functions and Global Variables in C

Submitted by moazkhan on

Functions and Global Variables in C

In this part you will learn: 1. Functions 2. Global Variables 3. C syntax 4. Showing output In this tutorial I will teach you how to use functions and global variables in C. What are Functions? Function provides a way in C programming to group instructions as a single unit and give it a name. Function provides many benefits. Using function, a bigger task is divided into many sub-tasks and each sub-task is solved as a function/module. Furthermore, a function can be used/called repeatedly in C program.

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.