Disable Paste in A Numeric TextBox in VB.NET

Submitted by donbermoy on
Today, I will teach you how to create a program that will disable paste in a numeric textbox using 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. Add only a TextBox named TextBoxNumeric in your Form. 3. Now

While Loops in Java

Submitted by GeePee on
There are cases in which a developer may want a program to repeat a certain function for a finite number of times. While loops allow the programmer to make a function repeat until certain conditions are met. There are two common intended uses for loops. The first is to keep repeating a set of code until the user satisfies the criteria to exit the loop.

Arrays in Java

Submitted by GeePee on
An array is an object that holds a fixed number of values of a certain variable type. There are many uses for arrays; they allow programmers to not need to declare a new variable for each value stored. If ten numbers need to be stored (ages, weights, wages, etc.), a single array with ten components may instead be used.

Recent Files - Open in VB.NET

Submitted by donbermoy on
This tutorial will teach you how to open the file and the file location of the recent files in vb.net. This is a continuation of my other tutorial in displaying the recent files. 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.

Recent Files - Display in VB.NET

Submitted by donbermoy on
Today, I will teach you how to create a recent files to be displayed in the ListView 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 one listview named listViewrecentfiles with three columns namely Item name, Date Created, and Name of the file, and one button also named button1checkrecent.