Visual Basic
Visual Basic was derived from BASIC and enables the rapid application development (RAD) of graphical user interface (GUI) applications, access to databases using DAO, RDO, or ADO, and creation of ActiveX controls and objects.
Application
Computer Science
Remove
Platform
Any
License
Any
This code allows you to access files from a Microsoft Cabinet File (*.cab)
This code allows you to access files from a Microsoft Cabinet File (*.cab)
An article describes basic things about how to start programming parallel port using Visual Basic. It will helpful for beginners who want to get an idea about the subject.
In this tutorial, we will be looking at using LINQ to Objects. We will be creating a Windows Forms Application that will first define an array of numbers, and then we will use LINQ to Objects to...
LINQ to SQL Paging using GridView in VB and ASP.NET 3.5. This tutorial will show you how we can extend the LINQ to SQL Class and create methods that will allow us to page data from a SQL database. VB...
This tutorial will show you how to write a method that will not only encrypt a string - but decrypt it as well. Written with VS.NET 2008 and VB.NET
In this tutorial, we will look at how we can create a class, how we can create methods within that class and also how we can make use of the class in a Windows Form by calling its methods. VB version.
InStr is a powerful VB string function. It's the perfect way to search and test strings in robust Visual Basic applications. This article shows how to call InStr to perform advanced text processing...
Transferring large files over the Internet can be speeded up significantly if compression/decompression is applied before/after the upload/download operation. This article shows how to do that in VB...
Anyone who has written a simple .aspx page or a Windows form that has any kind of user interaction has already worked with delegates. You may not have realised it, but you have also used delegate...
Mike Hillyer explains how to work with BLOB columns using the ADO 2.5 stream object. One of MySQL's strengths is it's use of Binary Large Object (BLOB) columns. These columns store unprocessed binary...
The .NET Framework includes a much improved library of graphic functions developers can utilise to display dynamic images in their applications. This article looks at how you can use an XML file to...
This tutorial teaches Genetic Algorithms. This tutorial was written because in my sight there was not a single tutorial with both Genetic Algorithms and Visual Basic in it. I have written this...
Databases are an inevitable part of most of the real world applications. Deploying such database centric applications has always been tricky in all the platforms, be it Microsoft Visual Basic 6,...
A collection of over twenty tips to improve the performance of your Visual Basic 6 code.
The file system is this week's topic at the VB.NET School. Learn how VB.NET and the .NET platform implement drive, folder and file support and how to use them in real life. we will also see how we...
Connecting to a database is essential in the vast majority of business and enterprise applications. The .NET framework provides ADO.NET, a new object orientated framework for data access, to enable...
Connecting to a database is essential in the vast majority of business and enterprise applications. The .NET framework provides ADO.NET, a new object orientated framework for data access, to enable...
Discover how exceptions work in .NET and what they are used for. Find out how to use try...catch...finally blocks to catch exceptions, and how to define your own exceptions and throw them.