Introduction to VB programming

Slides:



Advertisements
Similar presentations
Compunet Corporation Programming with Visual Studio.NET GUI Week 13 Tariq Aziz and Kevin Jones.
Advertisements

Visual Studio 2005 Using the DataGridView Control V. Matos Cleveland State University.
Odds and Ends Component Tray Menu and contextmenu Splash Screen.
Chapter 8 - Visual Basic Schneider1 Chapter 8 Sequential Files.
1 INF110 Visual Basic Programming AUBG Spring semester 2011 Reference books: Schneider D., An Introduction to Programming Using Visual Basic, Prentice.
Visual Basic Fundamental Concepts. Integrated Development Enviroment Generates startup form for new project on which to place controls. Features toolbox.
Visual Basic 2008 Express Edition The IDE. Visual Basic 2008 Express The Start Page Recent Projects Open an existing project Create a New Project.
Microsoft Visual Basic 2005: Reloaded Second Edition
CSCI 3328 Object Oriented Programming in C# Chapter 2: Introduction to Visual C# Programming 1 Xiang Lian The University of Texas Rio Grande Valley Edinburg,
Chapter 3 Introducing Visual Basic.NET. 3.1 Visual Basic.NET Windows Programming -Used to create Windows, Web, and Console applications -Uses predefined.
1 Κατανεμημένες Διαδικτυακές Εφαρμογές Πολυμέσων Γιάννης Πετράκης.
Menus,MonthCalender, DateTimePicker, MDI,Tree View, List View,
1 Κατανεμημένες Διαδικτυακές Εφαρμογές Πολυμέσων Γιάννης Πετράκης.
Copyright © 2006 by The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill Technology Education Assignment #1 Advanced Computer Programming.
CSCI Chapter 2 Creating Application with Visual Basic Instructor: Bindra Shrestha University of Houston – Clear Lake.
Clearly Visual Basic: Programming with Visual Basic 2008 Chapter 4 I Need a Tour Guide.
Chapter 3 – Fundamentals of Programming in VB.NET VB.NET Controls VB.NET Events Numbers Strings Input and Output.
Lecture 8 Visual Basic (2).
COMPUTER PROGRAMMING I Objective 7.03 Apply Built-in Math Class Functions.
Introduction to Visual Basic.NET Chapter 2 Introduction to Controls, Events.
1 CC111 Lec9 : Visual Basic Visual Basic (3) Lecture 9.
VB Procedures. Procedures. Sub procedure: Private/Public Sub SubName(Arguments) … End Sub Private: Can only be accessed by procedures in the same form.
Introduction to Visual Basic.NET Your First Visual Basic.NET Application.
COMPUTER PROGRAMMING I SUMMER Apply operators and Boolean expressions.
VB.NET Additional Topics
Visual Basic.NET Windows Forms Hello World Homework Assignment.
Windows Forms. Architecture Wrapper around WIN32API Part of the.NET Framework Code can be in C# or VB Toolbox has forms elements (buttons, etc.) Dragging.
Microsoft Visual Basic 2008 CHAPTER TWELVE Cell Phone Applications and Web Services.
1 Week 6 The Repetition Structure. 2 The Repetition Structure (Looping) Lesson A Objectives After completing this lesson, you will be able to:  Code.
Tutorial 6 The Repetition Structure
CS0004: Introduction to Programming Project 1 – Lessons Learned.
Chapter 2 - VB 2008 by Schneider1 Chapter 2 –Visual Basic, Controls, and Events 2.1 An Introduction to Visual Basic 2.2 Visual Basic Controls 2.3 Visual.
ADO.NET Objects – Data Providers Dr. Ron Eaglin. Requirements Visual Studio 2005 Microsoft SQL Server 2000 or 2005 –Adventure Works Database Installed.
1 Advanced Computer Programming Lab Calculator Project.
Chapter 3 - VB.NET by Schneider1 Chapter 3 – Fundamentals of Programming in VB.NET Part I VB.NET Controls VB.NET Events.
Created by Alia Al-Abdulkarim 2008 Visual Basic Vs. Java.
COMPUTER PROGRAMMING I SUMMER Apply operators and Boolean expressions.
Microsoft Visual Basic 2008: Reloaded Third Edition Chapter One An Introduction to Visual Basic 2008.
Using ADO.Net to Build a Login System Dr. Ron Eaglin.
Copyright (c) 2003 by Prentice Hall Provided By: Qasim Al-ajmi Chapter 2 Introduction to Visual Basic Programming Visual Basic.NET.
ADO.NET Objects Data Adapters Dr. Ron Eaglin. Agenda Builds on Information in Part I Should have working knowledge of creating a database connection Continuation.
Chapter 31 Fundamentals of Programming in Visual Basic (VB) Visual Basic Events Simple Statement.
Introduction to VB programming Dr. John P. Abraham UTPA Chapters 2 & 3.
Chapter 31 Fundamentals of Programming in Visual Basic (VB) Visual Basic Events Simple Statement.
Addison Wesley is an imprint of © 2011 Pearson Addison-Wesley. All rights reserved. Addison Wesley is an imprint of Chapter 3 Variables and Calculations.
Microsoft Visual Basic 2012: Reloaded Fifth Edition Chapter One An Introduction to Visual Basic 2012.
Chapter 2 - VB 2008 by Schneider1 Chapter 2 –Visual Basic, Controls, and Events 2.1 An Introduction to Visual Basic 2.2 Visual Basic Controls 2.3 Visual.
Visual Basic Declaring Variables Dim x as Integer = 0 In the statement above, x is being declared as an Integer (whole number) and is initialised.
Computer Science Up Down Controls, Decisions and Random Numbers.
Dr. Abraham Professor UTPA Graphical User Interface.
Visual Basic Fundamental Concepts
UNIT 1 Lesson 1 Introduction.
5.03 Apply operators and Boolean expressions
CSCI 3328 Object Oriented Programming in C# Chapter 2: Introduction to Visual C# Programming UTPA – Fall 2012 This set of slides is revised from lecture.
Chapter 9 S. NandaGopalan, BIT
Apply Procedures to Develop Message, Input, and Dialog Boxes
للمزيد زورونا على موقعنا الإلكتروني:
Visual Basic..
The University of Texas – Pan American
CIS16 Application Development Programming with Visual Basic
1.الدوال Function 2.الاجراءاتSub Procedure 3.وحده نمطيه Add Module
Input and Output.
CSCI 3327 Visual Basic Review: Exam I
Introduction to VB programming
CIS 338: Images on Forms Dr. Ralph D. Westfall May, 2009.
Overview of the IDE Visual Studio .NET is Microsoft’s Integrated Development Environment (IDE) for creating, running and debugging programs (also.
Setting Properties of Objects
Input and Output Chapter 3.5
GUI Programming in Visual Studio .NET
Presentation transcript:

Introduction to VB programming Dr. John P. Abraham UTPA

Applications Console Window Output appears in console window From Visual studio choose VB and choose a new project, and choose Console Application, Give it a name. Follow Chapter 3. Window

Demo of Hello program This was your assignment from your first class.

Visual Basic Controls Choose Windows forms application What you see is the IDE (Integrated Development Environment) Use Sizing handle to make the form Adjust the size of the properties window Tac the toolbox Use common controls Start placing objects on the form Place a button, label it Exit and add code me.close()

Lab Assignment Due Monday Explain input Public Class FrmBreak1 Dim num As Integer Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnReadNum.Click num = InputBox("Enter a Number", "Read Number") lblNumber.Text = num End Sub End Class

Program submission Program print out Program Run Place them in a manila folder