Even or Odd in Visual Basic

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a simple tool in Visual Basic to check whether the entered number is even or odd. Design: For this program, we need a couple of components; Button, button1, Begin the checking process. NumericUpDown, numericUpDown1, Hold the number value. Button Click: Once the button is clicked, we first want to create a new integer variable and set it equal to the value of the numericupdown control...

Copy/Paste a Text using C#

Submitted by donbermoy on
In this tutorial, we will create a program that has a copy and paste functions of using the ClipBoard class of 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. 2. Next, insert two Buttons for the Copy and Paste Functions named btnCopy labeled it as "Copy", and btnPaste labeled it as "Paste".

How to Check if an Inputted Year is a Leap Year using Java GUI

Submitted by donbermoy on
In this tutorial, i will teach you how to check if an inputted 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 Java GUI. So, now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of leapYear.java. 2. Import javax.swing package. Hence we will use a GUI (Graphical User Interface) here like the inputting the year.

Search and Retrieve a Record from Access Database and VB.NET

Submitted by donbermoy on
In this tutorial, i will teach you on how to create a program that can search and retrieve a record from an access database and vb.net. Now, let's start this tutorial! 1. Create an access file with the table, entities, and record below. Name your access database as sample.mdb (2003 format). access access 2.

How to Download File in a Website using VB.NET

Submitted by donbermoy on
Today, i will teach you how to create a program that can download file in a website using vb.net. This is one of my tutorials here for FTP program in VB.NET. 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. Next, add only one Button named Button1 and labeled it as "Download".

Auto Scroll Animation

Submitted by GeePee on
Auto Scroll Animation using JavaScript. In this project, I also used PHP to lessen the codes and MySQL so that I can grab all the contents of the topics that I placed in the page. One feature of the project is that, once you click a topic, it automatically slides down to its content. And by clicking Go Back To Top, it will automatically slide to top. Hope you learn from this.

Compute Grade Using VB6

Submitted by jayzeeman on
This is a simple Grading System and this is my first project this past year. I have used Microsoft Visual Basic 6.0 and Microsoft Access 2013 and make sure you have all required Software before open vb *this is all you need to open in References "Microsoft active x 2.8 library" and into components "Microsoft data grid control 6.0 (OLEDB), Mircosot ADO data control 6.0(OLEDB), Microsoft Windows

Image Slider in Visual Basic

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create an image slider in Visual Basic. Design: For this project, our design requires; Button, button1, To go to previous image. Button, button2, To go to next image. Picturebox, picturebox1, To hold the current image. Note; You will most probably want to set the appropriate properties for the picturebox, otherwise some images will look larger than others. Loading: On form load, we want to get all the images in the default directory.