Uploading POST Data to PHP in C#

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create POST data uploader in C#. POST or GET? If you don't know what the difference is between POST and GET, these are the methods used by PHP to gain information from external sources that parse the data to those PHP pages. GET is URL based such as; index.php?id=2 Id is 2. And POST is behind the scenes for sensitive information such as passwords. Project: So first we want to create a basic C# project through the File > New Project wizard.

Learning Do while LOOP

Submitted by moazkhan on
In this part you will learn: 1. Do while LOOP 2. C syntax 3. Showing output In this tutorial I will teach you how to use do while loops in C. We have already covered for loops and now we know what are loops. In this tutorial I will teach you how to use a Do while loop in C. We have previously covered how to use a and now we know how loops work. What is a DO WHILE LOOP? A Do while loop is somewhat similar to a While loop. It has there necessary statements initialization, condition and increment.

Proxy Checker using C#

Submitted by donbermoy on
In this tutorial, we will create a proxy checker program which will test a list of proxies and report if they respond within a faster time. 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 three buttons for starting the checker, exporting all the reports and exporting the working reports; add also a ListBox that will contain the reports of each proxy. 3.

ListBox Adding and Removing an Item in C#

Submitted by donbermoy on
ListBox is a control that displays a collection of items. More than one item in a ListBox is visible at a time. You can either populate the ListBox control directly, or bind it to a collection of items. In this tutorial, i will discuss some events in ListBox such as adding and removing an item in a ListBox. So, now let's start this tutorial! 1.

Exception Handling in C#

Submitted by donbermoy on
Sometimes, we encounter different errors along the program whenever we executed it. For example, the file does not exist in the given path, network connections are not connected, or any errors that you have experienced when you're learning how to program. This is what we've called Runtime Errors. One way to prevent it is the Structured exception handling. In this tutorial for C#, we will used the Try-Catch-Finally statement.

Word Scramble Game Application in Android

Submitted by donbermoy on
This is my another creation of android Games named Word Scramble Game Application, a project for students in their Mobile Development Subject. This Word Scramble Application will show a list of the words you can build from your letters; and in here it has 20 words to solve. It has also the speed of the random letters to build such as slow, medium, and fast. The game has also a timer and if the word is solved within 30 seconds then the player will win the game. Their is also the word typed upon clicking the words. It has also a button for resetting the game.

Learning While LOOP

Submitted by moazkhan on

While LOOP

In this part you will learn: 1. While LOOP 2. C syntax 3. Showing output In this tutorial I will teach you how to use while loops in C. We have already covered for loops and now we know what are loops What is a WHILE LOOP ? First of all we will talk about what is while loop. For a loop we need three statement initialization, condition and increment. In a while loop we only write the condition within the round brackets and increment within the body of the loop.