Learn programming with
Visual Basic (VB.net)
exercises
Visual Basic (VB.net)
lessons
First contact with Visual Basic (VB.net)
14
Flow Control
34
Basic Data Types
23
Arrays, Structures and Strings
25
Functions
37
Object Oriented Programming
7
More On Classes
13
File Management
41
Object Persistence
4
Access To Relational Databases
3
Dynamic Memory Management
13
Additional Libraries
10
Top 10 most viewed
Visual Basic (VB.net)
exercises
247
Multiplication table
Write a Visual Basic (VB.net) program to ask the user for a number and display its multiplication table, like this: 5 x 1 = 5 5 x 2 = 10 5 x 3 = ...
178
Visual Basic (VB.net) to Pascal converter
Create a program to convert simple Visual Basic (VB.net) programs, such as the following one, to Pascal language...
138
BMP width & height, FileStream
Create a Visual Basic (VB.net) program to display the width and the height of a BMP file, using a FileStream. Remember the structure of the header: ...
122
File copier
Create a program to copy a source file into a destination file. You must use FileStream and a block size of 512 Kb. An example of use might be: mycop...
122
Table + array + files
Expand the exercise of January 9th (tables + array), so that it contains two new methods, to dump the data of the array into a binary file and restore...
121
Break & continue
Create a Visual Basic (VB.net) program to write the even numbers from 10 to 20, both included, except 16, in 3 different ways: - Incrementing 2 in ...
118
First contact with Visual Basic (VB.net)
Create a program (in Visual Basic (VB.net)) to print Hello on screen and then print your name (in a separate line)....
108
Switch
Create a program in Visual Basic (VB.net) to display the "text mark" corresponding to a certain "numeric mark", using the following equivalence: 9....
107
Convert a text file to uppercase
Write a program to read a text file and dump its content to another file, changing the lowercase letters to uppercase. You must deliver only the "....
106
Class Photo Album
Create a class "PhotoAlbum" with a private attribute "numberOfPages." It should also have a public method "GetNumberOfPages", which will return the...