Load and Display Contents of RTF File in a RichTextBox in C#

Submitted by donbermoy on
In this tutorial, I will teach you how to create a program that will load and display the contents of an RTF File in a RichTextBox using VB.NET. RTF means Rich Text Format and is a text file format used by Microsoft products. RTF files support text style formatting, as well as images within the text. Now, let's start this tutorial! 1.

Get the Number of Occurences of a Text in a ListBox using C#

Submitted by donbermoy on
In this C# tutorial, we will create a program that can determine the most repeated string or text inputted that is displayed in the ListBox. 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.

Get Computer Drive using C#

Submitted by donbermoy on
This is a simple tutorial entitled "Get Computer Drive using C#". Sometimes we have require to get the drives of our computer, but this tutorial gets the list of available drives in ListView control. 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 hava a Complex Password in C#

Submitted by donbermoy on
Today in C#, we will create a program that can determine if the inputted password is complex or not. Strong passwords meet a number of requirements for complexity - including length and character categories - that make passwords more difficult for attackers to determine. Establishing strong password policies for your organization can help prevent attackers from impersonating users and can thereby help prevent the loss, exposure, or corruption of sensitive information. Now, let's start this tutorial! 1.

Introduction to Arrays

Submitted by moazkhan on

Introduction to Arrays

In this part you will learn: 1. Arrays 2. Sorting using arrays 3. Constants 4. Showing output In this tutorial I will teach you how to use arrays. What is an Array ? An array is a set of variables which you can declare in a single statement. For example if you want to make a result calculating program you need to declare the total number of students first. So instead of declaring student1, student2 etc you can write int students[40]; in this way we declared 40 variables in a single statement.

Random Line of Text Selector in C#

Submitted by donbermoy on
This tutorial will teach you how to create a program that selects a line of text from a text file using C#. So, now let's start this tutorial! 1. Let's start with creating a Windows Form Applicationin 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 a button named Button1 to have the random line selector.

Get Name of Multiple TextBoxes Control in C#

Submitted by donbermoy on
This is a simple tutorial in which we are going to get all the name of multiple textboxes in C# using a loop. 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. Drag any textbox that you want and only one Button.

Time Interval in C#

Submitted by donbermoy on
Today in C#, i will teach you to get a time interval in C#. In here, we will use the TimeSpan properties for getting the time interval. It segregates the hours, minutes, seconds, millisecond and even the tick of the clock. 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 and name it as TimeInterval. 2.