Introduction to Computing Applications in Forestry and Natural Resource Management
eBook - ePub

Introduction to Computing Applications in Forestry and Natural Resource Management

Jingxin Wang

Condividi libro
  1. 378 pagine
  2. English
  3. ePUB (disponibile sull'app)
  4. Disponibile su iOS e Android
eBook - ePub

Introduction to Computing Applications in Forestry and Natural Resource Management

Jingxin Wang

Dettagli del libro
Anteprima del libro
Indice dei contenuti
Citazioni

Informazioni sul libro

Due to the complexity of operational forestry problems, computing applications are becoming pervasive in all aspects of forest and natural resource management. This book provides a comprehensive introduction to computers and their applications in forest and natural resource management and is designed for both undergraduate and graduate students in forestry and natural resources. It introduces state-of-the-art applications for several of the most important computer technologies in terms of data acquisition, data manipulation, basic programming techniques, and other related computer and Internet concepts and applications. This book consists of six parts and 19 chapters.

Domande frequenti

Come faccio ad annullare l'abbonamento?
È semplicissimo: basta accedere alla sezione Account nelle Impostazioni e cliccare su "Annulla abbonamento". Dopo la cancellazione, l'abbonamento rimarrà attivo per il periodo rimanente già pagato. Per maggiori informazioni, clicca qui
È possibile scaricare libri? Se sì, come?
Al momento è possibile scaricare tramite l'app tutti i nostri libri ePub mobile-friendly. Anche la maggior parte dei nostri PDF è scaricabile e stiamo lavorando per rendere disponibile quanto prima il download di tutti gli altri file. Per maggiori informazioni, clicca qui
Che differenza c'è tra i piani?
Entrambi i piani ti danno accesso illimitato alla libreria e a tutte le funzionalità di Perlego. Le uniche differenze sono il prezzo e il periodo di abbonamento: con il piano annuale risparmierai circa il 30% rispetto a 12 rate con quello mensile.
Cos'è Perlego?
Perlego è un servizio di abbonamento a testi accademici, che ti permette di accedere a un'intera libreria online a un prezzo inferiore rispetto a quello che pagheresti per acquistare un singolo libro al mese. Con oltre 1 milione di testi suddivisi in più di 1.000 categorie, troverai sicuramente ciò che fa per te! Per maggiori informazioni, clicca qui.
Perlego supporta la sintesi vocale?
Cerca l'icona Sintesi vocale nel prossimo libro che leggerai per verificare se è possibile riprodurre l'audio. Questo strumento permette di leggere il testo a voce alta, evidenziandolo man mano che la lettura procede. Puoi aumentare o diminuire la velocità della sintesi vocale, oppure sospendere la riproduzione. Per maggiori informazioni, clicca qui.
Introduction to Computing Applications in Forestry and Natural Resource Management è disponibile online in formato PDF/ePub?
Sì, puoi accedere a Introduction to Computing Applications in Forestry and Natural Resource Management di Jingxin Wang in formato PDF e/o ePub, così come ad altri libri molto apprezzati nelle sezioni relative a Informatica e Data mining. Scopri oltre 1 milione di libri disponibili nel nostro catalogo.

Informazioni

Editore
CRC Press
Anno
2017
ISBN
9781351849333
Edizione
1
Argomento
Informatica
Categoria
Data mining

Section V

Visual Basic .NET Programming

12
Introduction to Visual Basic .NET Programming

Visual Basic (VB) is a third-generation event-driven programming language that was first released in 1991 for Microsoft (Microsoft Corporation 1998). It is possibly the fastest and easiest way to create applications for MS Windows. Designed to be both easy for beginners to learn and powerful for experts, VB uses an English-like syntax that promotes clarity and readability in combination with an extensive set of advanced features and a philosophy that emphasizes flexibility, productivity, and great tooling (Microsoft Corporation 2014). VB 6.0 was released in 1998 and was a popular programming language with many new features including web-based applications.
Succeeding VB 6.0, the first version of VB.NET was released in 2002. By 2016, eight versions of VB.NET had been released as components of Microsoft Visual Studio. VB.NET introduced many exciting new features to VB developers, though these enhancements have caused some minor compatibility issues with legacy code (Wakefield et al. 2001, McKeown 2010). The integrated development environment (IDE) (including code editing, debugging, and execution) incorporates some of the best ideas of VB 6.0 and InterDev (a user-friendly program development software) to make it easier and more intuitive to quickly create applications using a wider variety of development resources.
Possibly the most valuable addition to VB.NET is object-oriented programming (OOP). Although approximations of object orientation have been available in earlier versions of VB, only in VB.NET do developers gain the advantages of true object inheritance, which allows business logic to be more easily and reliably programmed through an object or a block of code (Wakefield et al. 2001).

12.1What Is Visual Basic?

According to Microsoft’s definition (Microsoft Corporation 1998), VB consists of two parts:
  1. The “Visual” part refers to the method used to create the graphical user interface (GUI). Rather than writing numerous lines of code to describe the appearance and location of interface elements, you simply put prebuilt objects into place on screen.
  2. The “Basic” part refers to the Beginners All-Purpose Symbolic Instruction Code (BASIC) language. Notice that VB has evolved from its original BASIC language and now contains several hundred statements, functions, and key words, many of which relate directly to the Windows GUI.
There are programming languages derived from VB. Visual Basic for Applications (VBA) in MS Word, Excel, and Access, and VB Script for web-based programming are applications or programming languages that use VB.

12.1.1Visual Basic and VB.NET Concepts

12.1.1.1Windows, Events, and Messages

It is necessary for us to have a better understanding of some of the key concepts VB has built. For any Windows application programs, VB employs three key concepts: windows, events, and messages (Microsoft Corporation 1998).
A window is a rec...

Indice dei contenuti