Search Item in a ListBox in C#

Submitted by donbermoy on
In this tutorial, i will teach you how to create a program that searches an item inside the listbox using C#. 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: Go to File, click New Project, and choose Windows Application and name your project as Search Item in a ListBox. 2.

Create XML File using C#

Submitted by donbermoy on
Today in C#, I’m going to teach you how to create a program that also creates an XML file using C#. 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.

How to Write Data to a Text File using BinaryWriter in VB.NET

Submitted by donbermoy on
Today in VB.NET, I will teach you how to create a program that will write data to a textfile using BinaryWriter. I already made this kind of tutorial but it has created using StreamWriter. See here: 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: Go to File, click New Project, and choose Windows Application. 2.

Members Information System using PHP Data Object (PDO)

Submitted by jkev on
In this members information system you will learn how to make use of PHP data objects (PDO). PDO provide methods for prepared statements and working with objects that will make you far more productive and easy to understand code. In this system you will learn how execute add, edit , delete function in PDO . This system is good for beginners who want to learn PDO. And also in this system I have

Determine Even or Odd Number in C#

Submitted by donbermoy on
In this tutorial, I'm going to teach you how to create a program that determines if the inputted number is an odd or an even number using C#. This was one of the laboratory exercises in C# for students enrolled in this subject. Even Numbers are any integer that can be divided exactly by 2. The last digit will be 0, 2, 4, 6 or 8. If it is not an even number, it is called an odd number. The last digit will be 1, 3, 5, 7 or 9. Now, let's start this tutorial! 1.

Under Root (Square Root) Taker

Submitted by sba stuff on
This Program source code helps you to take square root of a given value. this will helps a lot . Just input the value you want to take square root and then click calculate button, this will gives you the value in below text box. Thank You. Stay Connected. http://www.facebiok.com/sba.stuff http://www.twitter.com/sbastuff http://www.sbastuff.blogspot.com

Table Generator

Submitted by sba stuff on
Input Value and Click On Generate Button To Generate All Multiples till 10. In Visual Basic 6. It is used to Display a table of any input value till ten. this will instead of opening calculator to get multiples.it will show multiples of a given value. Open Project in vb6 to run. thanks

Creating Threads in Java

Submitted by donbermoy on
Today in Java, I'm going to teach you how to create a program that will create threads. We all know that a thread is a basic processing unit in our computer to which an operating system allocates processor time, and more than one thread can be executing code inside a process. The Java Virtual Machine (JVM) allows an application to have multiple threads of execution running concurrently. Thus, threads have priority. It is just like a racing program. So, now let's start this tutorial! 1.