How to Put a Form Inside a Form Using C#

Submitted by janobe on
In this tutorial, I will teach you how to add a form inside the form using C#. This method has the ability to change the display and how the form works into an MDI parent form. Then, you will see that the form displays a sunken client area with a raised border, once you set this property into true . And in the client area, it is where all the MDI child forms placed to the parent form are displayed.

Calculating the Number of Years Interval Between Two Dates Using C#

Submitted by janobe on
In this tutorial, I will teach you how to calculate the number of years interval between two dates using C#. This simple program is commonly used for getting the age of the person or getting if how many years you have been working in a company. Follow the procedure below to see how it works

How to Search Data Between Two Dates Using C#

Submitted by janobe on
This time, I will teach you how to search data between two dates Using C#. This method has the ability to find all the records in the database between two inclusive dates. In this way, you can filter the data to be displayed in the datagridview. Hope this tutorial will help you to solve your problem in filtering data between two dates. See the procedure below.

3 SQL Version of NorthWind Database

Submitted by nostradamus1566 on
A great way to learn database programming is to have a good sample database with lots of tables and appropriate relationships between them to work with. Queries can then be composed from within a variety of programming platforms, such as Java, PHP, Visual Basic 6, Visual Basic.Net, Visual C#, etc. NorthWind is a free sample database that Microsoft included with every version of Access going all

How to Display All Drives into the ListView Using VB.Net

Submitted by janobe on
This tutorial that I’m going to teach you is about how to display all drives into the listview using Vb.Net. This method is useful when you have to display the computer drives in the listview. With this, you will be able to see and have an idea what drives are available on your computer. Simply follow the instructions below and you will be done in no time.

How to Verify EVEN or ODD Number Using C#

Submitted by janobe on
In this tutorial, let’s learn how to verify the Even or Odd number using C#. This is just a simple program that you can easily understand and work on. For verifying whether the number is an Even or Odd, all you have to do is simply input any number that you like then press ENTER to execute the program and the result will tell you if it’s an Even or Odd number.