Introduction to Structures

Submitted by moazkhan on

Introduction to Structures

In this part you will learn: 1. What are Structures 2. How to use structure in Programs 3. C syntax 4. Showing output What are Structures? Just like a simple variable type like int, float etc we can define our own data type so that whenever we make a variable of that type , it contains all the variables as defined by user automatically. Structures can contain multiple variables of different data type under one name. Structures allow us to access different variables by using a single pointer.

Sales Billing System

Submitted by subrata on
This program is made using Vb.net 2010. It is a medicial billing software with login, change user & password, Password recovery, report generation, etc. This is a basic programe & under development. Developer version will be released soon. By this billing software u can do add, edit, delete, update, restricted-login, less stock, out of stock, expired product, search by name or category and many

Show Full Screen Mode in C#

Submitted by donbermoy on
Sometimes, because of exploring complicated codes we often forget the basics and the need of some functions. Take note that in C# there is no property such as show full screen, it is only maximizing the windowsstyle. In this tutorial, i will teach you how to create a program that can view full screen of your interface. Now, let's start this tutorial! 1.

CPU and RAM Meter in C#

Submitted by donbermoy on
This is a simple tutorial that will have a simple CPU and RAM meter by using C#. With this, you will be able to know the usage of your RAM and CPU. And it also calculates the percentage of its performance usage. 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. Add two PerformanceCounters, “pcCPU” and the other one is “pcRAM”.

Get Local Time by Zip Code using C#

Submitted by donbermoy on
Today in C#, I will teach you how to create a program that will get the local time if we input the country's zip code using C#. 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. Add 2 textbox named txtzipcode by inputting zip code and txtlocaltime to display the equivalent local time. Then insert one button named Button1.

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.