Posts belonging to Category 'Visual Basic Programming'

VISUAL BASIC REVERSED Adecompiling approach

Frameworks are getting more and more popular today, Visual Basic is one of them. Personally i hate frameworks, and also most reversers do. So, why this tutorial? We can consider both the light and the dark side of the problem: frameworks usually put a lot of codein the compiled programs, so it becomes hard to find the way among all that jungle. But they also use sets ofpre-built objects, so theeseobjects (more…)

Using Visual Basic Express to create an AutoCAD .NET addin

This document will provide a step by step tutorial on how to create, load and debug a simple VB .NET application for AutoCAD using the Visual Basic Express development environment. The document focuses on setting up and using the Visual Basic Express environment. We do not elaborate on the AutoCAD .NET API itself. We provide references at the end of this tutorial to resources (more…)

Guideline for Programming in Visual Basic

As the share of software in technical systems is growing, the quality of the software gains in significance as well. A contribution to ensuring a high level of software quality is made by company- or project-specific guidelines for software development which are intended in particular as working instructions and a basis for communication and the conclusion of contracts. This guideline contains rules for coding (more…)

Scripting with CAMMaster And Visual Basic.NET

• Repetitive and/or tedious operations can be performed very quickly. This results in reduced operator fatigue. • Once programmed properly, scripts don’t make mistakes. This insures higher quality. • Using scripts can help users that are not familiar with CAMMaster become productive quickly. • Scripts can be written to insure that no “procedural steps” are missed when generating your CAM data. (more…)

Understanding Visual Basic .NET

T his chapter explains important background material related to Visual Basic .NET (VB .NET). If you are the hasty type and want to dive right into programming, there’s no need to start with this chapter. (Although you may want to check the “Visual Studio .NET Requirements” section at the end of the chapter, to make sure you have all the tools you need.) You can skip right over it and go on to Chapter 2, (more…)

ASP.NET for Developers

All the examples in this book are written in Visual Basic.NET. Why, you ask, have we decided to use Visual Basic exclusively since the .NET platform supports a plethora of languages? Why not pepper the text with examples in C#, Jscript, and maybe even Eiffel? We decided to concentrate our efforts on only one language to simplify things and to keep the book to a reasonable length. While it’s certainly nice to be able (more…)

Visual Basic.Net Programming Guidelines

Introduction Our Goal – Quality Software that is correct, robust and has extensibility. Correctness is the ability of the code to perform to its specification—that is, its behavior in known conditions. Robustness is its behavior in unknown conditions. Extensibility is the ease with which the code can be modified to accommodate new and changed requirements. These standards were adopted from different sources, (more…)

Tutorial to use CrimeStat modules from Visual Basic 2005

a) Create a public module to store information about file and fileid. Module PublicModule
Public file As New CInputParam() Public fileid As Integer End Module b) Load the DBF File on click of the ‘Load DBF File’ button Private Sub btnLoadFile_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnLoadFile.Click ‘Using CrimeStat 4.0 modules involves two steps: ’1. Create a CInputParam (more…)

Visual Basic 2008 Programmer’s Reference

Visual Basic Orcas Programmer’s Reference is a language tutorial and a reference guide to the upcoming Orcas release of Visual Basic. The tutorial provides basic material suitable for beginners but also includes in-depth content for more advanced developers. The second part of the book is a reference that quickly allows programmers to locate information for specific language features. The entries (more…)

Tutorial 1: Introduction to Visual Basic – Hello World

A. Creating a label with Text ‘Hello World’ 1. Create a new Project: Tutorials1a a. Make sure to choose Visual Basic from other Languages b. Choose Windows Application Form 2. In the solution explorer window, click on Form1.vb 3. Use the properties window to change/edit the following values: FileName: frmHelloWorld.vb 4. Select (click on) the form 5. Use the properties window to change/edit the (more…)