Adding Watermark to your PictureBox

Watermark is a faint picture or mark made in some paper during manufacture, which is visible when held against the light and typically identifies the maker, it a special design contained in electronic documents, pictures, music etc that is used to stop people from copying them. In this tutorial, we will make a watermark program created in VB.NET! Follow the following steps: 1.

Upload Image in PictureBox

We are fond of uploading so many images in websites, programs, etc. But, the good thing is that we can make this program. We will just use the OpenFileDialog in VB.NET. So, 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.

C++ Tutorial: Status Strip Control in C++/CLI

   Today we are going to talk about such component in Visual Studio 2012 as Status Strip. With component is mostly situated at the bottom of the main form and it shows progress of some event, warnings, errors or other additional information. In today’s program we will use this component. Preparation    You need to create new Windows Forms Application project. Then drag Status Strip component on the form and will be added to the project. After that click on it and choose two components from the popup dialog – Progress Bar and Status Label.

Valid or Invalid Date in VB.NET

Hi! In this tutorial, we will make a program that decides if a date is invalid or not. The main function that we will just going to use is the IsDate Function. This function checks if the given expression is a valid date and returns a boolean true or false. So, 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.

Finding Sum of the Date plus Number of Days in VB.NET

A few weeks ago, I had introduced how to find the Date Difference between the two Dates in VB.NET. Now, In this article, i will introduce another some twist of the Date Function in VB.NET, in which it will find the sum of the date and the number of days that you are going to add. So, 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.

77% of College Students Use Snapchat Daily

Based on the latest study, at least 77% of college students are now fond of using the photo-sharing app, Snapchat daily. Sumpto, a New York-based company conducted a research to be able to analyze the number of Snapchat users in the United States particularly college students. Snapchat is among the application which Facebook earlier aimed to acquire. However, $3 billion acquisition offer has been

Exception Handling

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, we will used the Try-Catch-Finally statement.