F T T T F.

Slides:



Advertisements
Similar presentations
Information System Design Lab 5&6. User Interface Design.
Advertisements

Supplement Creating Forms. Objectives Show how forms are used How to create the Form element HTML elements used for creating input fields.
IS 1181 IS 118 Introduction to Development Tools VB Chapter 03.
ListBoxes The list box control allows the user to view and select from multiple items in a list. CheckedListBox control extends a list box by including.
Group Boxes and Panels Arrange components on a GUI Buttons and etc. can be placed inside a group box or panel. All these buttons move together when the.
8 November Forms and JavaScript. Types of Inputs Radio Buttons (select one of a list) Checkbox (select as many as wanted) Text inputs (user types text)
CA 121 Intro to Programming Tariq Aziz and Kevin Jones GUI Programming in Visual Studio.NET Chapter 3 Tariq Aziz and Kevin Jones.
1 An Introduction to Visual Basic Objectives Explain the history of programming languages Define the terminology used in object-oriented programming.
Compunet Corporation Programming with Visual Basic.NET GUI Chapter 3 Week 13 Tariq Aziz and Kevin Jones.
1 Introduction to Human Computer Interaction  Livecode Overview  Based on Livecode User Guide from RunRev Ltd. (2010) 
Microsoft Visual Basic 2005: Reloaded Second Edition
Lab 9 – User Forms Design. User Forms What are user forms? –Known as dialog boxes –Major ways for getting user input An example of using user forms: Monthly.
Ch 11: Userforms CP212 Winter Topics Designing User Forms o Controls Setting Properties o Tab Order o Testing Writing Event Handlers o Userform_Initialize.
© 2000 – All Rights Reserved - Page 1 Introduction to JavaScript Programming Part Two.
CIS 200 Test 02 Review. Windows Forms, GUI Programming  Elements  Textboxes  Tab Groups  Checkboxes  Fields  Event Handlers  Visual Studio Designer.
MAT Meyer Week 2 Programming VB: ‘basics’ Review & preview: Events, variables, statements, etc. Images, Control arrays, For/Next Assignment: read.
ListBox, ComboBox, Menu Chapter 5.4, ComboBox Control: Properties & Methods u Combines TextBox features with a short drop- down list  cboOne.AddItem(string)
 Application – another name for a program.  Interface – is what appears on the screen when the application is running.  Program Code – is instructions.
Tutorial 11 Five windows included in the Visual Basic Startup Screen Main Form Toolbox Project Explorer (Project) Properties.
Introduction 1. CIS 400 Programming for the Windows Environment 2.
USING XML AS A DATA SOURCE. Data binding is a process by which information in a data source is stored as an object in computer memory. In this presentation,
© Copyright by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Tutorial 17 – Flag Quiz Application Introducing One-Dimensional.
Programming with Visual C++: Concepts and Projects Chapter 2B: Reading, Processing and Displaying Data (Tutorial)
T U T O R I A L  2009 Pearson Education, Inc. All rights reserved Security Panel Application Introducing the Select Case Multiple-Selection Statement.
1 Form Elements  Form elements have properties: Text boxes, Password boxes, Checkboxes, Option(Radio) buttons, Submit, Reset, File, Hidden and Image.
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.
3.9 to  Also refer to as Program  Contains set of instructions that tells the computer how to perform specific task.  Each line of code is referred.
I Power Higher Computing Software Development Development Languages and Environments.
Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with Programming Logic & Design Second Edition by Tony Gaddis.
VISUAL C++ PROGRAMMING: CONCEPTS AND PROJECTS Chapter 3B Integral Data (Tutorial)
Controls Part 2. DateTimePicker Control Used for representing Date/Time information and take it as input from user. Date information is automatically.
Week 10: HTML Forms HNDIT11062 – Web Development.
Iterations (aka Loops). 2 Loops Loops (iterations) are segments of code that may be executed several times. Fixed-count (definite) loops repeat a fixed.
Unit 6 Repetition Processing Instructor: Brent Presley.
COMPUTER PROGRAMMING I 3.01 Apply Controls Associated With Visual Studio Form.
Programming with Visual Basic.NET. Quick Links Program Code The Code Window The Event Procedure Assignment Statements Using AutoList Radio Buttons Buttons.
Using Forms and Form Elements In Visual Basic.NET.
Introduction to Computer Programming Concepts M. Uyguroğlu R. Uyguroğlu.
COMPUTER PROGRAMMING I Apply Procedures to Develop List Box and Combo Box Objects.
VBA Excel Macro 1.Create a Macro: To create a macro in Excel VBA, Create a Macro: To create a macro in Excel VBA,Create a Macro: To create a macro.
Visual Basic.NET Windows Programming
Egyptian Language School Computer Department
Microsoft Access 2016 Simplify Data Entry with Forms
Programming Languages
Computing with C# and the .NET Framework
Introduction to Programming and Visual Basic
Chapter Topics 15.1 Graphical User Interfaces
Variables and Arithmetic Operations
    .
3.01 Apply Controls Associated With Visual Studio Form
1. Introduction to Visual Basic
3.01 Apply Controls Associated With Visual Studio Form
VB 6.0.
Simplify Data Entry with Forms Chapter 3
Computer Programming.
Variables and Arithmetic Operations
More Selections BIS1523 – Lecture 9.
Custom dialog boxes Unit objectives
Visual Basic.
CIS 16 Application Development Programming with Visual Basic
Visual programming Chapter 2: Events and Event Handling
Web Development Using ASP .NET
Chapter 15: GUI Applications & Event-Driven Programming
Chapter Two Visual Basic.Net.
Visual C# - GUI and controls - 1
Basic Concepts of Algorithm
Overview of the IDE Visual Studio .NET is Microsoft’s Integrated Development Environment (IDE) for creating, running and debugging programs (also.
Final Revision sheet- term2
CHAPTER FOUR VARIABLES AND CONSTANTS
Presentation transcript:

F T T T F

compiler Variable F5 False Combobox

1.Algorithm : It’s one of the ways which are used to solve a problem through a group of logically arranged procedures 2. compiler : It’s an element of the framework.Net uses to translate the programming lang. into the machine lang. the computer can understand 3. Event handler : A Procedure which contains a code that is carried out when a corresponding event occurs

CheckBox Radio Button Select one or more alternatives between some options Used to select one alternative between some alternatives Have checked property. Multiline Maxlength Allows multiple lines within the textbox control tool Defines the maximum length of characters which can be inserted in the textBox control Procedure Events The commands & instructions that carried out when an event done on the object The action done by the user on the object ( click –double click)

1. Because the property “ FormBorderstyle” of that form = “None” 2. Because it’s easy to learn and it’s written in english 3. Because the property selection Mode of “listBox” works only in “Runtime” mode , where the property items of the ComboBox works in “Runtime” only

D A B C

X = 18 Y = 5 Z = 5

1. Compiler 2. Runtime Environment 3. Libraries TextBox2 . Maxlength = 10

Start Enter X Yes Print “EVEN” No Print “ODD” END IS X Mod 2 = 0 Yes Print “EVEN” No Print “ODD” END