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.

How to Crop Image

Submitted by GeePee on
This project will teach you how to crop image using php and javascript. The user will first need to upload a picture. There will be a transparent dotted box which the user will use to determine what size and angle to cut. The box can be dragged and resized.

Print Specific Parts of a Document

Submitted by GeePee on
This project will teach you how to print a specific part of a document using Javascript. Each part is wrapped with a div and that we will use the div as the element. As we see in the screenshot, each div has a print button which can determine what part needs to be printed. You also have an option to print the whole page.

Drag & Drop Files to Delete

Submitted by GeePee on
In this project, you will learn how to create a drag and drop event to delete an object by using jQuery. This can be used in image gallery system. How does it work? Simply drag and drop files on the box "Drop to Delete" and it will automatically delete your database record and the file itself. Hope you learn from this.

Create XML File in VB.NET

Submitted by donbermoy on
Today in VB.NET, I’m going to teach you how to create a program that also creates an XML file using VB.NET. We all know that XML (Extensible Markup Language) is an easy way to create common information formats and share both the format and the data on the World Wide Web or elsewhere. Now, let's start this tutorial! 1.