CS 101 Test 2 Study Guide Acronyms RAD - Rapid Application Development IDE - Integrated Development Environment GUI - Graphical User Interface VB - Visual.

Slides:



Advertisements
Similar presentations
Lists, Loops, Validation, and More
Advertisements

Copyright © 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Slide 5- 1 STARTING OUT WITH Visual Basic 2008 FOURTH EDITION Tony Gaddis.
Integrated Business Applications with Databases (D3) Jenny Pedler
CS0004: Introduction to Programming Select Case Statements and Selection Input.
Information System Design Lab 5&6. User Interface Design.
COMPUTER PROGRAMMING I Essential Standard 5.02 Understand Breakpoint, Watch Window, and Try And Catch to Find Errors.
Developing Software Applications Introduction to Programming Fundamentals Scoping in VB Simple Ifs in VB.
CSC110 Fall Chapter 5: Decision Visual Basic.NET.
Slide 1 VB Default Controls Text Box, Check Box, Option Button & Frames.
CA 121 Intro to Programming Tariq Aziz and Kevin Jones GUI Programming in Visual Studio.NET Chapter 3 Tariq Aziz and Kevin Jones.
Compunet Corporation Programming with Visual Basic.NET GUI Chapter 3 Week 13 Tariq Aziz and Kevin Jones.
Visual Programming w/ Visual Basic How to prepare your mind to face the endless nightmare By Williem.
Instructor: Adil Ibrahim Office: 212 Ullrich Phone: ibrahima 1.
Getting Started Example ICS2O curriculum
Visual Basic Fundamental Concepts. Integrated Development Enviroment Generates startup form for new project on which to place controls. Features toolbox.
CS 2340: Programming in VB Instructor: Dr. Qi Yang Office: 213 Ullrich Phone: YangQ 1.
Visual Basic 2008 Express Edition The IDE. Visual Basic 2008 Express The Start Page Recent Projects Open an existing project Create a New Project.
CS 2340 Programming in VB.NET Instructor: Dr. Qi Yang Office: 213 Ullrich Phone: YangQ 1.
Introduction to Graphical User Interfaces. Objectives * Students should understand what a procedural program is. * Students should understand what an.
CS0004: Introduction to Programming Relational Operators, Logical Operators, and If Statements.
Microsoft Visual Basic 2008 CHAPTER 8 Using Procedures and Exception Handling.
Introduction to Visual Basic. Quick Links Windows Application Programming Event-Driven Application Becoming familiar with VB Control Objects Saving and.
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,
VISUAL C++ PROGRAMMING: CONCEPTS AND PROJECTS Chapter 1B Introduction (Tutorial)
Multiple Forms, Container Controls, AddHandler This presentation is based on the Forms and ContainerControls VB Projects 1.
1 Κατανεμημένες Διαδικτυακές Εφαρμογές Πολυμέσων Γιάννης Πετράκης.
Chapter 8: Writing Graphical User Interfaces Visual Basic.NET Programming: From Problem Analysis to Program Design.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 7 Using Menus, Common Dialogs, Procedures, Functions, and Arrays.
CS285 Visual Basic 2 Department of Computing UniS 1 Statements in Visual Basic A statement is the fundamental syntactical element of a program smallest.
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.
MS Visual Basic 6 Walter Milner. VB 6 0 Introduction –background to VB, A hello World program 1 Core language 1 –Projects, data types, variables, forms,
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.
Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with Programming Logic & Design Second Edition by Tony Gaddis.
COMPUTER PROGRAMMING I 3.02 Apply Properties Associated with the Controls.
1 Chapter 4 – Decisions 4.1 Relational and Logical Operators (see other set of slides) 4.2 If Blocks (see other set of slides) 4.3 Select Case Blocks (see.
31/01/ Selection If selection construct.
Controlling Program Flow with Looping Structures
VB 4 Controls Scrollbar Radio button check box listboxes timers control arrays.
Variables and Expressions Programming Right from the Start with Visual Basic.NET 1/e 7.
Basic GUI VISUAL BASIC. BASIC GUI Slide 2 of 53 Topic & Structure of the lesson Introduction Data Validation Use controls for making choices Write Pull.
Clearly Visual Basic: Programming with Visual Basic 2008 Chapter 11 So Many Paths … So Little Time.
Knowledge Base. Defining a Variable Dim statement Dim intXX As Integer Public in a Module Public dblNN As Double.
Loop Blocks Chapter 6 Part A. Program Blocks 1.Actions- commands, messages, methods 2.Branches- decisions to be made 3.Loops- actions to be repeated.
More Visual Basic Code: if-then-else, for loops Controls: Multiple forms, List Boxes, Radio buttons, frames,
Using Forms and Form Elements In Visual Basic.NET.
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.
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”
CSIT 108 Review Visual Basic.NET Programming: From Problem Analysis to Program Design.
Visual Basic Fundamental Concepts
Chapter Topics 15.1 Graphical User Interfaces
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 8: Writing Graphical User Interfaces
Visual Basic 6 (VB6) Data Types, And Operators
Tutorial 10 – Class Average Application Introducing the Do…Loop While and Do…Loop Until Repetition Statements Outline Test-Driving the Class Average.
Introducing Do While & Do Until Loops & Repetition Statements
البرمجة بلغة فيجول بيسيك
CHAPTER FIVE Decision Structures.
مراحل كتابة البرنامج بلغة فيجول بيسك ستديو
VISUAL BASIC.
Visual Basic..
المحاضرة الأولى Lab(1) أ.ساره الأحمدي برمجة حاسب 2.
The University of Texas – Pan American
Simple Windows Applications
المحاضرة السادسة.
CIS16 Application Development and Programming using Visual Basic.net
Data Types List Box Combo Box Checkbox Option Box Visual Basic 6.0
Chapter 15: GUI Applications & Event-Driven Programming
Visual C# - GUI and controls - 1
GCSE Computing:: Selection (IF statements)
Presentation transcript:

CS 101 Test 2 Study Guide Acronyms RAD - Rapid Application Development IDE - Integrated Development Environment GUI - Graphical User Interface VB - Visual Basic ASCII - American Standard Code for Information Interchange If … Then …. Else Structures If testscore > 90 then grade = “A” else grade = “less than A” end if If condition then true statements else false statements end if Equivalent Example (Nesting vs. Simple) If grade > 90 then grade = “A” elseif grade > 80 then grade = “B” elseif grade > 70 then grade = “C” elseif grade >60 then grade = “D” else grade = “F” end if grade = “F” if grade > 60 then grade = “D” if grade > 70 then grade = “C” if grade > 80 then grade = “B” if grade > 90 then grade = “A” IDE Windows Solution Explorer Designer (Form window with component tray) Toolbox Properties Debug

CS 101 Test 2 Study Guide Control (s)PropertyMeaning AllTabindexthe order of this control when tabbing Label,Textboxtexttext shown in box Label,Textboxforecolor,backcolorcolor of text and backgrond Label,TextboxVisibleCan be seen by user Label,TextboxEnabledProperties can be changed Radio Button, Checkbox CheckedIf true, then user selected this control Radio Button, Checkbox Textthe text next to the control square of cirle ListboxSelectedValuethe text of the item that the user selected ListboxSelectedIndexthe position of the user selection in the listbox, starting from zero Adding to a listbox: mylistbox.items.add “choice 1” Removing from listbox: mylistbox.items.remove “bad choice”.Focus method moves the cursor to a control, like txtbox1.focus

CS 101 Test 2 Study Guide Difference between combo box and listbox - can add a new value to the combo box Difference between check box and radio button - only one radio button can be selected Difference between inputbox and msgbox - inputbox receives a user input value (string) Solutions contain many projects. Projects contain many forms. Events are raised when the user clicks or activates a control Rnd function returns a decimal number between zero and one. A timer object has an interval property in milliseconds (thousandths of a second) and tick event, each time the interval is reached. Dim statement - gives the name of a variable and its data format Dim intcount as integer Dim dblsum as double Dim strname as String Dim bolflag as boolean (true or false values)