Visual Basic .NET

Visual Basic .NET Source Code

Free Visual Basic .NET Source Code. Download 10 latest Visual Basic .NET system's projects with source code for free here.

Notepad Using Visual Basic .NET with Source Code

Submitted by Prasenjit Halder on
Notepad is a free text editor with free source code. It also has a text to speech feature that allow you to read the text. It can also insert different date format like day, week, month, etc. You can also convert it to word. By this product user can manage text document some common function include such as open, open as, Insert>Text Document, save, save as and more... Basically its demonstrate of

Simple Sync Files

Submitted by fkonstas on
I use the visual studio 2019 to finish my project. I use webclient to copy files. I think is more faster and i have more details when copying files. It is very simple to use this aplication. - Select the source folder - Select the destination folder - Select options sync, you have 3 options - Finally click the button 'Start Sync" If you want to see more details, press the button with down arrow. I

Magnifying Form Window In VB.NET

Submitted by Stevenp12 on
This program will allow you to magnify whatever the computer mouse is hovering on. You are able to resize the form too. To activate the magnifying window, you have to click on the form once. All we need is a 'pictureBox' and a 'Timer'. The timer will do most of the job with 18 lines of code. First we have to code the mouse positions and the syncing of the magnifying form. We set our resolution in

Factorial, Permutation and Combination

Submitted by hotmash19 on
Factorials A factorial is represented by the sign (!). When we encounter n! (known as 'n factorial') we say that a factorial is the product of all the whole numbers between 1 and n, where n must always be positive. For example 1! = 1 = 1 2! = 2 x 1 = 2 3! = 3 x 2 x 1 = 6 4! = 4 x 3 x 2 x 1 = 24 5! = 5 x 4 x 3 x 2 x 1 = 120 6! = 6 x 5 x 4 x 3 x 2 x 1 = 720 etc... Permutations and Combinations