VISUAL BASIC FINAL EXAM REVIEW SHEET

Slides:



Advertisements
Similar presentations
Working with Intrinsic Controls and ActiveX Controls
Advertisements

Information System Design Lab 5&6. User Interface Design.
Objectives Understand the software development lifecycle Perform calculations Use decision structures Perform data validation Use logical operators Use.
Chapter 6 Multiform Projects Copyright © 2011 by The McGraw-Hill Companies, Inc. All Rights Reserved. McGraw-Hill.
CVEV 118/698 Visual Basic Lecture 1 Prof. Mounir Mabsout Expert 1: Elsa Sulukdjian Expert 2: Walid El Asmar.
CSC110 Fall Chapter 5: Decision Visual Basic.NET.
Microsoft Visual Basic 2005 CHAPTER 8 Using Procedures and Exception Handling.
Microsoft Visual Basic 2012 Using Procedures and Exception Handling CHAPTER SEVEN.
Microsoft Visual Basic 2008 CHAPTER NINE Using Arrays and File Handling.
Ch 11: Userforms CP212 Winter Topics Designing User Forms o Controls Setting Properties o Tab Order o Testing Writing Event Handlers o Userform_Initialize.
Microsoft Visual Basic 2005 CHAPTER 9 Using Arrays and File Handling.
An Introduction to Visual Basic
Using Arrays and File Handling
Multiple Forms, Container Controls, AddHandler This presentation is based on the Forms and ContainerControls VB Projects 1.
VB.NET PROGRAMMING FINAL EXAM TEST REVIEW.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 5 Decision Making.
Microsoft Visual Basic 2010: Reloaded Fourth Edition Chapter Seven More on the Repetition Structure.
Chapter One An Introduction to Visual Basic 2010 Programming with Microsoft Visual Basic th Edition.
Representing Data: Constants and Variables CHAPTER THREE Matakuliah: T0063 – Pemrograman Visual Tahun: 2009.
Microsoft Visual Basic 2005 CHAPTER 4 Variables and Arithmetic Operations.
Graphical User Interfaces 2 Tonga Institute of Higher Education.
McGraw-Hill © 2009 The McGraw-Hill Companies, Inc. All rights reserved. Chapter 6 Multiform Projects.
Visual Basic Programming Chapter Six Notes Repetition and the Do Statement ADDING ICONS TO YOUR FORM –It is possible to add an ______________ to your title.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 8 Debugging, Creating Executable Files, and Distributing a Windows Application.
1 Creating Windows GUIs with Visual Studio. 2 Creating the Project New Project Visual C++ Projects Windows Forms Application Give the Project a Name and.
Visual Basic Programming Introduction VB is one of the High level language VB has evolved from the BASIC language. BASIC stands for Beginners All-purpose.
CS 101 Test 2 Study Guide Acronyms RAD - Rapid Application Development IDE - Integrated Development Environment GUI - Graphical User Interface VB - Visual.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 4 Working with Variables, Constants, Data Types, and Expressions.
Controls Part 2. DateTimePicker Control Used for representing Date/Time information and take it as input from user. Date information is automatically.
Microsoft Visual Basic 2008: Reloaded Third Edition Chapter One An Introduction to Visual Basic 2008.
Iterations (aka Loops). 2 Loops Loops (iterations) are segments of code that may be executed several times. Fixed-count (definite) loops repeat a fixed.
Chapter 2 More Controls Programming in C#. NET Objectives Use text boxes, group boxes, check boxes, radio buttons, and picture boxes effectively.
Object-Oriented Application Development Using VB.NET 1 Chapter 2 The Visual Studio.NET Development Environment.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 3 Building an Application in the Visual Basic.NET Environment.
CHAPTER THREE Representing Data: Constants and Variables.
Microsoft Visual Basic 2012 CHAPTER FIVE Decision Structures.
Microsoft Visual Basic 2012 CHAPTER FOUR Variables and Arithmetic Operations.
Iterations (aka Loops). 2 Loops Loops (iterations) are segments of code (loop body) that may be executed several times. Fixed-count (definite) loops repeat.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 5 Decision Making.
Microsoft Visual Basic 2012: Reloaded Fifth Edition Chapter One An Introduction to Visual Basic 2012.
Slide 1 Chapter 3 Variables  A variable is a name for a value stored in memory.  Variables are used in programs so that values can be represented with.
© 2006 Lawrenceville Press Slide 1 Chapter 4 Variables  A variable is a name for a value stored in memory.  Variables are created using a declaration.
Slide 1 Chapter 3 Variables  A variable is a name for a value stored in memory.  Variables are created using a declaration statement. For example: Dim.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 6 Looping and Multiple Forms.
Visual Basic/ Visual Studio Brandon Large. Connecting to prior knowledge In your notes write down what the two main parts of the computer are. The “software”
2-1 Chapter 2 Using VB.NET to Create a First Solution.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 6 Looping and Multiple Forms.
Chapter 8 Multiple Forms, Modules, and Menus. Introduction This chapter demonstrates how to: – Add multiple forms to a project – Create a module to hold.
Representing Data: Constants and Variables
Microsoft Visual Basic 2010 CHAPTER FOUR Variables and Arithmetic Operations.
Collision Theory and Logic
Collision Theory and Logic
Chapter Topics 15.1 Graphical User Interfaces
Variables and Arithmetic Operations
3.01 Apply Controls Associated With Visual Studio Form
CHAPTER FIVE Decision Structures.
3.01 Apply Controls Associated With Visual Studio Form
Microsoft Access Illustrated
Using Procedures and Exception Handling
Chapter 2 Visual Basic Interface
CHAPTER FIVE Decision Structures.
Variables and Arithmetic Operations
VISUAL BASIC.
CIS16 Application Development Programming with Visual Basic
Objectives After studying this chapter, you should be able to:
Building an Application in the Visual Basic .NET Environment
VB.NET PROGRAMMING FINAL EXAM TEST REVIEW.
Chapter 15: GUI Applications & Event-Driven Programming
Looping and Multiple Forms TEST REVIEW
Presentation transcript:

VISUAL BASIC FINAL EXAM REVIEW SHEET The Written portion of the Final Exam will consist of True/False, Multiple Choice and Fill in the Blank questions covering the following topics: Chapter One Program Programming Applications Program Development VB.NET Coding Machine language Fetch, Decode, Execute, Store Application types in VB Development cycle Flowcharting symbols Chapter Two IDE Toolbox, Toolbar Solution Explorer Properties List Object box Events Run Time Design Time REM lines Hard-copy Chapter Three User Interface, GUI Focus Form Properties Startup Position Text FormBorderStyle BackColor Forecolor Label Control Text Box Control Button Control NUD Control Value Min and Max Decimal Places Other important properties: Name Read-Only Tab Index, Tab Stop Font Naming standards for controls Syntax Errors Logic Errors Subroutines Intellisense

VISUAL BASIC FINAL EXAM REVIEW SHEET Chapter Four Group Box, container control Radio Button Control Checked Property AcceptButton Constants Variables Data Types Rules for variable names Writing assignment statements for variables Option Strict Declaring variables Global, local variables Converting Data types (ConvertTo.) Order of operations Intrinsic functions PMT Function Format$ Chapter Five ComboBox Control and important properties DropDownStyle and Items Index Numbers and SelectedIndex If…Then…Else statements Conditions Nested If…Thens Block-level scoping Select Case Chapter Five (continued) Relational Operators <, >, <>, <=, >= MessageBox Show Method Logical Operators: AND, OR Concatenation Chapter Six Adding icons ListView Control and its properties: View, Columns Anchoring controls Parent Form, CenterParent CheckBox control Checked, Text, TextAlign Object Variable Class ShowDialog Modal, Modeless Do While and Do Until Loops SubItems of ListView controls For Next Loops and their benefits String Manipulation Substring, Replace Concatenation Operators dblTotal += dblScore Changing startup form