Introduction to Object Oriented Programming in C++

Introduction to Object Oriented Programming in C++

In this part you will learn: 1. Why using Object Oriented programming approach? 2. What are Classes 3. Why we use classes 4. What are Access specifiers 5. Basic C++ syntax Why we use Object Oriented programming approach? We use object oriented programming in C++ because the procedural language( language containing all the functions and variables within the main of the program) cannot cope with very large projects like when we have to use several hundred of functions within one program.

Date Calculator using C#

This is a simple tutorial in which we will create a simple Date Calculator program made in C#. On this, it will help you know the dates before and after the present date. For instance, you want to jump into seven days after the present date, the date calculator will automatically calculate it. And you don’t have to count the days anymore, so the user will benefit this kind of program. So, now let's start this tutorial! 1.

Animated Text in C#

Today in C#, I will teach you how to create a program than can have an animated text. With this, you don’t need to drag any Label in the Form. It is because, the codes will be the one to make a text that will be appear in the Form by using the C# language. 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.

How to Create WYSIWYG Editor

This project is an example of WYSIWYG rich text html editor using Javascript. You will see in the code that I used textarea in the body field and replaced it with iframe which I enabled. This project has a capability to change font, font color, font size, font color, align text or images to left, center and right, has an option to make text bold, italic and underlined, create horizontal line

Compute Exponential Number using C#

In this article, i will introduce again some function in C# regarding the Math Functions, this is Math.Pow(). Math.Pow() Function in C# computes a number that has an exponent.It returns a specified number raised to the specified power. 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.

Compute Square Root using Math.Sqrt in C#

In this tutorial, i will introduce another function in C# regarding the Math Functions, the Math.Sqrt(). Math.Sqrt() function provides to compute the square root of a number. 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 two TextBoxes named TextBox1 and TextBox2 then leave it as blank.

Creating an Excel Application in C#

This is a tutorial wherein we will going to create a program that creates an excel application using C#. This tutorial uses Microsoft.Office.Interop.Excel in our Windows Form Application. 1. Let's start with creating a Windows Form Application in C# for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New, and choose Windows Form Application. 2. Insert a Button control named Button1 in the form.

Object Oriented Programming in C++

In this set of tutorial we will learn object oriented programming in c++ . Object Oriented programming helps you develop softwares using a new approach. In this book you will learn the core concepts of object Oriented programming i.e inheritance , polymorphism and composition. We will learn what are these techniques and how to use these techniques as we go through the course. We will also learn about classes and other stuff related to it as we go through this book.

Textbox Validation using Error Provider in C#

Today in C#, I will teach you how to create a program that will validate an inputted textbox using ErrorProvider. In this tutorial, you will know what are the inputs you are going to put in the textbox and it will notify you whatever errors that you might encounter. 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.