Visual Basic Advanced Programming.

Slides:



Advertisements
Similar presentations
What Was I Thinking??. Key Terms 1. Control 1. Control 2. Design Mode 2. Design Mode 3. Event 3. Event 4. Form 4. Form 5. Interface 5. Interface 6. Properties.
Advertisements

Integrated Business Applications with Databases (D3) Jenny Pedler
An Introduction to Visual Basic Terms & Concepts.
Information System Design Lab 5&6. User Interface Design.
Introduction to Visual Basic.NET Uploaded By: M.Sheraz anjum.
Creating a Program In today’s lesson we will look at: what programming is different types of programs how we create a program installing an IDE to get.
CHAPTER TWO Creating Simple Visual Basic.NET Windows Applications.
Visual Basic 2010 How to Program. © by Pearson Education, Inc. All Rights Reserved.2.
Visual Basic 2010 How to Program Reference: Instructor: Maysoon Bin Duwais slides Visual Basic 2010 how to program by Deitel © by Pearson Education,
Introduction to Visual Basic Programming. Lecture Outline History What is Visual Basic First Look at the VB 6.0 Environment Some VB Terminology Our first.
Copyright 2003 : Ismail M.Romi, PPU. All Rights Reserved 1 بسم الله الرحمن الرحيم Palestine Polytechnic University College of Administrative science and.
Slide 1 ICS 012 Visual Programming I Ahmed Esmat Second.
ASP.net – Mysteries, Myths and Truths By George W. Ponick IV – Nov. 14, 2006.
1 An Introduction to Visual Basic Objectives Explain the history of programming languages Define the terminology used in object-oriented programming.
Objectives Machine language vs.. High-level language Procedure-oriented, object-oriented, and event- driven languages Background of Visual Basic VB Integrated.
A Tour of Visual Basic BACS 287. Early History of Basic Beginners All-Purpose Symbolic Instruction Code An “Interpreted” teaching language English-like.
Introduction to Visual Basic Chulantha Kulasekere.
Tutorial 6 Forms Section A - Working with Forms in JavaScript.
Getting Started Example ICS2O curriculum
Introduction to VBA. What is VBA? VBA stands for Visual Basic for Applications. It is a programming language used exclusively by the Microsoft Office.
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:
Chapter 1 Introduction to Visual Basic Programming and Applications 1 Joshi R.G. Dept. of Computer Sci. YMA.
Server- Side technologies Client-side vs. Server-side scripts PHP basic ASP.NET basic ColdFusion.
05/09/ Introducing Visual Basic Sequence Programming.
Microsoft Visual Basic 2005: Reloaded Second Edition
UNIVERSITI TENAGA NASIONAL “Generates Professionals” CHAPTER 4 : Part 2 INTRODUCTION TO SOFTWARE DEVELOPMENT: PROGRAMMING & LANGUAGES.
Java Programming, 3e Concepts and Techniques Chapter 3 Section 65 – Manipulating Data Using Methods – Java Applet.
An Introduction to Visual Basic
Introduction to Visual Basic. Quick Links Windows Application Programming Event-Driven Application Becoming familiar with VB Control Objects Saving and.
CHAPTER TWO Creating Simple Visual Basic.NET Windows Applications.
1 1 Lab1 Ismail M. Romi – IT Dept, PPU, Visual Basic 2005 Programming Tour.
CSCI 6962: Server-side Design and Programming Introduction to Active Server Pages.
Tutorial 7 Creating Forms. Objectives Session 7.1 – Create an HTML form – Insert fields for text – Add labels for form elements – Create radio buttons.
Integrated Development Environment (IDE)
Tutorial 1: An Introduction to Visual Basic.NET1 Tutorial 1 An Introduction to Visual Basic.NET.
1 Chapter 1 Introduction to Java. 2 History of Java Java Originally for _________________________ devices Then used for creating Web pages with __________________________.
1 3. Computing System Fundamentals 3.1 Language Translators.
Introduction In The Name Of Allah, The Beneficent, The Merciful.
CHAPTER TWO INTRODUCTION TO VISUAL BASIC © Prepared By: Razif Razali 1.
Visual Basic.net Textbox & Label Controls. Textbox Naming convention (txt) Primary use (user input) Can except numeric and character values.
ASP.NET &.NET Environment. Overview Part of Microsoft’s.NET environment Used for Development of  Websites  Internet applications  Web Services & XML.
1 Visual Studio.NET.NET as a Teaching Tool John D. Haney John M. Lovely Northern Arizona University College of Business Administration.
CC111 Lec7 : Visual Basic 1 Visual Basic(1) Lecture 7.
Visual Basic.NET By Khoa Nguyen. Outline History of VB Derivative Languages Sample programs Rank Evaluation.
Module 4 Part 2 Introduction To Software Development : Programming & Languages Introduction To Software Development : Programming & Languages.
1.
CIS 375—Web App Dev II ASP.NET 1 Getting Started.
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.
A Detailed Introduction To Visual Studio.NET CRB Tech ReviewsCRB Tech Reviews introduces you to the world of Visual.
Chapter 1 Introduction to Visual Basic
Dive Into® Visual Basic 2010 Express
Introduction to Programming and Visual Basic
Introduction to Computer CC111
Chapter 8: Writing Graphical User Interfaces
Introduction to .NET Framework Ch2 – Deitel’s Book
1. Introduction to Visual Basic
Visual programming Chapter 1: Introduction
An Introduction to Visual Basic
VISUAL BASIC.
Social Media And Global Computing Introduction to Visual Studio
CIS16 Application Development Programming with Visual Basic
CIS16 Application Development – Programming with Visual Basic
Building an Application in the Visual Basic .NET Environment
Visual Basic CSC
Dot Net Application PROF. S. LAKSHMANAN, DEPT. OF B. VOC. (SD & SA),
C# and ASP.NET Programming
CSCI 3328 Object Oriented Programming in C# Review: Exam I
Presentation transcript:

Visual Basic Advanced Programming

History of Visual Basic Originated from BASIC – designed to be user friendly. Visual Basic 1.0 released for Windows in 1991 Version 4.0 was the first to create 16 bit and 32 bit programs Version 5.0 went exclusively 32 bit Version 6.0 enhanced the ability to make web based programs Version 9.0 (What we are running)

Languages based on VB Visual Basic Applications (VBA) – used for many office applications VB Script – Is  the default language for Active Server Pages. Although it resembles VB in syntax, it is a separate language and it is executed by vbscript.dll as opposed to the VB runtime. Visual Basic . NET - .NET has been dropped. More powerful than the original Better incorporates modern object oriented programming

Object Oriented Programming Objects are a way of organizing your program. Objects give your code structure; they are like the chapters and sections of your book. Message is sent to an object telling it to do something.

Design Process Create the project Design the user interface (controls) Write the code (create events) Test the code Distribute the application

How to Get Around Integrated Development Environment (IDE) Design Mode:

How to Get Around Code View:

Controls Things like buttons, textboxes, and labels are all things that you can add to your Forms. They are know as Controls, and are kept in the Toolbox for ease of use.