This tutorial will simply teach you how to perform simple Math Operations in Visual Basic 2008. It is proably the most boring part of the language, but once you have mastered the simple parts of the language you can move on to the more interesting and advanced ones. Key Terms: ————— Math Operators Calculator Plus…
Tag: basic
Visual Basic 2008 Tutorial – Send an EMail WORKING – HD
This is for those that asked me for more than months and now here it is! This is fully functional and the tutorial’s code is really easy to follow. Everything you need to send an email from your program is a GMail account: mail.google.com
Visual Basic 2005 – Tutorials edition – video 1
VB 2005 tutorials. In this video – 1 – we will see how to make a menssage box with text!
Visual Basic 2008 / Visual Basic .NET Tutorial #4 – If Statements
This tutorial will help you understand what an If Statement is. If Statements will help your application decide what to do in a given situation. They are also a part of every programming language in existance. Key Terms: ————— If Statement Then End If
Understanding Variable Scope and Duration in Visual Basic 6
Variable Scope The scope of a variable determines where you can access that variable in your code. If a variable is in scope you can read or set it’s value. If it is out of scope you will not be able to access it. There are three types of scope for variables in Visual Basic:…
How to generate a random number sequence that is non-repeating in visual basic .net ?
I am writing a matching program, and need 24 objects to randomly appear, each twice, across 48 spaces. I figured the best way for me to do this would be to assign the positions a number 1 through 48. but the problem is I can’t find a way to generate a random number sequence in…
Microsoft Visual Basic .NET Programmer’s Cookbook
Product Description Filled with the ingredients developers need—code samples, instructions, and solutions to common problems—this book is the logical place for developers to start building projects and learning more about Visual Basic .NET…. More >> Microsoft Visual Basic .NET Programmer’s Cookbook
Program a DVD PLAYER in VISUAL BASIC 2008 (Intermediate)
PLEASE visit my new Visual Basic Tutorials Website! www.vbtutorials.weebly.com How to program a DVD PLAYER in VISUAL BASIC 2008 (Intermediate). This is only intended as a guide to get you started. You can experiment by trying to make a menu button, eject button etc. NOTE If you try something on your program that the DVD…
GUI interface using visual basic to track the killers IP address CSI
Fair use claim: -this serves an educational purpose in demonstrating computer illiteracy as it pertains to American Television -the clip is far too short to compete in any way with the original product and its intended use -there is no way that this could be confused with an official broadcast or redistribution by the content…
Visual Basic 2008 / Visual Basic .NET Tutorial #3 – Variables
This tutorial will help you understand what a Variable is, how to create a variable and how they could be used. I have explained it in depth for the new programmers that have never used a variable before. Variables are one of the most important parts of programming that you will ever learn, so remember…