Subscribe
Tutorial search

Visual Basic Tutorials


We hope that you will enjoy our Visual Basic tutorials. Feel free to contact us if you would like to be a tutorial hero and contribute your own Visual Basic tutorial to our site. Thank you !

Sort by:
Creating a simple Media Player in VB.NET
Creating a simple Media Player in VB.NET
This videotutorial will show you how to create a very simple Media Player in VB.NET.
Difficulty:
Creating a FilSystem Watcher/Logger in VB.NET
Creating a FilSystem Watcher/Logger in VB.NET
This videotutorial will show you how to make a program to log filesystejm changes within a defined folder. I recommend you to watch the video in HD and full screen mode to see the code properly.
Difficulty:
Visual Basic 2008 - 2010 Analog Clock Tutorial
Visual Basic 2008 - 2010 Analog Clock Tutorial
This tutorial will show you how to make an analog clock in visual basic 2008 / 2010. You can also download the source at the end of the page.
Difficulty:
Establishing a Database Connection in Visual Studio 2005
Establishing a Database Connection in Visual Studio 2005
This is step by step tutorial to guide you in building a database connection with SQL Express using Visual Basic .Net 2005
Difficulty:
Visual Basic 2008 / 2010 Tic Tac Toe
Visual Basic 2008 / 2010 Tic Tac Toe
This tutorial will show you how to make a tic tac toe game in visual basic 2008 / 2010. The program allows the computer to start the game or the user.
Difficulty:
visual basic 2008 calculator
visual basic 2008 calculator
In this tutorial you will learn how to make a notepad including text searching, copying, selecting, etc...
Difficulty:
Creating Group Reports in VB6 using Data Report
Creating Group Reports in VB6 using Data Report
It is often required in database applications to have a report which shows data in a hierarchal fashion. It is a little tricky in Visual Basic to create such reports. This tutorial will help you create such a report.
Difficulty:
Checking for and Creating Folders
Checking for and Creating Folders
Learn how to check if a folder exists and then create it if its not found.
Difficulty:
VB>NET Essentials
VB>NET Essentials
taken from http://sparkfusion.info/?p=75 New to VB.NET? Dont worry, give this Tutorial a quick read over and well soon get you on your way to developing top notch applications! Here we will teach you Basic Code, how to personalize your Form, Controls & More! 1) Changing the name of your new Form (What is displayed at the top of the Window) Once you have opened your new Project/Form go over to the Properties Box at the right hand side, in this box, scroll down to find an option named ‘Text’ the predefined value should be ‘Form#’ highlight this and change it to whatever you see fit! 2) Adding code to your Form/Controls Not many people know how to do this when they first start out in Visual Basic’s buts its simple, simply double click the control you wish to add code to, then the code window will open up! 3) Changing Button text Its the same idea as changing Form Window Name, scroll down and find ‘Text’ the predefined value should be ‘Button#’ just change this to whatever you wish to call your button! 4) Resizing Forms You can resize your form by using the Drag Handles which are positioned on all sides of the form in the Design View! 5) How do I test and run my program? At the top of Visual Studio, find the Debug option in the Menu, then select Start Debugging, this will go through your code to find errors, if there are non, your program should run and you can test out your new code! 6) How do I finalize my application and make an installer? There are several ways to do this, we will create a tutorial at a later date showing you show to do this!
Difficulty:
Creating your first VB.NET application!
Creating your first VB.NET application!
http://sparkfusion.info/?cat=6 Visual Basic.NET is a Event Driven Programming Language developed by Microsoft (Previously Visual Basic 6) You can create applications quickly and efficiently with use of the RAD (Rapid Application Development system! This tutorial will teach you how to create your first application! Refer back to our essential guide if your stuck on anything in this Tutorial VB.NET Essentials So lets get started; Create a new project and name it Search Engine! Add to the form a Command Button and Text Box from the Left Hand Side tool box, rename the button to Google and resize your form so it fits the two controls nicely, it should look similar to this: Now lets begin adding code! Double click your newly created Google button, first we need to tell the button the first part of the Google Search Link, and to open it up in a browser window we do this by using this code: System.Diagnostics.Process.Start(“http://www.google.co.uk/search?hl=en&source=hp&q=”) Now we need to tell the code to also use the Text Box to define what we want to search, so we make some alterations to the above code System.Diagnostics.Process.Start(“http://www.google.co.uk/search?hl=en&source=hp&q=” + TextBox1.Text) This just tells the button to also include whats in TextBox1 to the URL (Which will be what is searched) Thats it! Your first working VB.NET application! You could incorporate this into your programs, develop an advanced web browser and more! We hope this helped you!
Difficulty:
Creating your first VB.NET Application
Creating your first VB.NET Application
Visual Basic.NET is a Event Driven Programming Language developed by Microsoft (Previously Visual Basic 6) You can create applications quickly and efficiently with use of the RAD (Rapid Application Development system! This tutorial will teach you how to create your first application! In this tutorial we will show you how to set up a new project and create your first working application! Create a button that deploys a webpage!
Difficulty:
Modern Software inVB.NET
Modern Software inVB.NET
15-part free video tutorial on VB.NET presented by Dr. Joe Hummel.
Difficulty:
Store/Retrieve Image as Binary Data in Microsoft Access using VB6
Store/Retrieve Image as Binary Data in Microsoft Access using VB6
This sample code demonstrates how to store picture as binary data in Microsoft Access and then read back the picture to display it on the Data report using Visual Basic. The code uses ADO.Net data library. The code has a limitation of showing picture by accessing the the control on the data report. You can't bind the image control on the data report to the picture column of database.
Difficulty:
Microsoft Robotics Developer Studio - 15 Videos
Microsoft Robotics Developer Studio - 15 Videos
Here is a collection of 15 free video tutorials on Microsoft Robotics Developer Studio (MRDS). The Microsoft Robotics Developer Studio is a Windows-based environment for robot control and simulation.
Difficulty:
Youtube Video Downloader
Youtube Video Downloader
How to make a Youtube Downloader IN VB.NET2008 You need 2 Buttons, One Progressbar, One BackgroundWorker, One Textbox And One Save FileDialog... You Need to Make Few Private SUb() Lets Check My Tutorial I hope You Enjoy...
Difficulty:
Total Tutorials in Category: 287