Saving Files Visual Basic / File Manipulation
Visual Basic has built in file handling functions. These are not the fastest functions but it is not noticeable unless you are handling very large files. There are two common ways which we will cover in this tutorial. I consider these two functions to be the simplest.
File Handling Visual Basic / File Manipulation
If you want to be an expert VB programmer then you'll need to know a lot about how VB handles files - what is possible and what is not, plus how to do something in the smallest code or in the least amount of time. To do this you need to understand the file handling features which VB offers.
Working With Files Visual Basic / File Manipulation
Is it possible to save data accepted by a VB program into a storage device, such as a hard disk or diskette, or even CDRW? The answer is possible. Is this chapter, we will learn how to create files by writing them into a storage device and then retrieve the data by reading the contents of the files using customized VB programs.
Arrays Visual Basic / Getting Started
An array is a list of variables, all with the same data type and name. When we work with a single item, we only need to use one variable. However, if we have a list of items which are of similar type to deal with, we need to declare an array of variables instead of using a variable for each item.