File Handling in C

Submitted by moazkhan on

File Handling in C

In this part you will learn: 1. Filling 2. C syntax 3. Showing output In this tutorial I will teach you about the concept of Filing in C. You will learn how to read from a file and how to write in a file. What is Filing? In C language we use filing to keep several records. We build certain programs to write our data in the file and to read our data from the file.

Loan Calculator

Submitted by DrShell on
Loan Calculator is designed to determine the fourth value of a loans four values (Term, Payment, Principle or Interest). Included is a Module called "Registry". This module was downloaded from another site and modified by me (see comments) for access to the System Registry.

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.