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

PHP Programming: The Basics VTC Training CD

PHP Programming: The Basics VTC Training CD Learn PHP Programming: The Basics from our PC and Mac compatible CDRom. The affordable price of $99.95 gives you high quality software training that is easy for anyone to understand and follow. Start training straight away with Free lesson links on the right or BUY THIS CD NOW!

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:

Global Scope
Global variables are in scope anywhere in your application. Module Scope
Module level variables are in scope anywhere within the module where they are declared. Local Scope
Local variables are only in scope within the procedure where they are declared.

Read more

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 … Read more

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 … Read more

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 … Read more

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 … Read more

When it is crunch time: Migrating from Visual Basic 6 to Visual Basic .Net/2005

Abstract

As a Visual Basic 6.0 programmer, what is the roadmap forward for your applications? As Visual Basic 6.0 becomes ‘deprecated technology’ what will you do with your enterprise class applications written in Visual Basic 6.0. This article is the musings of a developer that has been looking at migrating existing enterprise-class Visual Basic 6.0 applications to Visual Basic 2005.

Introduction

If you have been a serious Visual Basic 6.0 programmer with very sizeable code investments in Visual Basic (we have 22 enterprise level applications), at least 18 of which are written with Microsoft Visual Basic, crunch time comes when you begin to think or when you decide to advance your applications to new versions. Crunch time comes when all of a sudden, your Visual Basic 6.0 projects don’t open properly anymore in the Visual Basic 6.0 IDE (especially when running on Windows Vista with Visual Studio 2005 installed). Crunch time comes most especially when it dawns on you that you are basically using ‘deprecated’ technology, that between Visual Studio 6.0 (which contained Visual Basic 6.0) and Visual Studio 2008 (the latest version of Microsoft’s Visual Studio development suite), they have been 4 (four) new versions of Visual Basic.

Crunch time is the realization that for your software business to live, you will have to do something about your existing Visual Basic 6.0 applications. Our purpose in writing this article is to share our experiences of what we found as we endeavored to start to upgrade our Visual Basic 6.0 applications, and to discuss some of the touch decisions and choices that will undoubtedly have to be made.

Appraising the current Visual Basic situation!

Read more

Learning Visual Basic .NET

Product Description Most Visual Basic .NET books are written for experienced object-oriented programmers, but many programmers jumping on the .NET bandwagon are coming from non-object-oriented languages, such as Visual Basic 6.0 or from script programming, such as JavaScript. These programmers, and those who are adopting VB.NET as their first programming language, have been out of … Read more

Visual Basic 2008 / Visual Basic .NET Tutorial #2 – Hello World

This tutorial will help you create your first application in Visual Basic 2008. I apologize for the vague explanations and stuttering, I recorded this video after college and I’m not too alert at the moment. The concept isn’t hard to grasp though so you should understand it. Key Terms: ————— msgbox messagebox.Show button1_click

Querying Table Data Using Visual Basic Code in MS Access

In order to fully utilize the capabilities of MS Access, one must learn not only learn the Visual Basic (VB) programming language, but should also learn Standard Query Language (SQL). Once a grasp of these two languages have been obtained, MS Access users can begin to build faster and more efficient databases.

One tool that has proved itself very useful to me over the years is querying data from tables or queries using VB and SQL code. A brief introduction to this process is presented in this article. To best understand this process, an example is provided below along with an explanation of its parts.

'*********CODE***********

Dim rstTemp As Recordset

Dim strSQL As String

Dim routeNum As Integer

strSQL = "SELECT [Route], [Main Route PM], [Intersecting Route], [IntBeginPM], [IntEndPM] “

strSQL =  strSQL + “FROM Intersections_list WHERE (((CStr([Route])) = """ + cmbRouteQuery + """));"

Set rstTemp = CurrentDb.OpenRecordset(strSQL, dbOpenDynaset)

If (Not (rstTemp.EOF)) Then

rstTemp.MoveFirst

routeNum = rstTemp(0)

'************************

Read more

PHP Programming for a Beginner, 5-disk DVD Complete Training Suite. Edition 2010

5-disk DVD Complete Training Suite, includes complete PHP training and reference in HTML format In a case you prepare for a job in UNIX/Linux environment, the set contains complete (32 and 64-bit) Fedora Linux installation Includes “Brief Introduction to Linux” video-DVD Includes “UNIX Academy Selected” Training Library of 14 complete books in PDF format Product … Read more

Sams Teach Yourself Visual Basic 2008 in 24 Hours: Complete Starter Kit

ISBN13: 9780672329845 Condition: NEW Notes: Brand New from Publisher. No Remainder Mark. Product Description In just 24 sessions of one hour or less, you will be up and running with Visual Basic 2008. Using a straightforward, step-by-step approach, each lesson builds upon a real-world foundation forged in both technology and business matters, allowing you to … Read more