Skip to main content

Posts

Showing posts with the label Visual Studio

How to make Folder Locker Application in VB.Net

I n this article we will see how to make a simple folder locker app in VB.Net. With this folder locker app you will simply able to lock any folder and can able to unlock it later. So let's start. HOW TO MAKE FOLDER LOCKER APPLICATION IN VB.NET 1) Open Visual Studio. Create new "Windows Form Application". Name it Folder locker or anything you want to name it and click on OK. Change the 2) Now add Label control and give it name. 3) Add 3 Button controls. Change text property of each button as Lock, Unlock and Exit. Change the (Name) property as ButonLock for Lock button, ButtonUnlock for Unlock button and ButtonExit for Exit button. 4) Now add two TextBox controls and place them near the Lock and Unlock button as shown in figure. Change the (Name) property of TextBox1 to txtBrowse and TextBox2 to txtUnBrowse. 5) Now add ProgressBar control and place it as shown in figure. 6) Add FolderBrowserDialog control. 7) Now go to the code section of form. Just B...