Math Functions in C#

Submitted by donbermoy on
Today, I will teach you how to create a program that has math functions in C#. Here you will learn about Abs, Log, Round, Sin, Cos, and Tan Function. 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 txtNum for your inputted number and txtOut for the output.

Validate Leap Year in C# Console

Submitted by donbermoy on
Today in C#, i will teach you how to validate a year as leap year or not. Hence we already know that leap year has 366 days instead of the normal 365 days. Leap years occur every 4 years. And this fact is our formula in finding a leap year using the console application in C#. Now, let's start this tutorial! 1. Let's start with creating a Console Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Console Application. 2.

Extension File Converter in C#

Submitted by donbermoy on
This tutorial provides to make a program that can convert a file into any any file that is changing the extension filename of this file using C#. 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.

Remove all numbers in the TextBox using C#

Submitted by donbermoy on
Today in C#, we will make a program in which if we input a number or numbers in the textbox, it will remove or clear those numbers if we will click the remove button. 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.

Uakari File Uploader

Submitted by kingjpm on
HTML5 Multiple File Uploader API allows you to upload multiple files with drag and drop into any folder of your choice. The code can be modified to work with a database or any other need. See examples. Demo and Download working examples here: http://www.jpmalloy.com/upload/

User input and Conditional statements

Submitted by moazkhan on

User input and Conditional statements

In this part you will learn: 1. Taking input from user 2. Conditional statements 3. C syntax 4. Showing output 5. Tabs and new lines In this tutorial I will teach you how take input from user and how to use conditional statements. Basic Step: Open Dev C++ then File > new > source file and start writing the code below.