Tutorial 1: An Introduction to Visual Basic.NET1 Tutorial 1 An Introduction to Visual Basic.NET.

Slides:



Advertisements
Similar presentations
Visual Basic 2010 How to Program. © by Pearson Education, Inc. All Rights Reserved.2.
Advertisements

Visual Basic 2010 How to Program Reference: Instructor: Maysoon Bin Duwais slides Visual Basic 2010 how to program by Deitel © by Pearson Education,
 2006 Pearson Education, Inc. All rights reserved Introduction to the Visual C# 2005 Express Edition IDE.
Chapter 1: An Introduction to Visual Basic.NET Programming with Microsoft Visual Basic.NET, Second Edition.
The Microsoft View: Module 1: Getting Started. Copyright Course 2559B, Introduction to Visual Basic®.NET Programming with Microsoft®.NET. Lecture 1 Microsoft.
Chapter 12: ADO.NET and ASP.NET Programming with Microsoft Visual Basic.NET, Second Edition.
 2002 Prentice Hall. All rights reserved. Chapter 2 - Introduction to the Visual Studio.NET IDE Outline 2.1Introduction 2.2Overview of the Visual Studio.NET.
Chapter 2: The Visual Studio.NET Development Environment Visual Basic.NET Programming: From Problem Analysis to Program Design.
1 Introduction to the Visual Studio.NET IDE Powerpoint slides modified from Deitel & Deitel.
1 An Introduction to Visual Basic Objectives Explain the history of programming languages Define the terminology used in object-oriented programming.
Creating and Running Your First C# Program Svetlin Nakov Telerik Corporation
1b – Inside Visual Studio Lingma Acheson Department of Computer and Information Science, IUPUI CSCI N331 VB.NET Programming.
2. Introduction to the Visual Studio.NET IDE 2. Introduction to the Visual Studio.NET IDE Ch2 – Deitel’s Book.
Visual Basic 2008 Express Edition The IDE. Visual Basic 2008 Express The Start Page Recent Projects Open an existing project Create a New Project.
Chapter 1 Introduction to Visual Basic Programming and Applications 1 Exploring Microsoft Visual Basic 6.0 Copyright © 1999 Prentice-Hall, Inc. By Carlotta.
1 Programming Concepts Module Code : CMV6107 Class Contact Hours: 45 hours (Lecture 15 hours) (Laboratory/Tutorial 30 hours) Module Value: 1 Textbook:
05/09/ Introducing Visual Basic Sequence Programming.
Overview-An Overview of Visual Basic.NET1 An Overview of Visual Basic.NET.
Microsoft Visual Basic 2005: Reloaded Second Edition
An Introduction to Visual Basic
IE 411/511: Visual Programming for Industrial Applications
Creating Web Applications Using ASP.NET Chapter Microsoft Visual Basic.NET: Reloaded 1.
1 1 Lab1 Ismail M. Romi – IT Dept, PPU, Visual Basic 2005 Programming Tour.
T U T O R I A L  2009 Pearson Education, Inc. All rights reserved. 1 2 Welcome Application Introducing the Visual Basic 2008 Express Edition IDE.
Tutorial 121 Creating a New Web Forms Page You will find that creating Web Forms is similar to creating traditional Windows applications in Visual Basic.
2. Introduction to the Visual Studio.NET IDE. Chapter Outline Overview of the Visual Studio.NET IDE Overview of the Visual Studio.NET IDE Menu Bar and.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 2 The Visual Basic.NET Integrated Development Environment.
Tutorial 111 The Visual Studio.NET Environment The major differences between Visual Basic 6.0 and Visual Basic.NET are the latter’s support for true object-oriented.
Integrated Development Environment (IDE)
NOTE: To change the image on this slide, select the picture and delete it. Then click the Pictures icon in the placeholder to insert your own image. WEB.
Copyright © 2001 by Wiley. All rights reserved. Chapter 2: Using Visual Basic to Create a First Project Getting Started with VB Development Environment.
Introduction to the Visual Studio.NET IDE (LAB 1 )
Chapter One An Introduction to Visual Basic 2010 Programming with Microsoft Visual Basic th Edition.
1 After completing this lesson, you will be able to: Transfer your files to the Internet. Choose a method for posting your Web pages. Use Microsoft’s My.
CHAPTER TWO INTRODUCTION TO VISUAL BASIC © Prepared By: Razif Razali 1.
Chapter Two Creating a First Project in Visual Basic.
Visual Basic.NET BASICS Lesson 1 A First Look at Microsoft Visual Basic.NET.
 2006 Pearson Education, Inc. All rights reserved Introduction to the Visual C# 2005 Express Edition IDE.
Module 2: Using Microsoft Visual Studio.NET. Overview Overview of Visual Studio.NET Creating an ASP.NET Web Application Project.
Microsoft Visual Studio 2010 Teacher: Ms. Olifer.
Chapter 2 – Introduction to the Visual Studio .NET IDE
Microsoft Visual Basic 2005 BASICS Lesson 1 A First Look at Microsoft Visual Basic.
© Copyright by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Outline 2.1 Test-Driving the Welcome Application 2.2.
1.
 2002 Prentice Hall. All rights reserved. 1 Chapter 2 – Introduction to the Visual Studio.NET IDE Outline 2.1Introduction 2.2Visual Studio.NET Integrated.
Microsoft Visual Basic 2008: Reloaded Third Edition Chapter One An Introduction to Visual Basic 2008.
Copyright (c) 2003 by Prentice Hall Provided By: Qasim Al-ajmi Chapter 2 Introduction to Visual Basic Programming Visual Basic.NET.
Object-Oriented Application Development Using VB.NET 1 Chapter 2 The Visual Studio.NET Development Environment.
Lecture Set 2 Part A: Creating an Application with Visual Studio – Solutions, Projects, Files 8/10/ :35 PM.
Tutorial 1: An Introduction to Visual Basic.NET1 Tutorial 1 An Introduction to Visual Basic.NET.
COMPUTER PROGRAMMING I 3.01 Apply Controls Associated With Visual Studio Form.
COMPUTER III. Fundamental Concepts of Programming Control Structures Sequence Selection Iteration Flowchart Construction Introduction to Visual Basic.
Visual Basic.Net. Software to Install Visual Studio 2005 Professional Edition (Requires Windows XP Pro) MSDN Library for Visual Studio 2005 Available.
IE 411/511: Visual Programming for Industrial Applications Lecture Notes #2 Introduction to the Visual Basic Express 2010 Integrated Development Environment.
COMPUTER PROGRAMMING I 3.01 Apply Controls Associated With Visual Studio Form.
 2002 Prentice Hall. All rights reserved. 1 Introduction to the Visual Studio.NET IDE Outline Introduction Visual Studio.NET Integrated Development Environment.
 2007 Pearson Education, Inc. All rights reserved Introduction to the Visual Basic Express 2005 IDE.
School’s Name Teacher’s Name Date
Dive Into® Visual Basic 2010 Express
Introduction to Computer CC111
Computer Software: Programming
Chapter 2 – Introduction to the Visual Studio .NET IDE
3.01 Apply Controls Associated With Visual Studio Form
3.01 Apply Controls Associated With Visual Studio Form
Introduction to the Visual C# 2005 Express Edition IDE
Module 1: Getting Started
Social Media And Global Computing Introduction to Visual Studio
Chapter 2 – Introduction to the Visual Studio .NET IDE
CIS16 Application Development Programming with Visual Basic
Presentation transcript:

Tutorial 1: An Introduction to Visual Basic.NET1 Tutorial 1 An Introduction to Visual Basic.NET

Tutorial 1: An Introduction to Visual Basic.NET2 Creating a Windows-Based Application in Visual Basic.NET Lesson A

Tutorial 1: An Introduction to Visual Basic.NET3 Lesson A Objectives After completing this lesson, you will be able to:  Start and customize Visual Studio.NET  Create a Visual Studio.NET solution and project  Solution: container to store multiple projects and files even different types of code  Project: stores files for one project  Set the properties of an object  Save & close solution, project, and form (.vb files)  Open an existing solution

Tutorial 1: An Introduction to Visual Basic.NET4 Starting and Customizing Visual Studio.NET  Visual Studio.NET is Microsoft’s newest integrated development environment (IDE)  Includes programming languages such as Visual Basic.NET, C++.NET, and C#.NET  A Windows-based application has a Windows user interface and runs on a desktop computer  A user interface is what you see and interact with when using an application  A Web-based application, on the other hand, has a Web user interface and runs on a server

Tutorial 1: An Introduction to Visual Basic.NET5 The Visual Studio.NET Start Page Links

Tutorial 1: An Introduction to Visual Basic.NET6 Visual Studio.NET Recent Projects Solution Explorer Dynamic Help Toolbox

Tutorial 1: An Introduction to Visual Basic.NET7 Starting a New Project Installed.NET Products Type of Project Name and Location Of Project Name of Project

Tutorial 1: An Introduction to Visual Basic.NET8 Purpose of the Links Included on the Start Page LinkPurpose Get StartedCreate new projects and open existing projects What’s NewAccess information about the new features in Visual Studio.NET and check for Visual Studio.NET updates Online CommunityContact fellow developers online HeadlinesView links to the latest news from the MSDN Online Library, including information on seminars, trade shows, and conferences, as well as training opportunities offered by Microsoft Search OnlineSearch the MSDN Online Library DownloadsAccess the latest product updates and sample code available for download XML Web ServicesSearch for XML Web Services to include in your applications, and publish your own XML Web services Web HostingPost Web applications, for a fee, on servers provided by third- party Internet Service Providers My ProfileCustomize various program settings in the IDE

Tutorial 1: An Introduction to Visual Basic.NET9 Visual Basic.NET Project information Properties window Toolbox (auto- hidden) Windows Form object

Tutorial 1: An Introduction to Visual Basic.NET10 More on the Toolbox Appendix A p. 721 has a complete list The first tools we will use include:  Button  Label  Textbox

Tutorial 1: An Introduction to Visual Basic.NET11 More on the Properties Window The first properties we will change include:  Name – use 3-letter prefix naming convention See  Text  Backcolor  Background image  Size – measured in pixels  Start position/location

Tutorial 1: An Introduction to Visual Basic.NET12 The Code Window Double click on an object to open to code window. For example, at the top of the code window: Public Class Form1 Inherits System.Windows.Forms.Form Form1 is the object name All visual studio.net objects are derived from system Windows is derived from class system Forms is derived from class windows Form is derived from class forms