    .

Slides:



Advertisements
Similar presentations
CE 311 K Introduction to Computer Methods VB Controls and Events Daene C. McKinney.
Advertisements

CS0004: Introduction to Programming Visual Studio 2010 and Controls.
Al-Karma Language School Computer Department Prep. 3.
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,
1 Lab6 Lab6 ComboBox Control Properties, Methods and Events.
Flowchart Start Input weight and height
Addison Wesley is an imprint of © 2011 Pearson Addison-Wesley. All rights reserved. Chapter 1 Introduction to Programming and Visual Basic.
Slide 1 Chapter 2 Visual Basic Interface. Slide 2 Chapter 2 Windows GUI  A GUI is a graphical user interface.  The interface is what appears on the.
Visual Basic Chapter 1 Mr. Wangler.
© 2006 Lawrenceville Press Slide 1 Chapter 3 Visual Basic Interface.
CIS 338: VB.NET Components Dr. Ralph D. Westfall April, 2011.
Introduction It is developed to create software applications. It is a tool for developers of any program that uses both basic and expert settings. It.
Graphical User Interfaces Tonga Institute of Higher Education.
Chapter Two Creating a First Project in Visual Basic.
1 Chapter Ten Using Controls. 2 Objectives Learn about Controls How to create a Form containing Labels How to set a Label’s Font How to add Color to a.
What is Visual Basic.NET? 110 B-1 e.g. a word processor doesn’t do anything until the user clicks on a button, types text... A programming language that.
Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with Programming Logic & Design Second Edition by Tony Gaddis.
Object-Oriented Application Development Using VB.NET 1 Chapter 10 VB.NET GUI Components Overview.
 Structure charts (last lesson)  Screen and page layout diagrams provide  A sketch of each page (screen) of the program  A list of the content, including.
Microsoft Visual Basic 2008: Reloaded Third Edition Chapter One An Introduction to Visual Basic 2008.
COMPUTER PROGRAMMING I 3.01 Apply Controls Associated With Visual Studio Form.
COMPUTER PROGRAMMING I 3.01 Apply Controls Associated With Visual Studio Form.
Microsoft Visual Basic 2012: Reloaded Fifth Edition Chapter One An Introduction to Visual Basic 2012.
Programming with Visual Basic.NET. Quick Links Program Code The Code Window The Event Procedure Assignment Statements Using AutoList Radio Buttons Buttons.
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”
Chapter 2: The Visual Studio.NET Development Environment Visual Basic.NET Programming: From Problem Analysis to Program Design.
COMPUTER PROGRAMMING I Apply Procedures to Develop List Box and Combo Box Objects.
CIS 365: Visual Application Development Introduction to Computers and Programming.
Chapter 1 Introduction to Programming and Visual Basic.
Dive Into® Visual Basic 2010 Express
Introduction To Visual Basic 6
Chapter 1: An Introduction to Visual Basic .NET
Chapter One Problem Solving
Visual Basic.NET Windows Programming
Chapter 2: The Visual Studio .NET Development Environment
Apply Procedures to Develop Menus, List Box and Combo Box Objects
Chapter One Problem Solving
Introduction to Programming and Visual Basic
Chapter 1: An Introduction to Visual Basic 2015
Introduction to Computer CC111
Chapter Topics 15.1 Graphical User Interfaces
Chapter 2 – Introduction to the Visual Studio .NET IDE
An Introduction to Computers and Visual Basic
3.01 Apply Controls Associated With Visual Studio Form
1. Introduction to Visual Basic
3.01 Apply Controls Associated With Visual Studio Form
Apply Procedures to Develop Menus, List Box and Combo Box Objects
VB 6.0.
An Introduction to Visual Basic .NET and Program Design
Chapter 2 Visual Basic Interface
VISUAL BASIC.
Visual Basic.
Social Media And Global Computing Introduction to Visual Studio
VISUAL BASIC – CHAPTER ONE NOTES An Introduction to Visual Basic
المحاضرة الأولى Lab(1) أ.ساره الأحمدي برمجة حاسب 2.
Creating a Windows Forms User Interface
CIS 16 Application Development Programming with Visual Basic
P.J.Balakumaran, AP, Commerce CA, SNMV CAS
Chapter 2- Visual Basic Schneider
Chapter 15: GUI Applications & Event-Driven Programming
Chapter Two Visual Basic.Net.
Click to add Text Computers & Instructions. Computers are given instructions in the form of computer programs that are created through the development.
ICT Gaming Lesson 2.
2g – ComboBox Lingma Acheson CSCI N331 VB .NET Programming
Visual C# - GUI and controls - 1
F T T T F.
Overview of the IDE Visual Studio .NET is Microsoft’s Integrated Development Environment (IDE) for creating, running and debugging programs (also.
WRITING AN ALGORITHM, PSEUDOCODE, AND FLOWCHART LESSON 2.
Introduction to Programming
Presentation transcript:

    

ControlBox Solution Explorer Property Visual Studio RadioButton

1. Problem: The Objective or the specific output that we want to attain. 2.Programming Language: It’s commands & instructions designed to be easy to learn as it uses English Language vocabulary and can be used in many applications 3. Cod window: is a window in VB.Net through which we can write instructions and codes of the program

Items, sorted, AutocompleteSource & AutocompleteMode ComboBox ListBox Displays a drop-down arrow that showes a list of items in the smallest possible area from which one item only can be selected a Control Shows a list of items where you can select one or more than one item Purpose Items, sorted, AutocompleteSource & AutocompleteMode Items, Sorted & SelectionMode Properties WindowState Size It defines the window Size of the form on screen (Maximizing, Minimizing or Normal) in Running Mode It controls the Dimensions(Width and Height) of the form in Design Mode

Flow Chart Algorithm Is a diagram that uses standard graphical symbols to illustrate the sequence of steps required for solving a problem or specific question One of the ways which are used to solve a problem through a group of logically arranged procedures Enabled Visible Makes the control Active and responds to the user event or not in Running Mode Makes the control appear or disapear to the user (Show or Hide)in Running Mode Values : True/ False

1. Because the property “ AutoSize” of that Label= True by default so we can`t change the size of the label manually, where in the TextBox the property “MultiLine”=False , so we can`t change the height of the textBox . 2.Because its programs work through objects in computer memory 3.Because the property “AutoCompleteMode” is set to “Suggest” 4. Because the property “Maxlength” is set to “ 6”

B C A D

Btn_txt. TEXT = “جمهورية مصر العربية” Label1.Autosize = False TextBox2.PasswordChar= “* “ Label1.Backcolor = Color . Red

Displays the “ times Table of table 3” Fifth Question : Look at the following Flowchart and answer: Displays the “ times Table of table 3” 3, 6 , 9 , 12 , 15 , 18, 21, 24, 27, 30, 33,36 12 times 13